init script cleanup, use /etc/rc.d/ for enabled scripts, /etc/init.d/<pkgname> (enable|disable) manages symlinks
git-svn-id: svn://svn.openwrt.org/openwrt/packages@5128 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
@ -42,7 +42,6 @@ endef
|
||||
define Package/portmap/install
|
||||
install -d -m0755 $(1)/etc/init.d
|
||||
install -m0755 ./files/portmap.init $(1)/etc/init.d/portmap
|
||||
ln -sf portmap $(1)/etc/init.d/S59portmap
|
||||
install -d -m0755 $(1)/usr/sbin
|
||||
install -m0755 $(PKG_BUILD_DIR)/portmap $(1)/usr/sbin/
|
||||
endef
|
||||
|
@ -1,11 +1,12 @@
|
||||
#!/bin/sh /etc/rc.common
|
||||
# Copyright (C) 2006 OpenWrt.org
|
||||
|
||||
START=40
|
||||
BIN=portmap
|
||||
DEFAULT=/etc/default/$BIN
|
||||
[ -f $DEFAULT ] && . $DEFAULT
|
||||
|
||||
start() {
|
||||
[ -f $DEFAULT ] && . $DEFAULT
|
||||
$BIN $OPTIONS
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user