OBS-URL: https://build.opensuse.org/request/show/60226 OBS-URL: https://build.opensuse.org/package/show/Base:System/at?expand=0&rev=23
17 lines
164 B
Bash
17 lines
164 B
Bash
#!/bin/bash
|
|
|
|
. $PM_UTILS_LIBDIR/functions
|
|
|
|
case "$1" in
|
|
hibernate|suspend)
|
|
stopservice atd
|
|
;;
|
|
thaw|resume)
|
|
restartservice atd
|
|
;;
|
|
*)
|
|
;;
|
|
esac
|
|
|
|
exit 0
|