You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sys-cluster/torque/files/trqauthd-init.d

28 lines
594 B

#!/sbin/runscript
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-cluster/torque/files/trqauthd-init.d,v 1.1 2013/05/30 00:47:06 jsbronder Exp $
depend() {
need net
after logger
# 4.0+ only, make sure we run before the other torque services
before pbs_mom
before pbs_sched
before pbs_server
}
start() {
start-stop-daemon \
--start \
--exec /usr/sbin/trqauthd
}
stop() {
start-stop-daemon \
--stop \
--exec /usr/sbin/trqauthd
}