Make default snap name just the datestring
This commit is contained in:
parent
e6bfbb6d45
commit
3d0d5e63f6
|
@ -1257,8 +1257,7 @@ def create_vm_snapshot(zkhandler, domain, snapshot_name=None):
|
||||||
|
|
||||||
if snapshot_name is None:
|
if snapshot_name is None:
|
||||||
now = datetime.now()
|
now = datetime.now()
|
||||||
datestring = now.strftime("%Y%m%d%H%M%S")
|
snapshot_name = now.strftime("%Y%m%d%H%M%S")
|
||||||
snapshot_name = f"snapshot_{datestring}"
|
|
||||||
else:
|
else:
|
||||||
reg = re.compile("^[a-z0-9.-_]+$")
|
reg = re.compile("^[a-z0-9.-_]+$")
|
||||||
if not reg.match(snapshot_name):
|
if not reg.match(snapshot_name):
|
||||||
|
|
Loading…
Reference in New Issue