diff options
author | Henrik Brix Andersen <brix@gentoo.org> | 2006-01-09 16:55:36 +0000 |
---|---|---|
committer | Henrik Brix Andersen <brix@gentoo.org> | 2006-01-09 16:55:36 +0000 |
commit | 1941c2fd8358e3fe65ee5395ca14a56505815b15 (patch) | |
tree | bb07c59f85d16fcac6b919b05ce6f4a8c9aeb64e /net-wireless/hostapd/files | |
parent | Marked ~hppa (bug #101051). (diff) | |
download | gentoo-2-1941c2fd8358e3fe65ee5395ca14a56505815b15.tar.gz gentoo-2-1941c2fd8358e3fe65ee5395ca14a56505815b15.tar.bz2 gentoo-2-1941c2fd8358e3fe65ee5395ca14a56505815b15.zip |
Fix init scripts to work with baselayout-1.12.0_rcX.
(Portage version: 2.0.53)
Diffstat (limited to 'net-wireless/hostapd/files')
4 files changed, 6 insertions, 4 deletions
diff --git a/net-wireless/hostapd/files/digest-hostapd-0.4.7-r2 b/net-wireless/hostapd/files/digest-hostapd-0.4.7-r2 new file mode 100644 index 000000000000..4680e1c2c50f --- /dev/null +++ b/net-wireless/hostapd/files/digest-hostapd-0.4.7-r2 @@ -0,0 +1 @@ +MD5 b299211691fe8a6840e7adafda351d2b hostapd-0.4.7.tar.gz 288016 diff --git a/net-wireless/hostapd/files/digest-hostapd-0.5.0-r1 b/net-wireless/hostapd/files/digest-hostapd-0.5.0-r1 new file mode 100644 index 000000000000..f5d254f23e44 --- /dev/null +++ b/net-wireless/hostapd/files/digest-hostapd-0.5.0-r1 @@ -0,0 +1 @@ +MD5 abfe9a3381437e580001b484b7f77335 hostapd-0.5.0.tar.gz 323906 diff --git a/net-wireless/hostapd/files/hostapd-0.4.7-init.d b/net-wireless/hostapd/files/hostapd-0.4.7-init.d index 92a0c680271c..44ecfb4aac39 100644 --- a/net-wireless/hostapd/files/hostapd-0.4.7-init.d +++ b/net-wireless/hostapd/files/hostapd-0.4.7-init.d @@ -1,7 +1,7 @@ #!/sbin/runscript # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-wireless/hostapd/files/hostapd-0.4.7-init.d,v 1.1 2005/11/21 10:38:03 brix Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-wireless/hostapd/files/hostapd-0.4.7-init.d,v 1.2 2006/01/09 16:55:36 brix Exp $ opts="start stop reload" @@ -45,6 +45,6 @@ reload() { checkconfig || return 1 ebegin "Reloading hostapd configuration" - start-stop-daemon --stop --quiet --exec /usr/sbin/hostapd --signal HUP + kill -HUP $(pidof /usr/sbin/hostapd) > /dev/null 2>&1 eend ${?} } diff --git a/net-wireless/hostapd/files/hostapd-0.5.0-init.d b/net-wireless/hostapd/files/hostapd-0.5.0-init.d index 38e1d769a40d..5888d353e079 100644 --- a/net-wireless/hostapd/files/hostapd-0.5.0-init.d +++ b/net-wireless/hostapd/files/hostapd-0.5.0-init.d @@ -1,7 +1,7 @@ #!/sbin/runscript # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-wireless/hostapd/files/hostapd-0.5.0-init.d,v 1.1 2005/12/20 11:09:30 brix Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-wireless/hostapd/files/hostapd-0.5.0-init.d,v 1.2 2006/01/09 16:55:36 brix Exp $ opts="start stop reload" @@ -45,6 +45,6 @@ reload() { checkconfig || return 1 ebegin "Reloading hostapd configuration" - start-stop-daemon --stop --quiet --exec /usr/sbin/hostapd --signal HUP + kill -HUP $(pidof /usr/sbin/hostapd) > /dev/null 2>&1 eend ${?} } |