blob: 0d2677a1573548d9d5e2bc0e6a020495b8b4db6f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/sbin/runscript
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/smartmontools/files/smartd.rc,v 1.2 2003/02/14 23:26:54 vapier Exp $
depend() {
need localmount
}
start() {
ebegin "Starting S.M.A.R.T. monitoring daemon"
start-stop-daemon --start --exec /usr/sbin/smartd
eend $?
}
stop() {
ebegin "Stopping S.M.A.R.T. monitoring daemon"
start-stop-daemon --stop --exec /usr/sbin/smartd
eend $?
}
|