Remove lingering OVA references
This commit is contained in:
parent
43feb33caa
commit
58ce133c8d
|
@ -227,11 +227,6 @@ def create_vm(
|
||||||
else:
|
else:
|
||||||
vm_data["script_arguments"] = []
|
vm_data["script_arguments"] = []
|
||||||
|
|
||||||
if profile_data.get("profile_type") == "ova":
|
|
||||||
is_ova_install = True
|
|
||||||
else:
|
|
||||||
is_ova_install = False
|
|
||||||
|
|
||||||
# Get the system details
|
# Get the system details
|
||||||
query = "SELECT * FROM system_template WHERE id = %s"
|
query = "SELECT * FROM system_template WHERE id = %s"
|
||||||
args = (profile_data["system_template"],)
|
args = (profile_data["system_template"],)
|
||||||
|
@ -446,7 +441,6 @@ def create_vm(
|
||||||
|
|
||||||
print("There is enough space on cluster to store VM volumes")
|
print("There is enough space on cluster to store VM volumes")
|
||||||
|
|
||||||
if not is_ova_install:
|
|
||||||
# Verify that every specified filesystem is valid
|
# Verify that every specified filesystem is valid
|
||||||
used_filesystems = list()
|
used_filesystems = list()
|
||||||
for volume in vm_data["volumes"]:
|
for volume in vm_data["volumes"]:
|
||||||
|
@ -468,9 +462,7 @@ def create_vm(
|
||||||
)
|
)
|
||||||
if retcode:
|
if retcode:
|
||||||
raise ProvisioningError(
|
raise ProvisioningError(
|
||||||
"Failed to find binary for mkfs.{}: {}".format(
|
"Failed to find binary for mkfs.{}: {}".format(filesystem, stderr)
|
||||||
filesystem, stderr
|
|
||||||
)
|
|
||||||
)
|
)
|
||||||
|
|
||||||
print("All selected filesystems are valid")
|
print("All selected filesystems are valid")
|
||||||
|
|
Loading…
Reference in New Issue