initialize MirrorController.configure_once to False

oops :/
This commit is contained in:
Michael Hudson-Doyle 2022-01-20 16:24:25 +13:00
parent b312a24468
commit 6c2a20663b
1 changed files with 1 additions and 1 deletions

View File

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