summaryrefslogtreecommitdiff
blob: 8dfef3a0afa7bf4e60ac79d5683466c0d0a2533d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/sbin/openrc-run

start() {
	ebegin "Starting ${SVCNAME}"
	athcool on >/dev/null 2>&1
	eend $?
}

stop() {
	ebegin "Stopping ${SVCNAME}"
	athcool off >/dev/null 2>&1
	eend $?
}