You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
348 B
24 lines
348 B
8 years ago
|
#!/bin/sh
|
||
|
|
||
|
case $1 in
|
||
|
start)
|
||
|
if [ -e /var/etc/.xupnpd ]; then
|
||
|
rm -rf /tmp/xupnpd-*
|
||
|
rm -f /tmp/xupnpd.pid
|
||
|
sleep 10 # FIXME; This is to workaround slow DHCP
|
||
|
/bin/xupnpd &
|
||
|
fi
|
||
|
;;
|
||
|
stop)
|
||
|
if [ -e /var/etc/.xupnpd ]; then
|
||
|
killall xupnpd
|
||
|
fi
|
||
|
;;
|
||
|
restart)
|
||
|
if [ -e /var/etc/.xupnpd ]; then
|
||
|
$0 stop
|
||
|
$0 start
|
||
|
fi
|
||
|
;;
|
||
|
esac
|