Updating link to change in openSUSE:Factory/at revision 21.0

OBS-URL: https://build.opensuse.org/package/show/Base:System/at?expand=0&rev=67ee32e4714295564b2dd043fd0e7cea
This commit is contained in:
OBS User buildservice-autocommit
2010-07-23 21:24:30 +00:00
committed by Git OBS Bridge
parent 755ff39d48
commit fa2b1001e8
3 changed files with 23 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