diff options
author | James Meyer <james.meyer@operamail.com> | 2010-09-19 20:48:42 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2010-09-19 20:48:42 (GMT) |
commit | 581ca3f63eaa413ec8244b3af0cd6016e63b1ad9 (patch) | |
tree | 8ddbb81d8cdbb8774d2b09f8bd12fb0d5ee1ee0a /abs/extra-testing/openslp/rc.slpd | |
parent | 06cd7d02096c8672ed5fb54a18b7fa31bef05082 (diff) | |
download | linhes_pkgbuild-581ca3f63eaa413ec8244b3af0cd6016e63b1ad9.zip linhes_pkgbuild-581ca3f63eaa413ec8244b3af0cd6016e63b1ad9.tar.gz linhes_pkgbuild-581ca3f63eaa413ec8244b3af0cd6016e63b1ad9.tar.bz2 |
libffi & openslp: added
These were needed to compile cups/gtk
Diffstat (limited to 'abs/extra-testing/openslp/rc.slpd')
-rwxr-xr-x | abs/extra-testing/openslp/rc.slpd | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/abs/extra-testing/openslp/rc.slpd b/abs/extra-testing/openslp/rc.slpd new file mode 100755 index 0000000..4330c37 --- /dev/null +++ b/abs/extra-testing/openslp/rc.slpd @@ -0,0 +1,38 @@ +#!/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 |