diff options
Diffstat (limited to 'python')
| -rw-r--r-- | python/vyos/util.py | 13 | 
1 files changed, 13 insertions, 0 deletions
| diff --git a/python/vyos/util.py b/python/vyos/util.py index e62f9d5cf..33da5da40 100644 --- a/python/vyos/util.py +++ b/python/vyos/util.py @@ -1139,6 +1139,19 @@ def boot_configuration_complete() -> bool:          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}') | 
