I think this is "firetrucking my system." Remove the iretr to get the foul language version.
My system is taking 30 plus seconds from return from a suspend state.
I am thankful that it runs my Backup script so I get my files backed up,
but Jeez, I need a little less stress.
I would appreciate any help.
Thanks.
#!/bin/sh
# Backup files to maxtor drive before the computer has been suspended
# Put this in /lib/systemd/system-sleep/
case "$1" in
pre)
logger Files being backed up to Maxtor drive.
/home/andy/bin/Backup_Ubuntu_Mate.sh
logger done with backup, going to sleep.
;;
post)
logger waking up from sleep.
;;
esac
#!/bin/sh
# Backup files to maxtor drive before the computer has been suspended
# Put this in /lib/systemd/system-sleep/
case "$1" in
pre)
logger Files being backed up to Maxtor drive.
/home/andy/bin/Backup_Ubuntu_Mate.sh
logger done with backup, going to sleep.
;;
post)
logger waking up from sleep.
;;
esac