diff --git a/net/openslp/Makefile b/net/openslp/Makefile index 0dbe50db2..dcccbe5ed 100644 --- a/net/openslp/Makefile +++ b/net/openslp/Makefile @@ -32,11 +32,12 @@ endef # all define Package/openslp/install - $(INSTALL_DIR) $(1)/etc $(1)/lib $(1)/usr/bin + $(INSTALL_DIR) $(1)/etc $(1)/lib $(1)/usr/bin $(1)/etc/init.d $(INSTALL_BIN) $(PKG_BUILD_DIR)/slpd/slpd $(1)/usr/bin/ $(INSTALL_BIN) $(PKG_BUILD_DIR)/slptool/.libs/slptool $(1)/usr/bin/ $(INSTALL_BIN) $(PKG_BUILD_DIR)/libslp/.libs/libslp.so* $(1)/lib - $(INSTALL_DATA) ./files/* $(1)/etc + $(INSTALL_DATA) ./files/etc/slp.* $(1)/etc + $(INSTALL_BIN) ./files/etc/init.d/* $(1)/etc/init.d endef $(eval $(call BuildPackage,openslp)) diff --git a/net/openslp/files/etc/init.d/slpd b/net/openslp/files/etc/init.d/slpd new file mode 100644 index 000000000..2b5e72753 --- /dev/null +++ b/net/openslp/files/etc/init.d/slpd @@ -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 +} diff --git a/net/openslp/files/slp.conf b/net/openslp/files/etc/slp.conf similarity index 100% rename from net/openslp/files/slp.conf rename to net/openslp/files/etc/slp.conf diff --git a/net/openslp/files/etc/slp.reg b/net/openslp/files/etc/slp.reg new file mode 100644 index 000000000..44fdae314 --- /dev/null +++ b/net/openslp/files/etc/slp.reg @@ -0,0 +1,2 @@ +service:device.AP://IPADDR,en,65535 +use default scopes diff --git a/net/openslp/files/slp.spi b/net/openslp/files/etc/slp.spi similarity index 100% rename from net/openslp/files/slp.spi rename to net/openslp/files/etc/slp.spi diff --git a/net/openslp/files/slp.reg b/net/openslp/files/slp.reg deleted file mode 100644 index 73b8ec2eb..000000000 --- a/net/openslp/files/slp.reg +++ /dev/null @@ -1,2 +0,0 @@ -service:device.AP://192.168.1.1,en,65535 -use default scopes