Browse Source

ubusd: add an init script

SVN-Revision: 28496
Felix Fietkau 14 years ago
parent
commit
0798d4a5c7
2 changed files with 13 additions and 1 deletions
  1. 2 1
      package/ubus/Makefile
  2. 11 0
      package/ubus/files/ubus.init

+ 2 - 1
package/ubus/Makefile

@@ -46,7 +46,8 @@ define Package/ubus/install
 endef
 
 define Package/ubusd/install
-	$(INSTALL_DIR) $(1)/sbin
+	$(INSTALL_DIR) $(1)/sbin $(1)/etc/init.d
+	$(INSTALL_BIN) ./files/ubus.init $(1)/etc/init.d/ubus
 	$(CP) $(PKG_INSTALL_DIR)/usr/sbin/ubusd $(1)/sbin/
 endef
 

+ 11 - 0
package/ubus/files/ubus.init

@@ -0,0 +1,11 @@
+#!/bin/sh /etc/rc.common
+START=11
+PIDFILE=/var/run/ubusd.pid
+
+start() {
+	start-stop-daemon -S -b -m -p $PIDFILE -x /sbin/ubusd
+}
+
+stop() {
+	start-stop-daemon -K -x /sbin/ubusd -p $PIDFILE
+}