Merge pull request #1169 from mwhudson/configure_once-oops

initialize MirrorController.configure_once to False
This commit is contained in:
Dan Bungert 2022-01-20 10:18:26 -07:00 committed by GitHub
commit c9f389d1ca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ class MirrorController(SubiquityController):
self.app.hub.subscribe(
(InstallerChannels.CONFIGURED, 'source'), self.on_source)
self.cc_event = asyncio.Event()
self.configured_once = True
self.configured_once = False
self._apt_config_key = None
self._apply_apt_config_task = SingleInstanceTask(
self._apply_apt_config)