fixed comments and readme

This commit is contained in:
admin
2020-04-16 02:06:50 +02:00
parent 9ae7755888
commit f0b279c919
2 changed files with 3 additions and 4 deletions

View File

@@ -2,6 +2,7 @@
zfs-auto-snapshot scripts allow automatic snapshots of all zfs filesystems and volumes.
The script will automatically rotate snapshots deleting old ones.
The script will temporarely avoid backups on damaged pools or pools with scrubbing going on.
It creates:
4 snapshots for hour to rotate every 15 min

View File

@@ -68,7 +68,7 @@ ZPOOLS_NOTREADY=$(echo "$ZPOOL_STATUS" | awk -F ': ' \
$1 ~ /^ *state$/ && $2 !~ /ONLINE|DEGRADED/ { print pool } ' \
| sort)
# Initialize the list of datasets that will get a recursive snapshot.
# Initialize the list of datasets that will get snapshots.
TARGETS=''
for ii in $CANDIDATES
@@ -93,10 +93,8 @@ do
TARGETS="$TARGETS $ii"
done
# ISO style date; fifteen characters: YYYY-MM-DD-HH-MM
DATE=$(date --utc +%F-%H-%M)
# The snapshot name after the @ symbol.
DATE=$(date --utc +%F-%H-%M)
SNAPNAME="${opt_prefix}_${opt_label}_$DATE"
# The expression for matching old snapshots.