blob: 2c5a85d9550bf845c63b78921c971809fed6274b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
<?xml version="1.0"?>
<interfaceDefinition>
<node name="reboot">
<properties>
<help>Reboot the system</help>
</properties>
<command>/opt/vyatta/bin/sudo-users/vyatta-reboot.pl --action reboot</command>
<children>
<leafNode name="now">
<properties>
<help>Reboot the system without confirmation</help>
</properties>
<command>/opt/vyatta/bin/sudo-users/vyatta-reboot.pl --action 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>
</leafNode>
<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>
</tagNode>
</children>
</node>
</interfaceDefinition>
|