update
This commit is contained in:
2
etc/cron.d/zfs-auto-snapshot.new-1.2.4_3
Normal file
2
etc/cron.d/zfs-auto-snapshot.new-1.2.4_3
Normal 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/zfs-auto-snapshot.new-1.2.4_3
Executable file
6
etc/cron.daily/zfs-auto-snapshot.new-1.2.4_3
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 --label=daily --keep=31 //
|
||||
6
etc/cron.hourly/sddm-background
Executable file
6
etc/cron.hourly/sddm-background
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.new-1.2.4_3
Executable file
6
etc/cron.hourly/zfs-auto-snapshot.new-1.2.4_3
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 --label=hourly --keep=24 //
|
||||
6
etc/cron.monthly/zfs-auto-snapshot.new-1.2.4_3
Executable file
6
etc/cron.monthly/zfs-auto-snapshot.new-1.2.4_3
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 --label=monthly --keep=12 //
|
||||
6
etc/cron.weekly/zfs-auto-snapshot.new-1.2.4_3
Executable file
6
etc/cron.weekly/zfs-auto-snapshot.new-1.2.4_3
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 --label=weekly --keep=8 //
|
||||
Reference in New Issue
Block a user