[packages] net/vnstat: clean up initscript, reduce cron interval to 30 minutes. thanks puchu.
git-svn-id: svn://svn.openwrt.org/openwrt/packages@14218 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
4c7f413f9a
commit
65ad7ae03a
@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (C) 2006 OpenWrt.org
|
||||
# Copyright (C) 2006-2009 OpenWrt.org
|
||||
#
|
||||
# This is free software, licensed under the GNU General Public License v2.
|
||||
# See /LICENSE for more information.
|
||||
@ -10,7 +10,7 @@ include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=vnstat
|
||||
PKG_VERSION:=1.6
|
||||
PKG_RELEASE:=1
|
||||
PKG_RELEASE:=2
|
||||
|
||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||
PKG_SOURCE_URL:=http://humdi.net/vnstat
|
||||
@ -44,7 +44,7 @@ define Build/Compile
|
||||
CFLAGS="$(TARGET_CFLAGS)"
|
||||
endef
|
||||
|
||||
define Package/vnstat/install
|
||||
define Package/vnstat/install
|
||||
$(INSTALL_DIR) $(1)/usr/bin
|
||||
$(INSTALL_BIN) $(PKG_BUILD_DIR)/src/vnstat $(1)/usr/bin/
|
||||
$(INSTALL_DIR) $(1)/etc/config
|
||||
@ -55,17 +55,19 @@ endef
|
||||
|
||||
define Package/vnstat/postinst
|
||||
#!/bin/sh
|
||||
BIN=$${IPKG_INSTROOT}/usr/bin/vnstat
|
||||
BIN_REL=/usr/bin/vnstat
|
||||
BIN=$${IPKG_INSTROOT}$${BIN_REL}
|
||||
CRONTAB=$${IPKG_INSTROOT}/etc/crontabs/root
|
||||
LIB_D=$${IPKG_INSTROOT}/var/lib/vnstat
|
||||
LIB_D_REL=/var/lib/vnstat
|
||||
LIB_D=$${IPKG_INSTROOT}$${LIB_D_REL}
|
||||
mkdir -p $${IPKG_INSTROOT}/etc/crontabs/
|
||||
[ -d $$LIB_D ] || mkdir -p $$LIB_D
|
||||
IFACE_WAN=$$(uci get network.wan.ifname)
|
||||
if [ -n $$IFACE_WAN ]; then
|
||||
[ -e $$LIB_D/$$IFACE_WAN ] || ( [ -x $$BIN ] && $$BIN -u -i $$IFACE_WAN )
|
||||
fi
|
||||
grep -q "$$BIN -u" $$CRONTAB 2>/dev/null
|
||||
[ $$? -ne 0 ] && echo "0-55/5 * * * * root if [ -x $$BIN ] && [ \`ls $$LIB_D | wc -l\` -ge 1 ]; then $$BIN -u; fi" >> $$CRONTAB
|
||||
grep -q "$$BIN_REL -u" $$CRONTAB 2>/dev/null
|
||||
[ $$? -ne 0 ] && echo "*/30 * * * * root if [ -x $$BIN_REL ] && [ \`ls $$LIB_D_REL | wc -l\` -ge 1 ]; then $$BIN_REL -u; fi" >> $$CRONTAB
|
||||
true
|
||||
endef
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user