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