diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2012-01-19 12:41:49 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2012-01-19 12:41:49 +0000 |
commit | d2c01f95447c189e44f7761c6051e7ecd15f9421 (patch) | |
tree | 30840060373f7b778760d8e60e3677ab6f64f123 /main/smartmontools/smartd.initd | |
parent | 61c38f4132ceda837da59176724153b84869afe4 (diff) | |
download | aports-d2c01f95447c189e44f7761c6051e7ecd15f9421.tar.bz2 aports-d2c01f95447c189e44f7761c6051e7ecd15f9421.tar.xz |
main/smartmontools: sync init.d script with gentoo
ref #943
Diffstat (limited to 'main/smartmontools/smartd.initd')
-rw-r--r-- | main/smartmontools/smartd.initd | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/main/smartmontools/smartd.initd b/main/smartmontools/smartd.initd index 560e17d64..131a7d45f 100644 --- a/main/smartmontools/smartd.initd +++ b/main/smartmontools/smartd.initd @@ -1,14 +1,14 @@ #!/sbin/runscript -# Copyright 1999-2009 Gentoo Foundation +# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/smartmontools/files/smartd.rc,v 1.8 2009/10/11 00:43:58 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/smartmontools/files/smartd.rc,v 1.9 2011/09/15 07:58:50 polynomial-c Exp $ depend() { need localmount after bootmisc } -opts="${opts} reload" +extra_started_commands="reload" checkconfig() { if [ ! -f "/etc/smartd.conf" ] ; then @@ -38,6 +38,6 @@ stop() { reload() { ebegin "Reloading configuration" - start-stop-daemon --oknodo --stop --signal HUP --pidfile /var/run/smartd.pid smartd + start-stop-daemon --signal HUP --pidfile /var/run/smartd.pid smartd eend $? } |