mirror of
https://github.com/zfsonlinux/zfs-auto-snapshot.git
synced 2025-02-21 12:50:47 +01:00
6 lines
172 B
Bash
6 lines
172 B
Bash
#!/bin/sh
|
|
|
|
# Only call zfs-auto-snapshot if it's available
|
|
which zfs-auto-snapshot > /dev/null && \
|
|
exec zfs-auto-snapshot --quiet --syslog --label=daily --keep=31 //
|