inital commit
This commit is contained in:
2
etc/cron.d/zfs-auto-snapshot
Executable file
2
etc/cron.d/zfs-auto-snapshot
Executable 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
6
etc/cron.daily/config-backup
Executable 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
2
etc/cron.daily/makewhatis
Executable file
@@ -0,0 +1,2 @@
|
||||
#!/bin/sh
|
||||
exec makewhatis -Tutf8
|
||||
6
etc/cron.daily/shadow
Executable file
6
etc/cron.daily/shadow
Executable file
@@ -0,0 +1,6 @@
|
||||
#!/bin/sh
|
||||
|
||||
# Verify integrity of password and group files
|
||||
/usr/sbin/pwck -r
|
||||
/usr/sbin/grpck -r
|
||||
|
||||
6
etc/cron.daily/zfs-auto-snapshot
Executable file
6
etc/cron.daily/zfs-auto-snapshot
Executable 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 //
|
||||
6
etc/cron.hourly/sddm-background.sh
Executable file
6
etc/cron.hourly/sddm-background.sh
Executable 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
|
||||
6
etc/cron.hourly/zfs-auto-snapshot
Executable file
6
etc/cron.hourly/zfs-auto-snapshot
Executable 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 //
|
||||
6
etc/cron.monthly/zfs-auto-snapshot
Executable file
6
etc/cron.monthly/zfs-auto-snapshot
Executable 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 //
|
||||
6
etc/cron.weekly/zfs-auto-snapshot
Executable file
6
etc/cron.weekly/zfs-auto-snapshot
Executable 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 //
|
||||
Reference in New Issue
Block a user