2023-11-20 14:09:10 +01:00
# Suspend:
# sudo systemctl suspend
# Suspend for 60 seconds:
# sudo rtcwake -m mem -s 60
# Power consumption:
# 2.4W powered off, with 1 RAM, 1 SSD
# 2.6W suspended, with 1 RAM, 1 SSD
# 2.6W suspended, with 1 RAM, 1 SSD, 2 HDDs
# 18.9W idle, with 1 RAM, 1 SSD, 2 HDDs
2023-11-20 19:12:54 +01:00
# View service log:
# journalctl -u daily-backup-and-suspend
# Print unit file:
# cat "$(systemctl show -P FragmentPath daily-backup-and-suspend.service)"
2023-11-20 14:09:10 +01:00
2023-11-05 17:21:29 +01:00
{ config , pkgs , . . . }:
2023-11-15 13:54:37 +01:00
let
backup-source = " r o o t N a s " ;
# The "stay-awake" file is located at `${backup-source}:${stay-awake-file}`.
stay-awake-file = " ${ config . networking . hostName } . s t a y - a w a k e " ;
in
2023-11-05 17:21:29 +01:00
{
2023-11-20 14:09:10 +01:00
yoda . de-p1st-monitor = ( builtins . readFile ../../assets/de-p1st-monitor/yodaHedgehog.ini ) ;
2023-11-15 13:54:37 +01:00
assertions = [ {
assertion = config . services . openssh . enable ;
message = " s y s t e m d s e r v i c e d a i l y - b a c k u p - a n d - s u s p e n d r e q u i r e s S S H . " ;
} {
assertion = config . services . journalwatch . enable ;
message = " s y s t e m d s e r v i c e d a i l y - b a c k u p - a n d - s u s p e n d r e q u i r e s j o u r n a l w a t c h . " ;
} ] ;
2023-11-05 17:21:29 +01:00
2023-11-15 13:54:37 +01:00
systemd . timers . " d a i l y - b a c k u p - a n d - s u s p e n d " = {
2023-11-05 17:21:29 +01:00
wantedBy = [ " m u l t i - u s e r . t a r g e t " ] ;
timerConfig = {
OnCalendar = [
# Daily
2023-11-15 13:54:37 +01:00
" * - * - * 0 0 : 0 0 : 0 5 "
2023-11-05 17:21:29 +01:00
] ;
WakeSystem = true ;
2023-11-15 13:54:37 +01:00
} ;
} ;
systemd . services . " d a i l y - b a c k u p - a n d - s u s p e n d " = {
# Packages required for this script.
# For `ssh` and `journalwatch`, there are assertions above.
path = with pkgs ; [
2023-11-19 14:12:18 +01:00
# Provides `ssh`
openssh
2023-11-20 20:30:55 +01:00
# Provides `readlink` (with support for parameter `-e`, required by `btrbk`)
coreutils
# Provides `awk`, `grep`, `sleep`, `printf`, `echo`, 'sendmail', `readlink` (without support for parameter `-e`)
2023-11-20 19:12:54 +01:00
busybox
# Provides `smtpctl`
opensmtpd
2023-11-20 20:30:55 +01:00
# Provides `btrbk`
btrbk
# Provides `sudo` required by `btrbk`.
# Alternatively we could configure `btrbk` to use the "btrfs-progs" instead of the "btrfs-progs-sudo" backend. But the `btrbk` NixOS module has no option for this.
sudo
2023-11-15 13:54:37 +01:00
] ;
# Script to execute as main process.
2023-11-05 17:21:29 +01:00
script = ''
set - eu - o pipefail
2023-11-20 20:30:55 +01:00
#printf '%s\n' 'Starting backup script.'
2023-11-15 13:54:37 +01:00
2023-11-20 20:30:55 +01:00
# Pull BTRFS snapshots from ${backup-source}.
btrbk - c /etc/btrbk/remote-backup-ssd.conf run
btrbk - c /etc/btrbk/remote-backup-hdd.conf run
2023-11-15 13:54:37 +01:00
# Don't suspend as long as `${backup-source}:${stay-awake-file}` exists.
while : ; do
2023-11-20 19:12:54 +01:00
result = " $ ( s s h ${ backup-source } ' l s ${ stay-awake-file } 2 > & 1 ' ) " || :
case " ' ' ${ result } " in
2023-11-15 13:54:37 +01:00
* " N o s u c h f i l e o r d i r e c t o r y " )
break
; ;
" ${ stay-awake-file } " )
printf ' % s \ n' ' Delaying suspend due to $ { stay-awake-file } file . '
; ;
* )
printf ' % s \ n' ' Delaying suspend due to SSH connectivity problems . '
; ;
esac
sleep 1 0 s
done
# Wait until no BTRFS scrub service is running.
2023-11-20 19:12:54 +01:00
while : ; do
running_services = " $ ( s y s t e m c t l l i s t - u n i t s - - t y p e = s e r v i c e - - p l a i n - - q u i e t | a w k ' { p r i n t $ 1 } ' ) "
if ! printf ' % s' " ' ' ${ running_services } " | grep ' ^ btrfs-scrub' ; then
break ;
fi
2023-11-15 13:54:37 +01:00
printf ' % s \ n' ' Delaying suspend due to running BTRFS scrub service . '
sleep 6 0 s
done
# Send filtered journal by email.
systemctl start journalwatch . service || :
2023-11-20 19:12:54 +01:00
# Send notification by email.
printf ' % s \ n \ n % s' ' Subject : $ { config . networking . hostName } ' ' Finished backup . ' | sendmail - f langbein @ mail . de daniel @ systemli . org
# Let sendmail send emails.
#while :; do
# # TODO: Plain usage of `smtpctl` gives the error:
# # smtpctl: this program must be setgid smtpq
# queue="$(smtpctl show queue)"
# if [ "''${queue}" = "" ]; then
# break
# fi
# printf '%s\n' 'Delaying suspend due to non-empty smtpd email queue.'
# sleep 1s
#done
2023-11-15 13:54:37 +01:00
sleep 1 5 s
2023-11-20 20:30:55 +01:00
#printf '%s\n' 'Finished backup script.'
2023-11-15 13:54:37 +01:00
# Suspend to save power.
2023-11-20 19:12:54 +01:00
systemctl suspend
2023-11-05 17:21:29 +01:00
'' ;
} ;
}