mirror of
https://github.com/zfsonlinux/zfs-auto-snapshot.git
synced 2025-02-21 12:50:47 +01:00
6 lines
174 B
Bash
6 lines
174 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=monthly --keep=12 //
|