diff options
author | James Meyer <james.meyer@operamail.com> | 2009-07-04 23:05:09 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2009-07-04 23:05:09 (GMT) |
commit | 879da47e831fa0c5dc443f1059717af8184cb6d8 (patch) | |
tree | 08892860acda11a7594788c8687ec960dac4b68d /abs/core-testing/runit-scripts/runitscripts/services/smartd | |
parent | 19e8f207678d02f9a912aa0728b90a4c63d82c82 (diff) | |
parent | 21f912004613ab41436b36b424f943f3c5bfbf83 (diff) | |
download | linhes_pkgbuild-879da47e831fa0c5dc443f1059717af8184cb6d8.zip linhes_pkgbuild-879da47e831fa0c5dc443f1059717af8184cb6d8.tar.gz linhes_pkgbuild-879da47e831fa0c5dc443f1059717af8184cb6d8.tar.bz2 |
Merge branch 'HEAD' of ssh://jams@knoppmyth.net/mount/repository/LinHES-PKGBUILD
Conflicts:
abs/core-testing/LinHES-config/PKGBUILD
Diffstat (limited to 'abs/core-testing/runit-scripts/runitscripts/services/smartd')
-rwxr-xr-x | abs/core-testing/runit-scripts/runitscripts/services/smartd/finish | 9 | ||||
-rwxr-xr-x | abs/core-testing/runit-scripts/runitscripts/services/smartd/run | 13 |
2 files changed, 22 insertions, 0 deletions
diff --git a/abs/core-testing/runit-scripts/runitscripts/services/smartd/finish b/abs/core-testing/runit-scripts/runitscripts/services/smartd/finish new file mode 100755 index 0000000..7b77994 --- /dev/null +++ b/abs/core-testing/runit-scripts/runitscripts/services/smartd/finish @@ -0,0 +1,9 @@ +#!/bin/bash + + . /etc/rc.conf + . /etc/rc.d/functions + + stat_runit "Stopping smartd" + kill -9 `pidof /usr/sbin/smartd` &>/dev/null + rm_daemon smartd + stat_done diff --git a/abs/core-testing/runit-scripts/runitscripts/services/smartd/run b/abs/core-testing/runit-scripts/runitscripts/services/smartd/run new file mode 100755 index 0000000..15ed769 --- /dev/null +++ b/abs/core-testing/runit-scripts/runitscripts/services/smartd/run @@ -0,0 +1,13 @@ +#!/bin/bash + + . /etc/rc.conf + . /etc/rc.d/functions + + stat_runit "Starting smartd" + /usr/sbin/smartd -n -c /etc/smartd.conf -q never &>/dev/null + if [ $? -ne 0 ]; then + stat_fail + else + add_daemon smartd + stat_done + fi |