# File lib/zfstools.rb, line 31 def snapshot_name(interval) if $use_utc date = Time.now.utc.strftime(snapshot_format + "U") else date = Time.now.strftime(snapshot_format) end snapshot_prefix(interval) + date end