diff options
author | Runar Borge <runar@borge.nu> | 2018-08-16 22:44:51 +0200 |
---|---|---|
committer | Runar Borge <runar@borge.nu> | 2018-08-16 22:44:51 +0200 |
commit | 0a9bcf9a7706e4bc7f4884419790c8e3f1601d39 (patch) | |
tree | f8b0851687b6acdc6d929234448d75d59beb687b /op-mode-definitions | |
parent | 519192f0d82aa920b9870547b92d8f1a22837158 (diff) | |
download | vyos-1x-0a9bcf9a7706e4bc7f4884419790c8e3f1601d39.tar.gz vyos-1x-0a9bcf9a7706e4bc7f4884419790c8e3f1601d39.zip |
T689: Undoing help text change on reboot and poweroff commands
Diffstat (limited to 'op-mode-definitions')
-rw-r--r-- | op-mode-definitions/poweroff.xml | 4 | ||||
-rw-r--r-- | op-mode-definitions/reboot.xml | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/op-mode-definitions/poweroff.xml b/op-mode-definitions/poweroff.xml index e6cab0222..725d10225 100644 --- a/op-mode-definitions/poweroff.xml +++ b/op-mode-definitions/poweroff.xml @@ -2,14 +2,14 @@ <interfaceDefinition> <node name="poweroff"> <properties> - <help>Shutdown the system</help> + <help>Poweroff the system</help> </properties> <command>sudo ${vyos_op_scripts_dir}/powerctrl.py --poweroff now</command> <children> <leafNode name="now"> <properties> - <help>Shutdown the system imidiently</help> + <help>Poweroff the system without confirmation</help> </properties> <command>sudo ${vyos_op_scripts_dir}/powerctrl.py --yes --poweroff now</command> </leafNode> diff --git a/op-mode-definitions/reboot.xml b/op-mode-definitions/reboot.xml index ebdd5691a..214a39633 100644 --- a/op-mode-definitions/reboot.xml +++ b/op-mode-definitions/reboot.xml @@ -9,7 +9,7 @@ <children> <leafNode name="now"> <properties> - <help>Reboot the system imidiently</help> + <help>Reboot the system without confirmation</help> </properties> <command>sudo ${vyos_op_scripts_dir}/powerctrl.py --yes --reboot now</command> </leafNode> |