blob: 2ab823fde4b89323999c104366b7ff44bc9eb1f1 (
plain) (
blame)
1
2
3
4
5
6
|
#!/bin/sh
# Only call zfs-auto-snapshot if it's available
which zfs-auto-snapshot > /dev/null || exit 0
exec zfs-auto-snapshot --quiet --syslog --label=monthly --keep=12 //
|