packages/smartmontools: use new service functions

git-svn-id: svn://svn.openwrt.org/openwrt/packages@28918 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nico 2011-11-09 23:43:47 +00:00
parent 61fc72d310
commit 7f1f739d9c
2 changed files with 6 additions and 18 deletions

View File

@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=smartmontools
PKG_VERSION:=5.40
PKG_RELEASE:=1
PKG_RELEASE:=2
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=@SF/smartmontools

View File

@ -1,28 +1,16 @@
#!/bin/sh /etc/rc.common
# Copyright (C) 2006 OpenWrt.org
# Copyright (C) 2006-2011 OpenWrt.org
START=95
start() {
[ -f /etc/smartd.conf ] || {
echo "/etc/smartd.conf does not exist !";
exit 0;
};
[ -d /var/run ] || mkdir -p /var/run
[ -x /usr/sbin/smartd ] && /usr/sbin/smartd -q never -p /var/run/smartd.pid
service_start /usr/sbin/smartd -q never
}
stop() {
killall smartd
}
restart() {
stop
sleep 1
start
service_stop /usr/sbin/smartd
}
reload() {
kill -HUP `cat /var/run/smartd.pid` &>/dev/null
service_reload /usr/sbin/smartd
}