inital commit
This commit is contained in:
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 //
|
||||
Reference in New Issue
Block a user