This commit is contained in:
2026-01-23 20:20:57 -06:00
parent 9d5e396152
commit 13c920fd32
37 changed files with 2312 additions and 107 deletions

View File

@@ -0,0 +1,2 @@
*/15 * * * * root command -v zfs-auto-snapshot > /dev/null || exit 0 ; zfs-auto-snapshot --quiet --syslog --label=frequent --keep=4 //

View File

@@ -0,0 +1,6 @@
#!/bin/sh
# Only call zfs-auto-snapshot if it's available
command -v zfs-auto-snapshot > /dev/null || exit 0
exec zfs-auto-snapshot --quiet --syslog --label=daily --keep=31 //

View File

@@ -0,0 +1,6 @@
#!/bin/sh
#only call if script is there
command -v /home/aiden/sddm-random-background.sh >/dev/null || exit 0
exec /home/aiden/sddm-random-background.sh

View File

@@ -0,0 +1,6 @@
#!/bin/sh
# Only call zfs-auto-snapshot if it's available
command -v zfs-auto-snapshot > /dev/null || exit 0
exec zfs-auto-snapshot --quiet --syslog --label=hourly --keep=24 //

View File

@@ -0,0 +1,6 @@
#!/bin/sh
# Only call zfs-auto-snapshot if it's available
command -v zfs-auto-snapshot > /dev/null || exit 0
exec zfs-auto-snapshot --quiet --syslog --label=monthly --keep=12 //

View File

@@ -0,0 +1,6 @@
#!/bin/sh
# Only call zfs-auto-snapshot if it's available
command -v zfs-auto-snapshot > /dev/null || exit 0
exec zfs-auto-snapshot --quiet --syslog --label=weekly --keep=8 //