diff options
Diffstat (limited to 'op-mode-definitions/reboot.xml')
-rw-r--r-- | op-mode-definitions/reboot.xml | 28 |
1 files changed, 18 insertions, 10 deletions
diff --git a/op-mode-definitions/reboot.xml b/op-mode-definitions/reboot.xml index 2c5a85d95..ebdd5691a 100644 --- a/op-mode-definitions/reboot.xml +++ b/op-mode-definitions/reboot.xml @@ -4,35 +4,43 @@ <properties> <help>Reboot the system</help> </properties> - <command>/opt/vyatta/bin/sudo-users/vyatta-reboot.pl --action reboot</command> + <command>sudo ${vyos_op_scripts_dir}/powerctrl.py --reboot now</command> + <children> <leafNode name="now"> <properties> - <help>Reboot the system without confirmation</help> + <help>Reboot the system imidiently</help> </properties> - <command>/opt/vyatta/bin/sudo-users/vyatta-reboot.pl --action reboot --now</command> + <command>sudo ${vyos_op_scripts_dir}/powerctrl.py --yes --reboot now</command> </leafNode> - + <leafNode name="cancel"> <properties> <help>Cancel a pending reboot</help> </properties> - <command>/opt/vyatta/bin/sudo-users/vyatta-reboot.pl --action reboot_cancel</command> + <command>sudo ${vyos_op_scripts_dir}/powerctrl.py --cancel</command> </leafNode> + <tagNode name="in"> + <properties> + <help>Reboot in X minutes</help> + <completionHelp> + <list>Minutes</list> + </completionHelp> + </properties> + <command>sudo ${vyos_op_scripts_dir}/powerctrl.py --yes --reboot $3</command> + + </tagNode> <tagNode name="at"> <properties> <help>Reboot at a specific time</help> <completionHelp> <list>HH:MM</list> - <list>MMDDYY</list> - <list>midnight</list> - <list>noon</list> </completionHelp> </properties> - <command>/opt/vyatta/bin/sudo-users/vyatta-reboot.pl --action reboot_at --at_time '$3'</command> - + <command>sudo ${vyos_op_scripts_dir}/powerctrl.py --yes --reboot $3</command> + </tagNode> </children> |