updated on Wed Jan 25 20:08:56 UTC 2012
[aur-mirror.git] / tpfand / tpfand.PMUTILS
blob29360b8a4feb873b31e619f64b880b57c39795c7
1 #!/bin/sh
3 # stop tpfand during suspend
4 case "$1" in
5 hibernate|suspend)
6 /etc/rc.d/tpfand stop
7 ;;
8 thaw|resume)
9 /etc/rc.d/tpfand start
11 *) exit $NA
13 esac