15 lines
134 B
Plaintext
15 lines
134 B
Plaintext
![]() |
#!/bin/bash
|
||
|
|
||
|
case "$1" in
|
||
|
hibernate|suspend)
|
||
|
stopservice atd
|
||
|
;;
|
||
|
thaw|resume)
|
||
|
restartservice atd
|
||
|
;;
|
||
|
*)
|
||
|
;;
|
||
|
esac
|
||
|
|
||
|
exit 0
|