You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

18 lines
293 B

#!/bin/sh /etc/rc.common
# Copyright (C) 2006-2011 OpenWrt.org
START=95
USE_PROCD=1
PROG=/usr/sbin/smartd
start_service() {
procd_open_instance
procd_set_param command "$PROG"
procd_append_param command -n -q never
procd_close_instance
}
reload_service() {
procd_send_signal smartd
}