Accepting request 43541 from home:elvigia:branches:Base:System

Copy from home:elvigia:branches:Base:System/at via accept of submit request 43541 revision 2.
Request was accepted with message:
Reviewed ok

OBS-URL: https://build.opensuse.org/request/show/43541
OBS-URL: https://build.opensuse.org/package/show/Base:System/at?expand=0&rev=14
This commit is contained in:
Cristian Rodríguez
2010-07-20 20:31:02 +00:00
committed by Git OBS Bridge
parent 59996ae0ae
commit 5f0d6322df
3 changed files with 22 additions and 1 deletions

14
at.sleep Normal file
View File

@@ -0,0 +1,14 @@
#!/bin/bash
case "$1" in
hibernate|suspend)
stopservice atd
;;
thaw|resume)
restartservice atd
;;
*)
;;
esac
exit 0