diff --git a/subiquity/client/client.py b/subiquity/client/client.py index bae85ba8..a7c73caa 100644 --- a/subiquity/client/client.py +++ b/subiquity/client/client.py @@ -97,6 +97,7 @@ class SubiquityClient(TuiApplication): "Network", "Proxy", "Mirror", + "Refresh", "Progress", ] diff --git a/subiquity/client/controllers/__init__.py b/subiquity/client/controllers/__init__.py index 6bd1ce84..8e1feba9 100644 --- a/subiquity/client/controllers/__init__.py +++ b/subiquity/client/controllers/__init__.py @@ -13,6 +13,7 @@ # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see . +from subiquitycore.tuicontroller import RepeatedController from .keyboard import KeyboardController from .mirror import MirrorController from .network import NetworkController @@ -29,6 +30,7 @@ __all__ = [ 'ProgressController', 'ProxyController', 'RefreshController', + 'RepeatedController', 'WelcomeController', 'ZdevController', ] diff --git a/subiquity/controllers/__init__.py b/subiquity/controllers/__init__.py index 458abec8..54739563 100644 --- a/subiquity/controllers/__init__.py +++ b/subiquity/controllers/__init__.py @@ -13,7 +13,6 @@ # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see . -from ..controller import RepeatedController from .filesystem import FilesystemController from .identity import IdentityController from .reboot import RebootController @@ -24,7 +23,6 @@ __all__ = [ 'FilesystemController', 'IdentityController', 'RebootController', - 'RepeatedController', 'SnapListController', 'SSHController', ]