From 4e2a087cc7e91a510dd590f7cc761e36ac8f77f8 Mon Sep 17 00:00:00 2001 From: Christian Breunig Date: Wed, 12 Jul 2023 21:16:11 +0200 Subject: T5195: move boot_* helpers to vyos.utils.boot --- python/vyos/util.py | 22 ---------------------- 1 file changed, 22 deletions(-) (limited to 'python/vyos/util.py') diff --git a/python/vyos/util.py b/python/vyos/util.py index ed651fdc3..bd47940bb 100644 --- a/python/vyos/util.py +++ b/python/vyos/util.py @@ -1130,28 +1130,6 @@ def is_wwan_connected(interface): # return True/False if interface is in connected state return dict_search('modem.generic.state', tmp) == 'connected' -def boot_configuration_complete() -> bool: - """ Check if the boot config loader has completed - """ - from vyos.defaults import config_status - - if os.path.isfile(config_status): - return True - return False - -def boot_configuration_success() -> bool: - from vyos.defaults import config_status - - try: - with open(config_status) as f: - res = f.read().strip() - except FileNotFoundError: - return False - - if int(res) == 0: - return True - return False - def sysctl_read(name): """ Read and return current value of sysctl() option """ tmp = cmd(f'sysctl {name}') -- cgit v1.2.3