Skip to content
This repository was archived by the owner on Jan 22, 2026. It is now read-only.

Commit e396160

Browse files
committed
Don't continue_install if there is no install phase (import, livecd)
1 parent 72da324 commit e396160

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

virtinst/Guest.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -533,6 +533,12 @@ def get_continue_inst(self):
533533
val = self._lookup_osdict_key("continue")
534534
if not val:
535535
val = False
536+
537+
if val == True:
538+
# If we are doing an 'import' or 'liveCD' install, there is
539+
# no true install process, so continue install has no meaning
540+
if not self.get_config_xml(install=True):
541+
val = False
536542
return val
537543

538544
def continue_install(self, consolecb, meter, wait=True):

0 commit comments

Comments
 (0)