mirror of https://github.com/hak5/openwrt-owl.git
Removed init script as there is an hotplug one, check whether user configuration directive is properly set, change the numbering to 10 rather than 15
SVN-Revision: 3189owl
parent
3a805b3c51
commit
b2515858d9
|
@ -50,7 +50,7 @@ $(IPKG_EZIPUPDATE):
|
|||
install -m0755 $(PKG_BUILD_DIR)/ez-ipupdate $(IDIR_EZIPUPDATE)/usr/sbin/
|
||||
install -m0755 files/$(PKG_NAME).init $(IDIR_EZIPUPDATE)/etc/init.d/S80$(PKG_NAME)
|
||||
install -m0755 files/$(PKG_NAME).conf $(IDIR_EZIPUPDATE)/etc/
|
||||
install -m0755 files/$(PKG_NAME).hotplug $(IDIR_EZIPUPDATE)/etc/hotplug.d/iface/15-$(PKG_NAME)
|
||||
install -m0755 files/$(PKG_NAME).hotplug $(IDIR_EZIPUPDATE)/etc/hotplug.d/iface/10-$(PKG_NAME)
|
||||
$(STRIP) $(IDIR_EZIPUPDATE)/usr/sbin/*
|
||||
$(IPKG_BUILD) $(IDIR_EZIPUPDATE) $(PACKAGE_DIR)
|
||||
|
||||
|
|
|
@ -1 +1,6 @@
|
|||
[ "$ACTION" = "ifup" -a "$INTERFACE" = "wan" ] && /usr/sbin/ez-ipupdate -c /etc/ez-ipupdate.conf &
|
||||
PGM=ez-ipupdate
|
||||
[ "$ACTION" = "ifup" -a "$INTERFACE" = "wan" ] && {
|
||||
[ -e /etc/$PGM.conf ] && {
|
||||
[ -n $(grep "user=" /etc/$PGM.conf | cut -d= -f2 | cut -d: -f1) ] && [ -n $(grep "user=" /etc/$PGM.conf | cut -d= -f2 | cut -d: -f2) ] && /usr/sbin/$PGM -c /etc/$PGM.conf &
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue