summaryrefslogtreecommitdiff
path: root/python/vyos/utils/boot.py
diff options
context:
space:
mode:
authorChristian Breunig <christian@breunig.cc>2023-07-12 21:16:11 +0200
committerChristian Breunig <christian@breunig.cc>2023-07-12 21:16:56 +0200
commit4e2a087cc7e91a510dd590f7cc761e36ac8f77f8 (patch)
treefd7534645f6950a8fcaabbce4c1437f6432cf3ff /python/vyos/utils/boot.py
parent6e621e42f463d8643b504916a1cc7c967f5bd6f1 (diff)
downloadvyos-1x-4e2a087cc7e91a510dd590f7cc761e36ac8f77f8.tar.gz
vyos-1x-4e2a087cc7e91a510dd590f7cc761e36ac8f77f8.zip
T5195: move boot_* helpers to vyos.utils.boot
Diffstat (limited to 'python/vyos/utils/boot.py')
-rw-r--r--python/vyos/utils/boot.py35
1 files changed, 35 insertions, 0 deletions
diff --git a/python/vyos/utils/boot.py b/python/vyos/utils/boot.py
new file mode 100644
index 000000000..3aecbec64
--- /dev/null
+++ b/python/vyos/utils/boot.py
@@ -0,0 +1,35 @@
+# Copyright 2023 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
+# License as published by the Free Software Foundation; either
+# version 2.1 of the License, or (at your option) any later version.
+#
+# This library is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+# Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this library. If not, see <http://www.gnu.org/licenses/>.
+
+import os
+
+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