19 lines
225 B
Bash
19 lines
225 B
Bash
#!/bin/sh
|
|
#
|
|
|
|
. "${PM_FUNCTIONS}"
|
|
|
|
case "$1" in
|
|
hibernate|suspend)
|
|
;;
|
|
thaw|resume)
|
|
if [ -f /etc/init.d/atd ]; then
|
|
/etc/init.d/atd restart
|
|
else
|
|
systemctl try-restart atd.service
|
|
fi
|
|
;;
|
|
*) exit $NA
|
|
;;
|
|
esac
|