diff options
author | John Estabrook <jestabro@vyos.io> | 2024-01-30 08:29:58 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-30 08:29:58 -0600 |
commit | 8bd6c24b50a34225763058c1daa28c8a8fe59098 (patch) | |
tree | 211c13a3df56abe246d556eaf04d8208d12b5af4 /python/vyos/system/image.py | |
parent | 02f7f91e3937f1622ba055847aa96b207d5ba754 (diff) | |
parent | 287c3edbac7f308d3240bdec253f0e5103e8eca1 (diff) | |
download | vyos-1x-8bd6c24b50a34225763058c1daa28c8a8fe59098.tar.gz vyos-1x-8bd6c24b50a34225763058c1daa28c8a8fe59098.zip |
Merge pull request #2888 from vyos/mergify/bp/sagitta/pr-2886
system-option: T5979: Add configurable kernel boot options (backport #2886)
Diffstat (limited to 'python/vyos/system/image.py')
-rw-r--r-- | python/vyos/system/image.py | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/python/vyos/system/image.py b/python/vyos/system/image.py index 514275654..5460e6a36 100644 --- a/python/vyos/system/image.py +++ b/python/vyos/system/image.py @@ -1,4 +1,4 @@ -# Copyright 2023 VyOS maintainers and contributors <maintainers@vyos.io> +# Copyright 2023-2024 VyOS maintainers and contributors <maintainers@vyos.io> # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public @@ -15,6 +15,7 @@ from pathlib import Path from re import compile as re_compile +from functools import wraps from tempfile import TemporaryDirectory from typing import TypedDict @@ -262,6 +263,16 @@ def is_live_boot() -> bool: return True return False +def if_not_live_boot(func): + """Decorator to call function only if not live boot""" + @wraps(func) + def wrapper(*args, **kwargs): + if not is_live_boot(): + ret = func(*args, **kwargs) + return ret + return None + return wrapper + def is_running_as_container() -> bool: if Path('/.dockerenv').exists(): return True |