From 989b586768ea89658987de9deb5d1eb2cb957955 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Fri, 18 Oct 2019 10:49:21 +0300 Subject: Revert "Add: muck-url to controller config" This reverts commit 4f2207571928dc685102e3b3ff55e79cd3d46b6d. --- ick_controller.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ick_controller.py b/ick_controller.py index 62ccaef..2090b4e 100644 --- a/ick_controller.py +++ b/ick_controller.py @@ -1,5 +1,5 @@ #!/usr/bin/python3 -# Copyright (C) 2017-2019 Lars Wirzenius +# Copyright (C) 2017-2018 Lars Wirzenius # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by @@ -47,7 +47,6 @@ default_config = { 'log': [], 'statedir': None, 'artifact-store': None, - 'muck-url': None, 'auth-url': None, 'notify-url': None, 'apt-server': None, @@ -94,7 +93,8 @@ def main(): ick2.log.log('info', msg_text='Ick2 controller starts', config=config) - state = ick2.MuckStore(config['muck-url']) + state = ick2.FilePersistentState() + state.set_directory(config['statedir']) api = ick2.ControllerAPI(state) api.set_apt_server(config['apt-server']) -- cgit v1.2.1