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