diff options
| author | Yuriy Andamasov <yuriy@vyos.io> | 2026-04-29 07:50:10 +0300 |
|---|---|---|
| committer | Yuriy Andamasov <yuriy@vyos.io> | 2026-05-06 16:18:03 +0300 |
| commit | bf48ccdb1605a342e7d7642412bdfa64924e2ffe (patch) | |
| tree | 0d4313ec084987e7115fe8161d98db12b5ec7d90 /docs/configuration/service | |
| parent | 9938f2c5ef0e8b00b7b57da8484655ae3bdd2352 (diff) | |
| download | vyos-documentation-bf48ccdb1605a342e7d7642412bdfa64924e2ffe.tar.gz vyos-documentation-bf48ccdb1605a342e7d7642412bdfa64924e2ffe.zip | |
feat: expand canaries to 114; refresh 3 with cfgcmd body fix
Adds 8 new visual-validated canaries from the post-cfgcmd-fix
BackstopJS run (2026-04-29):
- configuration/policy/as-path-list
- configuration/policy/community-list
- configuration/policy/extcommunity-list
- configuration/policy/large-community-list
- configuration/policy/local-route
- configuration/policy/prefix-list
- configuration/service/salt-minion
- configuration/system/updates
Refreshes 3 existing canaries whose MD content changed via the
cfgcmd/opcmd single-line body fix on myst/current fc19ab5c:
- configuration/firewall/global-options
- configuration/firewall/groups
- configuration/policy/route
All 11 sourced from origin/myst/current. Net: 106 -> 114 canaries.
🤖 Generated by [robots](https://vyos.io)
Diffstat (limited to 'docs/configuration/service')
| -rw-r--r-- | docs/configuration/service/md-salt-minion.md | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/docs/configuration/service/md-salt-minion.md b/docs/configuration/service/md-salt-minion.md new file mode 100644 index 00000000..d7aa7664 --- /dev/null +++ b/docs/configuration/service/md-salt-minion.md @@ -0,0 +1,50 @@ +(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 Project Documentation](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/ |
