at/at.sleep

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