mirror of
https://github.com/zfsonlinux/zfs-auto-snapshot.git
synced 2024-11-07 16:54:25 +01:00
7 lines
173 B
Bash
7 lines
173 B
Bash
#!/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=daily --keep=31 //
|