diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-03-21 20:47:01 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2020-03-21 20:47:01 +0100 |
commit | 6ae6c5ba2464ce749ba9fc8a25aa8540cdca3533 (patch) | |
tree | bdf6fda574ac7735c706eeda98f82612073f4e47 /interface-definitions/salt-minion.xml.in | |
parent | 7af1a7623b78954411133ea56a24055519282e9e (diff) | |
download | vyos-1x-6ae6c5ba2464ce749ba9fc8a25aa8540cdca3533.tar.gz vyos-1x-6ae6c5ba2464ce749ba9fc8a25aa8540cdca3533.zip |
salt: import salt-minion configuration from vyos-salt-minion
Diffstat (limited to 'interface-definitions/salt-minion.xml.in')
-rw-r--r-- | interface-definitions/salt-minion.xml.in | 85 |
1 files changed, 85 insertions, 0 deletions
diff --git a/interface-definitions/salt-minion.xml.in b/interface-definitions/salt-minion.xml.in new file mode 100644 index 000000000..9aa60249a --- /dev/null +++ b/interface-definitions/salt-minion.xml.in @@ -0,0 +1,85 @@ +<?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> + <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> |