diff options
author | root <root@rshg054.dnsready.net> | 2013-05-05 01:06:44 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-05-05 01:06:44 -0700 |
commit | 7a600dcabb6923ee79d36a4eaab2fc6867bdb807 (patch) | |
tree | bd75ff45c676ff5c7e8744686901ffdcecf6f7b1 /extra/ypserv/yppasswd | |
parent | 5f3b2100b811506bec6bcf63b24d1c605dfe8cb6 (diff) |
Sun May 5 01:06:40 PDT 2013
Diffstat (limited to 'extra/ypserv/yppasswd')
-rwxr-xr-x | extra/ypserv/yppasswd | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/extra/ypserv/yppasswd b/extra/ypserv/yppasswd deleted file mode 100755 index c2b00b2ca..000000000 --- a/extra/ypserv/yppasswd +++ /dev/null @@ -1,34 +0,0 @@ -#!/bin/bash - -. /etc/rc.conf -. /etc/rc.d/functions - -case "$1" in - start) - stat_busy "Starting NIS Password Daemon" - /usr/sbin/rpc.yppasswdd - if [ $? -gt 0 ]; then - stat_fail - else - add_daemon yppasswd - stat_done - fi - ;; - stop) - stat_busy "Stopping NIS Password Daemon" - killall -q /usr/sbin/rpc.yppasswdd - if [ $? -gt 0 ]; then - stat_fail - else - rm_daemon yppasswd - stat_done - fi - ;; - restart) - $0 stop - sleep 1 - $0 start - ;; - *) - echo "usage: $0 {start|stop|restart}" -esac |