repo.or.cz
/
aur-mirror.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
updated on Sun Jan 15 04:04:02 UTC 2012
[aur-mirror.git]
/
tpfand
/
tpfand.PMUTILS
blob
29360b8a4feb873b31e619f64b880b57c39795c7
1
#!/bin/sh
2
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
10
;;
11
*)
exit
$NA
12
;;
13
esac
14