diff options
Diffstat (limited to 'sys-power/athcool/files/athcool')
-rwxr-xr-x | sys-power/athcool/files/athcool | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/sys-power/athcool/files/athcool b/sys-power/athcool/files/athcool new file mode 100755 index 000000000000..c6eddd95bf72 --- /dev/null +++ b/sys-power/athcool/files/athcool @@ -0,0 +1,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 $? +} + |