at/56atd

19 lines
225 B
Plaintext
Raw Normal View History

2011-10-05 16:26:18 +00:00
#!/bin/sh
#
. "${PM_FUNCTIONS}"
case "$1" in
hibernate|suspend)
;;
thaw|resume)
2011-11-14 09:42:16 +00:00
if [ -f /etc/init.d/atd ]; then
2011-10-05 16:26:18 +00:00
/etc/init.d/atd restart
2011-11-15 15:05:46 +00:00
else
2011-10-05 16:26:18 +00:00
systemctl try-restart atd.service
fi
;;
*) exit $NA
;;
esac