diff options
author | Christian Breunig <christian@breunig.cc> | 2023-07-12 21:16:11 +0200 |
---|---|---|
committer | Christian Breunig <christian@breunig.cc> | 2023-07-12 21:16:56 +0200 |
commit | 4e2a087cc7e91a510dd590f7cc761e36ac8f77f8 (patch) | |
tree | fd7534645f6950a8fcaabbce4c1437f6432cf3ff /src/services | |
parent | 6e621e42f463d8643b504916a1cc7c967f5bd6f1 (diff) | |
download | vyos-1x-4e2a087cc7e91a510dd590f7cc761e36ac8f77f8.tar.gz vyos-1x-4e2a087cc7e91a510dd590f7cc761e36ac8f77f8.zip |
T5195: move boot_* helpers to vyos.utils.boot
Diffstat (limited to 'src/services')
-rwxr-xr-x | src/services/vyos-configd | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/services/vyos-configd b/src/services/vyos-configd index 48c9135e2..355182b26 100755 --- a/src/services/vyos-configd +++ b/src/services/vyos-configd @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # -# Copyright (C) 2020 VyOS maintainers and contributors +# Copyright (C) 2020-2023 VyOS maintainers and contributors # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License version 2 or later as @@ -13,8 +13,6 @@ # # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. -# -# import os import sys @@ -28,8 +26,9 @@ import zmq from contextlib import contextmanager from vyos.defaults import directories -from vyos.util import boot_configuration_complete -from vyos.configsource import ConfigSourceString, ConfigSourceError +from vyos.utils.boot import boot_configuration_complete +from vyos.configsource import ConfigSourceString +from vyos.configsource import ConfigSourceError from vyos.config import Config from vyos import ConfigError |