3 # lsvcgss Lustre GSS daemon
5 # chkconfig: 2345 10 90
6 # description: start and stop the lsvcgssd daemon
9 # Source function library.
10 . /etc/init.d/functions
12 LOCKFILE="/var/lock/subsys/lsvcgssd"
13 # -k -- Enable kerberos support
14 # -s -- Enable shared key support
17 # Check for and source configuration file
18 [ -f /etc/sysconfig/lsvcgss ] && . /etc/sysconfig/lsvcgss
20 # See how we were called.
23 echo $"Starting lsvcgssd"
24 /usr/sbin/lsvcgssd ${LSVCGSSDARGS}
26 [ $RETVAL -eq 0 ] && touch $LOCKFILE
29 echo $"Stopping lsvcgssd"
32 [ $RETVAL -eq 0 ] && rm -f $LOCKFILE
44 echo $"Usage: $0 {start|stop|restart|reload|status}"