···
requires = [ "network-online.target" ];
after = [ "network-online.target" ];
-
path = [ pkgs.iputils pkgs.tarsnap pkgs.utillinux ];
# In order for the persistent tarsnap timer to work reliably, we have to
# make sure that the tarsnap server is reachable after systemd starts up
···
while ! ping -q -c 1 v1-0-0-server.tarsnap.com &> /dev/null; do sleep 3; done
-
let run = ''tarsnap --configfile "/etc/tarsnap/${name}.conf" \
-
-c -f "${name}-$(date +"%Y%m%d%H%M%S")" \
${optionalString cfg.verbose "-v"} \
${optionalString cfg.explicitSymlinks "-H"} \
${optionalString cfg.followSymlinks "-L"} \
···
if [ ! -e ${cfg.cachedir}/firstrun ]; then
-
tarsnap --configfile "/etc/tarsnap/${name}.conf" --fsck
) 10>${cfg.cachedir}/firstrun
···
description = "Tarsnap restore '${name}'";
requires = [ "network-online.target" ];
-
path = [ pkgs.iputils pkgs.tarsnap pkgs.utillinux ];
-
while ! ping -q -c 1 v1-0-0-server.tarsnap.com &> /dev/null; do sleep 3; done
tarsnap = ''tarsnap --configfile "/etc/tarsnap/${name}.conf"'';
lastArchive = ''$(${tarsnap} --list-archives | sort | tail -1)'';
run = ''${tarsnap} -x -f "${lastArchive}" ${optionalString cfg.verbose "-v"}'';
-
in if (cfg.cachedir != null) then ''
-
mkdir -p ${cfg.cachedir}
-
chmod 0700 ${cfg.cachedir}
-
if [ ! -e ${cfg.cachedir}/firstrun ]; then
-
) 10>${cfg.cachedir}/firstrun
-
) 9>${cfg.cachedir}/lockf
-
exec flock ${cfg.cachedir}/firstrun ${run}