diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2009-09-15 13:49:20 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2009-09-15 13:49:20 +0000 |
commit | f87cf6dcc74d2a20d0b13395063265cd1e428f0a (patch) | |
tree | 8bc8aa460cf6cce7b6f4de63b70074ef64927f48 /main/ez-ipupdate/ez-ipupdate.initd | |
parent | acdc2c9bcce592173db9e948390d270666ae2839 (diff) | |
download | aports-f87cf6dcc74d2a20d0b13395063265cd1e428f0a.tar.bz2 aports-f87cf6dcc74d2a20d0b13395063265cd1e428f0a.tar.xz |
main/ez-ipupdate: start service after firewall
Diffstat (limited to 'main/ez-ipupdate/ez-ipupdate.initd')
-rw-r--r-- | main/ez-ipupdate/ez-ipupdate.initd | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/main/ez-ipupdate/ez-ipupdate.initd b/main/ez-ipupdate/ez-ipupdate.initd index b01183597..4ec662694 100644 --- a/main/ez-ipupdate/ez-ipupdate.initd +++ b/main/ez-ipupdate/ez-ipupdate.initd @@ -7,9 +7,6 @@ DAEMON=/usr/bin/$NAME DAEMON_GROUP=ipupdate DAEMON_USER=ipupdate -# load the config -. /etc/conf.d/${NAME} - # now convert it into command line options OPTS="-d -S ${SERVICE} -h ${HOST} -u \"${USER}:${PASS}\" -i ${IFACE}" if [ "$WILDCARD" == 1 ]; then @@ -22,6 +19,7 @@ OPTS="${OPTS} -t ${TIMEOUT} -M ${MAX_INTERVAL}" depend() { need net + after firewall } start() { |