Fix SNAPNAME to contain the DATE if label is empty

When I didn't specify a `--label` on the commandline, the SNAPNAME was missing the $DATE component
This commit is contained in:
Roland Stühmer 2014-04-16 13:47:29 +02:00
parent 39bce83e0f
commit dc6f5ddcd9

View File

@ -507,7 +507,7 @@ SNAPPROP="-o com.sun:auto-snapshot-desc='$opt_event'"
DATE=$(date --utc +%F-%H%M)
# The snapshot name after the @ symbol.
SNAPNAME="$opt_prefix${opt_label:+$opt_sep$opt_label-$DATE}"
SNAPNAME="$opt_prefix${opt_label:+$opt_sep$opt_label}-$DATE"
# The expression for matching old snapshots. -YYYY-MM-DD-HHMM
SNAPGLOB="$opt_prefix${opt_label:+?$opt_label}????????????????"