blob: 02501c5e8a6970f1a76616e5b8cd77cd12b2c82a (
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
<?xml version="1.0"?>
<!--Salt-minion configuration -->
<interfaceDefinition>
<node name="service">
<children>
<node name="salt-minion" owner="${vyos_conf_scripts_dir}/salt-minion.py">
<properties>
<help>Salt Minion</help>
<priority>500</priority>
</properties>
<children>
<leafNode name="hash_type">
<properties>
<help>The hash_type is the hash to use when discovering the hash of a file on the master server.</help>
</properties>
</leafNode>
<leafNode name="log_file">
<properties>
<help>The location of the minion log file.</help>
</properties>
</leafNode>
<leafNode name="log_level">
<properties>
<help>Log level</help>
<valueHelp>
<format>garbage</format>
<description>log garbage info</description>
</valueHelp>
<valueHelp>
<format>trace</format>
<description>log trace info</description>
</valueHelp>
<valueHelp>
<format>debug</format>
<description>log debug info</description>
</valueHelp>
<valueHelp>
<format>info</format>
<description>log info</description>
</valueHelp>
<valueHelp>
<format>warning</format>
<description>log warning info</description>
</valueHelp>
<valueHelp>
<format>error</format>
<description>log error info</description>
</valueHelp>
<valueHelp>
<format>critical</format>
<description>log critical info</description>
</valueHelp>
</properties>
</leafNode>
<leafNode name="master">
<properties>
<help>The hostname or IP address of the master.</help>
<valueHelp>
<format>ipv4</format>
<description>Remote syslog server IPv4 address</description>
</valueHelp>
<valueHelp>
<format>hostname</format>
<description>Remote syslog server FQDN</description>
</valueHelp>
<constraint>
<validator name="ip-address"/>
<validator name="fqdn"/>
</constraint>
<constraintErrorMessage>Invalid FQDN or IP address</constraintErrorMessage>
<multi/>
</properties>
</leafNode>
<leafNode name="id">
<properties>
<help>Explicitly declare the id for this minion to use.</help>
</properties>
</leafNode>
<leafNode name="user">
<properties>
<help>The user to run the Salt processes.</help>
</properties>
</leafNode>
<leafNode name="mine_interval">
<properties>
<help>The number of minutes between mine updates.</help>
</properties>
</leafNode>
<leafNode name="master-key">
<properties>
<help>Enables verification of the master-public-signature returned by the master in auth-replies.</help>
</properties>
</leafNode>
</children>
</node>
</children>
</node>
</interfaceDefinition>
|