process_children_only=false
[$DESTPOOL/${User}/backup/${hostName}/home]
+ hourly=12
daily=31
monthly=0
recursive=true
'' + " %I";
};
};
+programs.bash.interactiveShellInit = ''
+ mount-zfs-backup () {
+ (
+ set -x
+ zpool="$1"
+ zpool status "$zpool" 2>/dev/null ||
+ sudo zpool import -d /dev/disk/by-id/ "$zpool"
+ trap "sudo zpool export $zpool" EXIT
+ zfs list -rH -t filesystem -o mounted,mountpoint,name "$zpool"/"$USER"/backup |
+ grep "^no\\s*/" | cut -f 3 | xargs -ortL1 sudo zfs mount -Olv || true
+ ${pkgs.mate.caja}/bin/caja --browser /mnt/"$zpool"/"$USER"/backup
+ )
+ }
+'';
+programs.bash.shellAliases = {
+ mount-backup-WD10JPVT = "mount-zfs-backup WD10JPVT";
+};
}
fi
if zpool status "$DESTPOOL"; then
zpool scrub -p "$DESTPOOL" || true
- sleep 10
+ sleep 20
# Export the zpool (to avoid a forced import later on)
zpool export "$DESTPOOL"
fi
'' + " %I";
};
};
+programs.bash.interactiveShellInit = ''
+ mount-zfs-backup () {
+ (
+ set -x
+ zpool="$1"
+ zpool status "$zpool" 2>/dev/null ||
+ sudo zpool import -d /dev/disk/by-id/ "$zpool"
+ trap "sudo zpool export $zpool" EXIT
+ zfs list -rH -t filesystem -o mounted,mountpoint,name "$zpool"/"$USER"/backup |
+ grep "^no\\s*/" | cut -f 3 | xargs -ortL1 sudo zfs mount -Olv || true
+ ${pkgs.mate.caja}/bin/caja --browser /mnt/"$zpool"/"$USER"/backup
+ )
+ }
+'';
+programs.bash.shellAliases = {
+ mount-backup-WD10JPVT = "mount-zfs-backup WD10JPVT";
+};
}