summaryrefslogtreecommitdiff
path: root/virtinst/cli.py
diff options
context:
space:
mode:
Diffstat (limited to 'virtinst/cli.py')
-rw-r--r--virtinst/cli.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/virtinst/cli.py b/virtinst/cli.py
index 480e0b1e..681d5b87 100644
--- a/virtinst/cli.py
+++ b/virtinst/cli.py
@@ -4079,6 +4079,7 @@ class ParserTPM(VirtCLIParser):
cli_arg_name = "tpm"
guest_propname = "devices.tpm"
remove_first = "type"
+ stub_none = False
aliases = {
"backend.type": "type",
"backend.version": "version",
@@ -4086,6 +4087,10 @@ class ParserTPM(VirtCLIParser):
}
def _parse(self, inst):
+ if self.optstr == "none":
+ self.guest.skip_default_tpm = True
+ return
+
if (self.optdict.get("type", "").startswith("/")):
self.optdict["path"] = self.optdict.pop("type")
return super()._parse(inst)