add init.d script to openslp
git-svn-id: svn://svn.openwrt.org/openwrt/packages@10342 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
14
net/openslp/files/etc/init.d/slpd
Normal file
14
net/openslp/files/etc/init.d/slpd
Normal file
@ -0,0 +1,14 @@
|
||||
#!/bin/sh /etc/rc.common
|
||||
# Copyright (C) 2008 OpenWrt.org
|
||||
START=50
|
||||
|
||||
start() {
|
||||
cp /etc/slp* /var
|
||||
IP=`ifconfig br-lan | grep inet | cut -d" " -f12 | cut -d: -f2`
|
||||
sed -i "s/IPADDR/${IP}/g" /var/slp.reg
|
||||
slpd -r /var/slp.reg -c /var/slp.conf
|
||||
}
|
||||
|
||||
stop() {
|
||||
killall slpd
|
||||
}
|
Reference in New Issue
Block a user