diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2011-01-14 17:56:30 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2011-01-14 17:56:30 +0000 |
commit | 483826c99475bcf0d5becdf9e176fcf65f188ebd (patch) | |
tree | b2034c8e877d18c0a155a0e6bc9adf5dcad9ff51 /applications | |
parent | 093f677a30e7059e4683b8a15cb5c8fb3e3287d8 (diff) |
applications/luci-vnstat: add postinstall
Diffstat (limited to 'applications')
-rwxr-xr-x | applications/luci-vnstat/ipkg/postinst | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/applications/luci-vnstat/ipkg/postinst b/applications/luci-vnstat/ipkg/postinst new file mode 100755 index 000000000..816084a48 --- /dev/null +++ b/applications/luci-vnstat/ipkg/postinst @@ -0,0 +1,7 @@ +#!/bin/sh + +[ -n "${IPKG_INSTROOT}" ] || { + ( . /etc/uci-defaults/luci-vnstat ) && rm -f /etc/uci-defaults/luci-vnstat + /etc/init.d/vnstat enabled || /etc/init.d/vnstat enable + exit 0 +} |