summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Breunig <christian@breunig.cc>2024-06-22 19:18:46 +0200
committerGitHub <noreply@github.com>2024-06-22 19:18:46 +0200
commitf1ac0b57af6ac74f084e7946d165812427705427 (patch)
treee092ee10d77ce7018ced3d245f1a8098608e25f1 /src
parent544e606af3fb92d3a49d4b9ee6fd1910b457132f (diff)
parent5e88f15b16d39213f349c3a7b4f1030a1399f1cb (diff)
downloadvyos-1x-f1ac0b57af6ac74f084e7946d165812427705427.tar.gz
vyos-1x-f1ac0b57af6ac74f084e7946d165812427705427.zip
Merge pull request #3697 from vyos/mergify/bp/circinus-stream/pr-3654
op-mode: T5514: Allow safe reboots to config defaults when config.boot is deleted (backport #3654)
Diffstat (limited to 'src')
-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: