mirror of
https://github.com/saltstack-formulas/salt-formula.git
synced 2026-07-25 12:50:50 +02:00
Added recursive management of minion.d and master.d.
This allows users to easily add configuration settings that the formula doesn't yet provide, without having to modify the existing templates.
This commit is contained in:
+4
-3
@@ -3,10 +3,11 @@
|
||||
salt-master:
|
||||
pkg.installed:
|
||||
- name: {{ pkgs['salt-master'] }}
|
||||
file.managed:
|
||||
- name: /etc/salt/master.d/master.conf
|
||||
file.recurse:
|
||||
- name: /etc/salt/master.d
|
||||
- template: jinja
|
||||
- source: salt://salt/files/master
|
||||
- source: salt://salt/files/master.d
|
||||
- clean: True
|
||||
service.running:
|
||||
- enable: True
|
||||
- watch:
|
||||
|
||||
+4
-3
@@ -3,10 +3,11 @@
|
||||
salt-minion:
|
||||
pkg.installed:
|
||||
- name: {{ pkgs['salt-minion'] }}
|
||||
file.managed:
|
||||
- name: /etc/salt/minion.d/minion.conf
|
||||
file.recurse:
|
||||
- name: /etc/salt/minion.d
|
||||
- template: jinja
|
||||
- source: salt://salt/files/minion
|
||||
- source: salt://salt/files/minion.d
|
||||
- clean: True
|
||||
service.running:
|
||||
- enable: True
|
||||
- watch:
|
||||
|
||||
Reference in New Issue
Block a user