inital commit

This commit is contained in:
2025-12-28 10:41:44 -06:00
commit e7426264e7
119 changed files with 4953 additions and 0 deletions

2
etc/cron.d/zfs-auto-snapshot Executable file
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 //

6
etc/cron.daily/config-backup Executable file
View File

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

2
etc/cron.daily/makewhatis Executable file
View File

@@ -0,0 +1,2 @@
#!/bin/sh
exec makewhatis -Tutf8

6
etc/cron.daily/shadow Executable file
View File

@@ -0,0 +1,6 @@
#!/bin/sh
# Verify integrity of password and group files
/usr/sbin/pwck -r
/usr/sbin/grpck -r

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 --prefix=znap --label=daily --keep=5 //

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 --prefix=znap --label=hourly --keep=5 //

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 --prefix=znap --label=monthly --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 --prefix=znap --label=weekly --keep=4 //