smartmontools: convert init script to procd
Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
parent
0afea2e06b
commit
26b32aceee
2 changed files with 11 additions and 9 deletions
|
@ -10,7 +10,7 @@ include $(INCLUDE_DIR)/uclibc++.mk
|
||||||
|
|
||||||
PKG_NAME:=smartmontools
|
PKG_NAME:=smartmontools
|
||||||
PKG_VERSION:=7.1
|
PKG_VERSION:=7.1
|
||||||
PKG_RELEASE:=2
|
PKG_RELEASE:=3
|
||||||
|
|
||||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||||
PKG_SOURCE_URL:=@SF/smartmontools
|
PKG_SOURCE_URL:=@SF/smartmontools
|
||||||
|
|
|
@ -3,14 +3,16 @@
|
||||||
|
|
||||||
START=95
|
START=95
|
||||||
|
|
||||||
start() {
|
USE_PROCD=1
|
||||||
service_start /usr/sbin/smartd -q never
|
PROG=/usr/sbin/smartd
|
||||||
|
|
||||||
|
start_service() {
|
||||||
|
procd_open_instance
|
||||||
|
procd_set_param command "$PROG"
|
||||||
|
procd_append_param command -n -q never
|
||||||
|
procd_close_instance
|
||||||
}
|
}
|
||||||
|
|
||||||
stop() {
|
reload_service() {
|
||||||
service_stop /usr/sbin/smartd
|
procd_send_signal smartd
|
||||||
}
|
|
||||||
|
|
||||||
reload() {
|
|
||||||
service_reload /usr/sbin/smartd
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue