From 6c2a20663bc34bb167e7febd113de90915f44242 Mon Sep 17 00:00:00 2001 From: Michael Hudson-Doyle Date: Thu, 20 Jan 2022 16:24:25 +1300 Subject: [PATCH] initialize MirrorController.configure_once to False oops :/ --- subiquity/server/controllers/mirror.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subiquity/server/controllers/mirror.py b/subiquity/server/controllers/mirror.py index 1880e107..27bbd998 100644 --- a/subiquity/server/controllers/mirror.py +++ b/subiquity/server/controllers/mirror.py @@ -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)