#!/sbin/runscript # Copyright 1999-2013 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.10 2013/09/14 10:32:46 hwoarang Exp $ depend() { need localmount after bootmisc } extra_started_commands="reload" checkconfig() { if [ ! -f "/etc/smartd.conf" ] ; then eerror "You should setup your /etc/smartd.conf file!" eerror "See the smartd.conf(5) manpage." return 1 fi return 0 } start() { checkconfig || return 1 ebegin "Starting S.M.A.R.T. monitoring daemon" start-stop-daemon --start --exec /usr/sbin/smartd \ --pidfile /run/smartd.pid \ -- -p /run/smartd.pid ${SMARTD_OPTS} eend $? } stop() { ebegin "Stopping S.M.A.R.T. monitoring daemon" start-stop-daemon --stop --exec /usr/sbin/smartd \ --pidfile /run/smartd.pid eend $? } reload() { ebegin "Reloading configuration" start-stop-daemon --signal HUP --pidfile /run/smartd.pid smartd eend $? }