summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Johanson <latexer@gentoo.org>2004-10-06 23:39:38 +0000
committerPeter Johanson <latexer@gentoo.org>2004-10-06 23:39:38 +0000
commit2b62bab18e9f647546212e72f4b9ebcc143e95d2 (patch)
treee9015c4f90ea36c54abce768454c768babc1e641 /net-misc/howl/files
parentadded eutils to the inherit line, and keyworded for ~amd64 now that it seems ... (diff)
downloadhistorical-2b62bab18e9f647546212e72f4b9ebcc143e95d2.tar.gz
historical-2b62bab18e9f647546212e72f4b9ebcc143e95d2.tar.bz2
historical-2b62bab18e9f647546212e72f4b9ebcc143e95d2.zip
Fix some typos and problems with the init scripts and do a revision bump to propogate changes. See bug #66524.
Diffstat (limited to 'net-misc/howl/files')
-rw-r--r--net-misc/howl/files/digest-howl-0.9.6-r21
-rw-r--r--net-misc/howl/files/mDNSResponder.init.d6
-rw-r--r--net-misc/howl/files/nifd.conf.d4
-rw-r--r--net-misc/howl/files/nifd.init.d4
4 files changed, 8 insertions, 7 deletions
diff --git a/net-misc/howl/files/digest-howl-0.9.6-r2 b/net-misc/howl/files/digest-howl-0.9.6-r2
new file mode 100644
index 000000000000..87381044a2bc
--- /dev/null
+++ b/net-misc/howl/files/digest-howl-0.9.6-r2
@@ -0,0 +1 @@
+MD5 1a593f39928c0c4841939128b75e8279 howl-0.9.6.tar.gz 538741
diff --git a/net-misc/howl/files/mDNSResponder.init.d b/net-misc/howl/files/mDNSResponder.init.d
index e3efaf5f190e..a52d56f92189 100644
--- a/net-misc/howl/files/mDNSResponder.init.d
+++ b/net-misc/howl/files/mDNSResponder.init.d
@@ -1,16 +1,16 @@
#!/sbin/runscript
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/howl/files/mDNSResponder.init.d,v 1.2 2004/07/14 23:59:44 agriffis Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/howl/files/mDNSResponder.init.d,v 1.3 2004/10/06 23:39:38 latexer Exp $
depend() {
- use nifd
+ need nifd
}
start() {
ebegin "Starting mDNSResponder"
start-stop-daemon --start --quiet --pidfile /var/run/mDNSResponder.pid \
- --startas /usr/bin/mDNSResponder ${MDNSRESPONDER_OPTS}
+ --startas /usr/bin/mDNSResponder -- ${MDNSRESPONDER_OPTS}
eend $? "Failed to start mDNSResponder"
}
diff --git a/net-misc/howl/files/nifd.conf.d b/net-misc/howl/files/nifd.conf.d
index 906c76dd148c..2803d397cbdf 100644
--- a/net-misc/howl/files/nifd.conf.d
+++ b/net-misc/howl/files/nifd.conf.d
@@ -1,6 +1,6 @@
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/howl/files/nifd.conf.d,v 1.2 2004/07/14 23:59:44 agriffis Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/howl/files/nifd.conf.d,v 1.3 2004/10/06 23:39:38 latexer Exp $
# NOTES:
# nifd mornitors the network interfaces for an IP or link change.
@@ -11,4 +11,4 @@
#
# -n don't run ifdown/ifup on relink
# -i interval poll interval in seconds
-NTPD_OPTS="-n"
+NIFD_OPTS="-n"
diff --git a/net-misc/howl/files/nifd.init.d b/net-misc/howl/files/nifd.init.d
index 929b08ea0f80..cff5c70ef34a 100644
--- a/net-misc/howl/files/nifd.init.d
+++ b/net-misc/howl/files/nifd.init.d
@@ -1,12 +1,12 @@
#!/sbin/runscript
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/howl/files/nifd.init.d,v 1.2 2004/07/14 23:59:44 agriffis Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/howl/files/nifd.init.d,v 1.3 2004/10/06 23:39:38 latexer Exp $
start() {
ebegin "Starting nifd"
start-stop-daemon --start --quiet --pidfile /var/run/nifd.pid \
- --startas /usr/bin/nifd ${NIFD_OPTS}
+ --startas /usr/bin/nifd -- ${NIFD_OPTS}
eend $? "Failed to start nifd"
}