]> prime8.dev >> repos - ttyd.git/commitdiff
openwrt: remove the default insecure init script
authorShuanglei Tao <tsl0922@gmail.com>
Thu, 6 Apr 2017 14:44:24 +0000 (22:44 +0800)
committerShuanglei Tao <tsl0922@gmail.com>
Thu, 6 Apr 2017 14:44:24 +0000 (22:44 +0800)
openwrt/Makefile
openwrt/files/ttyd.init [deleted file]

index df79be50c12c1d387fbddc6942de75ef420b4f6a..fbdac53d9b38f329156fbca5fc602bffa7fac84f 100644 (file)
@@ -42,9 +42,6 @@ endef
 define Package/ttyd/install
        $(INSTALL_DIR) $(1)/usr/bin
        $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/ttyd $(1)/usr/bin/
-
-       $(INSTALL_DIR) $(1)/etc/init.d
-       $(INSTALL_BIN) ./files/ttyd.init $(1)/etc/init.d/ttyd
 endef
 
 $(eval $(call BuildPackage,ttyd))
diff --git a/openwrt/files/ttyd.init b/openwrt/files/ttyd.init
deleted file mode 100644 (file)
index d8d6d10..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/bin/sh /etc/rc.common
-
-START=99
-SERVICE_WRITE_PID=1
-SERVICE_DAEMONIZE=1
-
-start() {
-       logger -t TTYD 'Starting ttyd service'
-       service_start /usr/bin/ttyd login
-       return 0
-}
-
-stop() {
-       if [ -n "`pidof ttyd`" ]; then
-               logger -t TTYD 'Shutting down ttyd service'
-               service_stop /usr/bin/ttyd
-       fi
-       return 0
-}
-
-restart() {
-       logger -t TTYD 'Restarting ttyd service'
-       stop
-       sleep 2 # give time to shutdown
-       start
-}