blob: c6eddd95bf72056b713e19c60b1c5c2fa8670851 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/sbin/runscript
# $Id$
start() {
ebegin "Starting ${SVCNAME}"
athcool on >/dev/null 2>&1
eend $?
}
stop() {
ebegin "Stopping ${SVCNAME}"
athcool off >/dev/null 2>&1
eend $?
}
|