Changeset 9623 for branches


Ignore:
Timestamp:
2005-04-11T14:45:36+12:00 (19 years ago)
Author:
kjdon
Message:

changed some descriptions

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/ant-install-branch/gsdl3/build.xml

    r9622 r9623  
    811811  </target>
    812812
    813   <target name="startup" description="Launch the Greenstone servers (tomcat,mysql...)" depends="init,startup-mysql,startup-tomcat"/>
    814 
    815   <target name="startup-tomcat" description="Launch Tomcat" depends="init" if="tomcat.islocal">
     813  <target name="startup" description="Startup the (local) Greenstone servers (tomcat,mysql...)" depends="init,startup-mysql,startup-tomcat"/>
     814
     815  <target name="startup-tomcat" description="Startup only Tomcat" depends="init" if="tomcat.islocal">
    816816    <property name="tomcat.classpath" refid="compile.classpath"/>
    817817    <property name="tomcat.path" value="${basedir}/packages/mysql/bin:${basedir}/bin/script:${basedir}/bin:${env.PATH}"/>
     
    841841  </target>
    842842
    843   <target name="shutdown" depends="init,shutdown-tomcat,shutdown-mysql" description="Shutdown all the local servers"/>
    844  
    845   <target name="shutdown-tomcat" description="Shutdown Greenstone (Tomcat and Mysql)" depends="init" if="tomcat.islocal">
     843  <target name="shutdown" depends="init,shutdown-tomcat,shutdown-mysql" description="Shutdown the (local) Greenstone servers."/>
     844 
     845  <target name="shutdown-tomcat" description="Shutdown only Tomcat" depends="init" if="tomcat.islocal">
    846846    <exec executable="${catalina.home}/bin/shutdown.sh" os="${os.linux}" dir="${catalina.home}/bin" spawn="false"/>
    847847  </target>
     
    951951
    952952  <!-- mysql targets -->
    953   <target name="startup-mysql" depends="init" if="mysql.islocal">
     953  <target name="startup-mysql" depends="init" if="mysql.islocal"
     954    description="Startup only mysql">
    954955    <exec executable="${mysql.home}/bin/mysqld_safe" dir="${mysql.home}"
    955956      spawn="true">
     
    971972  </target>
    972973
    973   <target name="shutdown-mysql" depends="init" if="mysql.islocal">
     974  <target name="shutdown-mysql" depends="init" if="mysql.islocal"
     975    description="Shutdown only mysql">
    974976    <exec executable="${mysql.home}/bin/mysqladmin" dir="${mysql.home}"
    975977      failonerror="true">
Note: See TracChangeset for help on using the changeset viewer.