diff options
author | Robert Göhler <github@ghlr.de> | 2021-02-23 20:41:17 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-23 20:41:17 +0100 |
commit | 744a1ad6ad33e4305e613b6717ba62427eb7d809 (patch) | |
tree | 8677ea411c23b2dcfd74e6baeb20fdf1cc30720f /docs | |
parent | 502b792d27336f274cdc8a946e6d378634151522 (diff) | |
parent | 37dcf65eaffa63ec0205995a34ab3cf0640b1bef (diff) | |
download | vyos-documentation-744a1ad6ad33e4305e613b6717ba62427eb7d809.tar.gz vyos-documentation-744a1ad6ad33e4305e613b6717ba62427eb7d809.zip |
Merge pull request #462 from rebortg/saltstack
service: add salt-minion
Diffstat (limited to 'docs')
-rw-r--r-- | docs/configuration/service/index.rst | 1 | ||||
-rw-r--r-- | docs/configuration/service/salt-minion.disable | 2 | ||||
-rw-r--r-- | docs/configuration/service/salt-minion.rst | 53 |
3 files changed, 54 insertions, 2 deletions
diff --git a/docs/configuration/service/index.rst b/docs/configuration/service/index.rst index fb194239..96660e91 100644 --- a/docs/configuration/service/index.rst +++ b/docs/configuration/service/index.rst @@ -19,6 +19,7 @@ Service mdns pppoe-server router-advert + salt-minion snmp ssh tftp-server diff --git a/docs/configuration/service/salt-minion.disable b/docs/configuration/service/salt-minion.disable deleted file mode 100644 index 63df57a4..00000000 --- a/docs/configuration/service/salt-minion.disable +++ /dev/null @@ -1,2 +0,0 @@ -salt-minion -###########
\ No newline at end of file diff --git a/docs/configuration/service/salt-minion.rst b/docs/configuration/service/salt-minion.rst new file mode 100644 index 00000000..aa747c36 --- /dev/null +++ b/docs/configuration/service/salt-minion.rst @@ -0,0 +1,53 @@ +.. _saltminion: + +########### +Salt-Minion +########### + +SaltStack_ is Python-based, open-source +software for event-driven IT automation, remote task execution, and +configuration management. Supporting the "infrastructure as code" +approach to data center system and network deployment and management, +configuration automation, SecOps orchestration, vulnerability remediation, +and hybrid cloud control. + + +************ +Requirements +************ + +To use the Salt-Minion, a running Salt-Master is required. You can find more +in the `Salt Poject Documentaion +<https://docs.saltproject.io/en/latest/contents.html>`_ + +************* +Configuration +************* + +.. cfgcmd:: set service salt-minion hash <type> + + The hash type used when discovering file on master server (default: sha256) + +.. cfgcmd:: set service salt-minion id <id> + + Explicitly declare ID for this minion to use (default: hostname) + +.. cfgcmd:: set service salt-minion interval <1-1440> + + Interval in minutes between updates (default: 60) + +.. cfgcmd:: set service salt-minion master <hostname | IP> + + The hostname or IP address of the master + +.. cfgcmd:: set service salt-minion master-key <key> + + URL with signature of master for auth reply verification + + +Please take a look in the Automation section to find some usefull +Examples. + + + +.. _SaltStack: https://saltproject.io/
\ No newline at end of file |