summaryrefslogtreecommitdiff
path: root/src/op_mode
diff options
context:
space:
mode:
authorAndrew Topp <andrewt@telekinetica.net>2024-06-19 09:48:45 +1000
committerAndrew Topp <andrewt@telekinetica.net>2024-06-19 09:48:45 +1000
commit8281383a09f12da20a1c9b4864b38ac3f541b48f (patch)
treea478d3a1fd38a2a58f49a25a56919e1707734948 /src/op_mode
parentda5d29aa83666da52d5e7ba2c795a9220203e197 (diff)
downloadvyos-1x-8281383a09f12da20a1c9b4864b38ac3f541b48f.tar.gz
vyos-1x-8281383a09f12da20a1c9b4864b38ac3f541b48f.zip
op-mode: T5514: Allow safe reboots to config defaults when config.boot is deleted
* Added flag to vyos.config_mgmt.unsaved_commits() that will tolerate missing config.boot for specific circumstances * Shutdown/reboot uses this flag; config will regenerate from defaults after a reboot
Diffstat (limited to 'src/op_mode')
-rwxr-xr-xsrc/op_mode/powerctrl.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/op_mode/powerctrl.py b/src/op_mode/powerctrl.py
index 6c8f802b5..cb4a175dd 100755
--- a/src/op_mode/powerctrl.py
+++ b/src/op_mode/powerctrl.py
@@ -110,7 +110,7 @@ def check_unsaved_config():
from vyos.config_mgmt import unsaved_commits
from vyos.utils.boot import boot_configuration_success
- if unsaved_commits() and boot_configuration_success():
+ if unsaved_commits(allow_missing_config=True) and boot_configuration_success():
print("Warning: there are unsaved configuration changes!")
print("Run 'save' command if you do not want to lose those changes after reboot/shutdown.")
else: