diff options
author | John Estabrook <jestabro@vyos.io> | 2024-10-02 12:36:41 -0500 |
---|---|---|
committer | John Estabrook <jestabro@vyos.io> | 2024-10-05 00:27:19 -0500 |
commit | 4d5f2a58bbf5a366c43871ef27b75d31b3b2a114 (patch) | |
tree | cb3047407f14d724b0556df3040007629cee3459 /interface-definitions | |
parent | f9c81b121b146fbcf3c458273b2b47e6e571f2e2 (diff) | |
download | vyos-1x-4d5f2a58bbf5a366c43871ef27b75d31b3b2a114.tar.gz vyos-1x-4d5f2a58bbf5a366c43871ef27b75d31b3b2a114.zip |
config-mgmt: T5976: add option for commit-confirm to use 'soft' rollback
Commit-confirm will restore a previous configuration if a confirmation
is not received in N minutes. Traditionally, this was restored by a
reboot into the last configuration on disk; add a configurable option to
reload the last completed commit without a reboot. The default setting
is to reboot.
Diffstat (limited to 'interface-definitions')
-rw-r--r-- | interface-definitions/system_config-management.xml.in | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/interface-definitions/system_config-management.xml.in b/interface-definitions/system_config-management.xml.in index e666633b7..b8fb6cdb5 100644 --- a/interface-definitions/system_config-management.xml.in +++ b/interface-definitions/system_config-management.xml.in @@ -67,6 +67,26 @@ <constraintErrorMessage>Number of revisions must be between 0 and 65535</constraintErrorMessage> </properties> </leafNode> + <leafNode name="commit-confirm"> + <properties> + <help>Commit confirm rollback type if no confirmation</help> + <completionHelp> + <list>reload reboot</list> + </completionHelp> + <valueHelp> + <format>reload</format> + <description>Reload previous configuration if not confirmed</description> + </valueHelp> + <valueHelp> + <format>reboot</format> + <description>Reboot to saved configuration if not confirmed</description> + </valueHelp> + <constraint> + <regex>(reload|reboot)</regex> + </constraint> + </properties> + <defaultValue>reboot</defaultValue> + </leafNode> </children> </node> </children> |