|
Server : Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.17 System : Linux localhost 2.6.18-419.el5 #1 SMP Fri Feb 24 22:47:42 UTC 2017 x86_64 User : nobody ( 99) PHP Version : 5.2.17 Disable Function : NONE Directory : /proc/22697/root/etc/rc.d/init.d/ |
Upload File : |
#!/bin/sh
#
# netplugd This shell script takes care of starting and stopping
# the network plug management daemon.
#
# chkconfig: - 11 89
# description: netplugd is a daemon for managing non-static network \
# interfaces.
# processname: netplugd
# pidfile: /var/run/netplugd.pid
# Copyright 2003 Key Research, Inc.
# Source function library.
. /etc/rc.d/init.d/functions
# Source networking configuration.
. /etc/sysconfig/network
if [ -f /etc/sysconfig/netplugd ]; then
. /etc/sysconfig/netplugd
fi
# See how we were called.
case "$1" in
start)
# Start daemon.
[ ${NETWORKING} = "no" ] && exit 1
[ -x /sbin/netplugd ] || exit 1
echo -n $"Starting network plug daemon: "
daemon /sbin/netplugd ${NETPLUGDARGS} -p /var/run/netplugd.pid
RETVAL=$?
echo
[ $RETVAL -eq 0 ] && touch /var/lock/subsys/netplugd
;;
stop)
# Stop daemon.
echo -n $"Shutting down network plug daemon: "
killproc netplugd
RETVAL=$?
echo
[ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/netplugd
;;
status)
status netplugd
RETVAL=$?
;;
restart|reload)
$0 stop
$0 start
;;
condrestart)
[ -f /var/lock/subsys/netplugd ] && restart || :
;;
*)
echo $"Usage: $0 {start|stop|status|restart}"
RETVAL=3
;;
esac
exit $RETVAL