summaryrefslogtreecommitdiffstats
path: root/abs/extra/openslp/rc.slpd
diff options
context:
space:
mode:
authorJames Meyer <james.meyer@operamail.com>2014-08-16 17:54:08 (GMT)
committerJames Meyer <james.meyer@operamail.com>2014-08-16 17:59:26 (GMT)
commit761255a29243dc2766436ac69a71c30cca87ecd4 (patch)
tree875ab483dbe69f286ce4731b4386184526a6f6db /abs/extra/openslp/rc.slpd
parentb19d9dc77d73e4a9c5b880f09e3db2b9df7cb75a (diff)
downloadlinhes_pkgbuild-761255a29243dc2766436ac69a71c30cca87ecd4.zip
linhes_pkgbuild-761255a29243dc2766436ac69a71c30cca87ecd4.tar.gz
linhes_pkgbuild-761255a29243dc2766436ac69a71c30cca87ecd4.tar.bz2
openslp: recompile for bin changes
refs #961
Diffstat (limited to 'abs/extra/openslp/rc.slpd')
-rwxr-xr-xabs/extra/openslp/rc.slpd38
1 files changed, 0 insertions, 38 deletions
diff --git a/abs/extra/openslp/rc.slpd b/abs/extra/openslp/rc.slpd
deleted file mode 100755
index 4330c37..0000000
--- a/abs/extra/openslp/rc.slpd
+++ /dev/null
@@ -1,38 +0,0 @@
-#!/bin/bash
-
-. /etc/rc.conf
-. /etc/rc.d/functions
-
-PID=`pidof -o %PPID /usr/sbin/slpd`
-case "$1" in
- start)
- stat_busy "Starting SLPD"
- [ -z "$PID" ] && /usr/sbin/slpd
- if [ $? -gt 0 ]; then
- stat_fail
- else
- echo $PID > /var/run/slpd.pid
- add_daemon slpd
- stat_done
- fi
- ;;
- stop)
- stat_busy "Stopping SLPD"
- [ ! -z "$PID" ] && kill $PID &> /dev/null
- if [ $? -gt 0 ]; then
- stat_fail
- else
- rm /var/run/slpd.pid
- rm_daemon slpd
- stat_done
- fi
- ;;
- restart)
- $0 stop
- sleep 1
- $0 start
- ;;
- *)
- echo "usage: $0 {start|stop|restart}"
-esac
-exit 0