mirror of
https://github.com/zfsonlinux/zfs-auto-snapshot.git
synced 2024-11-25 09:33:15 +01:00
6 lines
174 B
Bash
6 lines
174 B
Bash
#!/bin/sh
|
|
|
|
# Only call zfs-auto-snapshot if it's available
|
|
exec which zfs-auto-snapshot > /dev/null && \
|
|
zfs-auto-snapshot --quiet --syslog --label=monthly --keep=12 //
|