Merge pull request #872 from mwhudson/autoinstall-refresh-update-no

putting "update: no" in autoinstall for refresh section should prevent update
This commit is contained in:
Michael Hudson-Doyle 2020-12-18 14:39:33 +13:00 committed by GitHub
commit 83ccaa7f1c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ class RefreshController(SubiquityController):
@property @property
def active(self): def active(self):
if 'update' in self.ai_data: if 'update' in self.ai_data:
return True return self.ai_data['update']
else: else:
return self.interactive() return self.interactive()