Sophie

Sophie

distrib > Mandriva > 10.2 > x86_64 > by-pkgid > cc9e009ebdae6ca6fbf72188b71caf4f > files > 4

rwall-0.17-9mdk.src.rpm

#! /bin/sh
#
# chkconfig: 345 60 20
# description: The rwall protocol allows remote users to display messages \
#              on all of the active terminals on a system (like local \
#  	       users can do with the wall command). 
# processname: rpc.rwalld

# Source function library.
. /etc/rc.d/init.d/functions

# Get config.
. /etc/sysconfig/network

# Check that networking is up.
if [ ${NETWORKING} = "no" ] ; then
	exit 0
fi

# See how we were called.
case "$1" in
  start)
	echo -n "Starting rwall services: "
	daemon rpc.rwalld
	echo
	touch /var/lock/subsys/rwalld
	;;
  stop)
	echo -n "Stopping rwall services: "
	killproc rpc.rwalld
	echo
	rm -f /var/lock/subsys/rwalld
	;;
  status)
	status rpc.rwalld
	;;
  restart)
	$0 stop
	$0 start
	;;
  reload)
	echo "There is no way to reload rwalld as there isn't any config file."
	;;
  *)
	echo "Usage: rwalld {start|stop|status|restart}"
	exit 1
	;;
esac

exit 0