systemd.services."zfs-force-import@" = {
description = "ZFS force import: %I";
unitConfig.StopWhenUnneeded = true;
- requires = [ "sys-subsystem-usb-%i.device" ];
+ bindsTo = [ "sys-subsystem-usb-%i.device" ];
+ path = lib.mkBefore [ "/run/booted-system/sw" ];
serviceConfig = {
Type = "oneshot";
RemainAfterExit = true;
PrivateTmp = true;
- ExecStartPre = [
- # Scan the zpools, using stable paths
- "/bin/sh -xc '/run/booted-system/sw/bin/zpool import -d /dev/disk/by-id/ || true'"
- ];
- ExecStart = ''
- /bin/sh -xc ' \
- /run/booted-system/sw/bin/zpool import -lFd /dev/disk/by-id/ %I || \
- /run/booted-system/sw/bin/zpool reopen %I || \
- /run/booted-system/sw/bin/zpool clear -nFX %I'
- '';
- ExecStartPost = [
+ ExecStart = pkgs.writeShellScript "zfs-force-import" ''
+ DESTPOOL=$1
+ set -eux
+ # Import the zpool, using stable paths
+ zpool import -d /dev/disk/by-id/ || true
+ zpool import -lFd /dev/disk/by-id/ "$DESTPOOL" ||
+ zpool reopen "$DESTPOOL" ||
+ zpool import -f -d /dev/disk/by-id/ "$DESTPOOL" ||
+ zpool clear -nFX "$DESTPOOL"
+ '' + " %I";
+ ExecStartPost = "+" + pkgs.writeShellScript "zfs-force-import-startPost" ''
+ DESTPOOL=$1
+ set -eux
# Do not block on unplug/failure
- "/run/booted-system/sw/bin/zpool set failmode=continue %I"
- ];
+ zpool set failmode=continue "$DESTPOOL"
+ '' + " %I";
};
};
# Run the backup
systemd.services."zfs-local-backup-home@" = {
description = "ZFS backup home, on: %I";
after = [ "zfs-force-import@%i.service" ];
- requires = [ "zfs-force-import@%i.service" ];
+ bindsTo = [ "zfs-force-import@%i.service" ];
+ path = lib.mkBefore [ "/run/booted-system/sw" ];
serviceConfig = rec {
Type = "oneshot";
RemainAfterExit = true;
RuntimeDirectory = [ "zfs-usb-backup-%I" ];
User = "julm";
Group = "users";
- ExecStartPre = [
- "+/run/booted-system/sw/bin/zfs allow ${User} bookmark,hold,mount,send ${hostName}/home"
- "+/run/booted-system/sw/bin/zfs allow ${User} bookmark,create,destroy,load-key,mount,mountpoint,receive,rollback,snapshot %I/${User}"
- "+/bin/sh -xc '/run/booted-system/sw/bin/zpool scrub -p %I || true'"
- ];
+ ExecStartPre = "+" + pkgs.writeShellScript "zfs-local-backup-home-startPre" ''
+ DESTPOOL=$1
+ set -eux
+ if zpool status "$DESTPOOL"; then
+ zfs allow ${User} bookmark,hold,mount,send ${hostName}/home
+ zfs allow ${User} bookmark,create,destroy,load-key,mount,mountpoint,receive,rollback,snapshot "$DESTPOOL"/${User}
+ zpool scrub -p "$DESTPOOL" || true
+ fi
+ '' + " %I";
ExecStart = pkgs.writeShellScript "zfs-local-backup-home" ''
set -eu
DESTPOOL=$1
"$DESTPOOL"/${User}/backup/"$dataset"
done
'' + " %I";
- ExecStartPost = [
- # Scrub the zpool 1 minute (in the background)
- "+/run/booted-system/sw/bin/zpool scrub %I"
- "${pkgs.coreutils}/bin/sleep 60"
- "+/bin/sh -xc '/run/booted-system/sw/bin/zpool scrub -p %I || true'"
- # Export the zpool (to avoid a forced import later on)
- "+/run/booted-system/sw/bin/zpool export %I"
- ];
+ ExecStartPost = "+" + pkgs.writeShellScript "zfs-local-backup-home-startPost" ''
+ DESTPOOL=$1
+ set -eux
+ # Only if the zpool still exists to avoid uninterruptible hanging
+ if zpool status "$DESTPOOL"; then
+ # Scrub the zpool 1 minute (in the background)
+ zpool scrub "$DESTPOOL"
+ sleep 60
+ fi
+ if zpool status "$DESTPOOL"; then
+ zpool scrub -p "$DESTPOOL" || true
+ # Export the zpool (to avoid a forced import later on)
+ zpool export "$DESTPOOL"
+ fi
+ '' + " %I";
};
};
}
systemd.services."zfs-force-import@" = {
description = "ZFS force import: %I";
unitConfig.StopWhenUnneeded = true;
- requires = [ "sys-subsystem-usb-%i.device" ];
+ bindsTo = [ "sys-subsystem-usb-%i.device" ];
+ path = lib.mkBefore [ "/run/booted-system/sw" ];
serviceConfig = {
Type = "oneshot";
RemainAfterExit = true;
PrivateTmp = true;
- ExecStartPre = [
- # Scan the zpools, using stable paths
- "/bin/sh -xc '/run/booted-system/sw/bin/zpool import -d /dev/disk/by-id/ || true'"
- ];
- ExecStart = ''
- /bin/sh -xc ' \
- /run/booted-system/sw/bin/zpool import -lFd /dev/disk/by-id/ %I || \
- /run/booted-system/sw/bin/zpool reopen %I || \
- /run/booted-system/sw/bin/zpool clear -nFX %I'
- '';
- ExecStartPost = [
+ ExecStart = pkgs.writeShellScript "zfs-force-import" ''
+ DESTPOOL=$1
+ set -eux
+ # Import the zpool, using stable paths
+ zpool import -d /dev/disk/by-id/ || true
+ zpool import -lFd /dev/disk/by-id/ "$DESTPOOL" ||
+ zpool reopen "$DESTPOOL" ||
+ zpool import -f -d /dev/disk/by-id/ "$DESTPOOL" ||
+ zpool clear -nFX "$DESTPOOL"
+ '' + " %I";
+ ExecStartPost = "+" + pkgs.writeShellScript "zfs-force-import-startPost" ''
+ DESTPOOL=$1
+ set -eux
# Do not block on unplug/failure
- "/run/booted-system/sw/bin/zpool set failmode=continue %I"
- ];
+ zpool set failmode=continue "$DESTPOOL"
+ '' + " %I";
};
};
# Run the backup
systemd.services."zfs-local-backup-home@" = {
description = "ZFS backup home, on: %I";
after = [ "zfs-force-import@%i.service" ];
- requires = [ "zfs-force-import@%i.service" ];
+ bindsTo = [ "zfs-force-import@%i.service" ];
+ path = lib.mkBefore [ "/run/booted-system/sw" ];
serviceConfig = rec {
Type = "oneshot";
RemainAfterExit = true;
RuntimeDirectory = [ "zfs-usb-backup-%I" ];
User = "sevy";
Group = "users";
- ExecStartPre = [
- "+/run/booted-system/sw/bin/zfs allow ${User} bookmark,hold,mount,send ${hostName}/home"
- "+/run/booted-system/sw/bin/zfs allow ${User} bookmark,create,destroy,load-key,mount,mountpoint,receive,rollback,snapshot %I/${User}"
- "+/bin/sh -xc '/run/booted-system/sw/bin/zpool scrub -p %I || true'"
- ];
+ ExecStartPre = "+" + pkgs.writeShellScript "zfs-local-backup-home-startPre" ''
+ DESTPOOL=$1
+ set -eux
+ if zpool status "$DESTPOOL"; then
+ zfs allow ${User} bookmark,hold,mount,send ${hostName}/home
+ zfs allow ${User} bookmark,create,destroy,load-key,mount,mountpoint,receive,rollback,snapshot "$DESTPOOL"/${User}
+ zpool scrub -p "$DESTPOOL" || true
+ fi
+ '' + " %I";
ExecStart = pkgs.writeShellScript "zfs-local-backup-home" ''
set -eu
DESTPOOL=$1
"$DESTPOOL"/${User}/backup/"$dataset"
done
'' + " %I";
- ExecStartPost = [
- # Scrub the zpool 1 minute (in the background)
- "+/run/booted-system/sw/bin/zpool scrub %I"
- "${pkgs.coreutils}/bin/sleep 60"
- "+/bin/sh -xc '/run/booted-system/sw/bin/zpool scrub -p %I || true'"
- # Export the zpool (to avoid a forced import later on)
- "+/run/booted-system/sw/bin/zpool export %I"
- ];
+ ExecStartPost = "+" + pkgs.writeShellScript "zfs-local-backup-home-startPost" ''
+ DESTPOOL=$1
+ set -eux
+ # Only if the zpool still exists to avoid uninterruptible hanging
+ if zpool status "$DESTPOOL"; then
+ # Scrub the zpool 1 minute (in the background)
+ zpool scrub "$DESTPOOL"
+ sleep 60
+ fi
+ if zpool status "$DESTPOOL"; then
+ zpool scrub -p "$DESTPOOL" || true
+ # Export the zpool (to avoid a forced import later on)
+ zpool export "$DESTPOOL"
+ fi
+ '' + " %I";
};
};
}