summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2009-09-15 13:49:20 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2009-09-15 13:49:20 +0000
commitf87cf6dcc74d2a20d0b13395063265cd1e428f0a (patch)
tree8bc8aa460cf6cce7b6f4de63b70074ef64927f48
parentacdc2c9bcce592173db9e948390d270666ae2839 (diff)
downloadaports-f87cf6dcc74d2a20d0b13395063265cd1e428f0a.tar.bz2
aports-f87cf6dcc74d2a20d0b13395063265cd1e428f0a.tar.xz
main/ez-ipupdate: start service after firewall
-rw-r--r--main/ez-ipupdate/APKBUILD4
-rw-r--r--main/ez-ipupdate/ez-ipupdate.initd4
2 files changed, 3 insertions, 5 deletions
diff --git a/main/ez-ipupdate/APKBUILD b/main/ez-ipupdate/APKBUILD
index 74ef3675..33cb03ea 100644
--- a/main/ez-ipupdate/APKBUILD
+++ b/main/ez-ipupdate/APKBUILD
@@ -2,7 +2,7 @@
# Maintainer: Jeremy Thomerson <jeremy@thomersonfamily.com>
pkgname=ez-ipupdate
pkgver=3.0.10
-pkgrel=0
+pkgrel=1
pkgdesc="utility for updating your host name for many of the dynamic DNS services (ez-ip.net, dyndns.org, etc)"
url="http://ez-ipupdate.com/"
license="GPL"
@@ -33,4 +33,4 @@ build() {
md5sums="6505c9d18ef6b5ce13fe2a668eb5724b ez-ipupdate-3.0.10.tar.gz
e6e06780b1896f2250132cc16cd10710 ez-ipupdate.confd
-5ac899387790691156eb4d0ff2b3f480 ez-ipupdate.initd"
+6b9ce71b7b6b739794f003b2ebbf66ed ez-ipupdate.initd"
diff --git a/main/ez-ipupdate/ez-ipupdate.initd b/main/ez-ipupdate/ez-ipupdate.initd
index b0118359..4ec66269 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() {