diff options
Diffstat (limited to 'sys-cluster/torque/files/pbs_mom-init.d-2.2.1')
-rw-r--r-- | sys-cluster/torque/files/pbs_mom-init.d-2.2.1 | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/sys-cluster/torque/files/pbs_mom-init.d-2.2.1 b/sys-cluster/torque/files/pbs_mom-init.d-2.2.1 deleted file mode 100644 index 758134656e6f..000000000000 --- a/sys-cluster/torque/files/pbs_mom-init.d-2.2.1 +++ /dev/null @@ -1,47 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -. /etc/conf.d/torque - -depend() { - need net - after pbs_server - after pbs_sched - after logger -} - -checkconfig() { - for i in "server_name" "mom_priv/config"; do - if [ ! -e ${PBS_SERVER_HOME}/${i} ]; then - eerror "Missing config file ${PBS_SERVER_HOME}/${i}" - return 1 - fi - done -} - -start() { - checkconfig || return 1 - - ebegin "Starting Torque pbs_mom" - local extra_args="" - if [ -n "${PBS_MOM_LOG}" ]; then - extra_args="-- -L ${PBS_MOM_LOG}" - fi - start-stop-daemon --start -p ${PBS_SERVER_HOME}/mom_priv/mom.lock \ - --exec /usr/sbin/pbs_mom ${extra_args} - eend ${?} -} - -stop() { - ebegin "Stopping Torque pbs_mom" - /usr/sbin/momctl -s || start-stop-daemon --stop -p ${PBS_SERVER_HOME}/mom_priv/mom.lock - eend ${?} -} - -restart() { - svc_stop - sleep 3 - svc_start -} -# vim:ts=4 |