Linux puskom-ProLiant-DL385-Gen10 5.4.0-150-generic #167~18.04.1-Ubuntu SMP Wed May 24 00:51:42 UTC 2023 x86_64
/
usr
/
lib
/
pm-utils
/
sleep.d
/
//usr/lib/pm-utils/sleep.d/95anacron
#!/bin/sh # This script makes anacron jobs start to run when the machine is woken up. # For a laptop, these are the closest parallels to turning on a desktop. case $1 in resume|thaw) /usr/sbin/invoke-rc.d anacron start >/dev/null ;; suspend|hibernate) /usr/sbin/invoke-rc.d anacron stop >/dev/null ;; esac