You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-misc/g15daemon/files/20g15daemon

16 lines
173 B

#!/bin/sh
. "${PM_FUNCTIONS}"
case "$1" in
hibernate|suspend)
/etc/init.d/g15daemon stop
;;
thaw|resume)
/etc/init.d/g15daemon start
;;
*)
exit $NA
;;
esac