Skip to content

Commit

Permalink
Merge pull request #111 from iggy/master
Browse files Browse the repository at this point in the history
Switch config file.recurse to clean by default and tell it to ignore _*
  • Loading branch information
nmadhok committed Apr 1, 2015
2 parents 2247630 + 7649c26 commit a11c39c
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 1 deletion.
2 changes: 1 addition & 1 deletion salt/defaults.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ salt:
salt_cloud: salt-cloud
salt_api: salt-api
salt_ssh: salt-ssh
clean_config_d_dir: False
clean_config_d_dir: True

master:
gitfs_provider: gitpython
Expand Down
File renamed without changes.
File renamed without changes.
7 changes: 7 additions & 0 deletions salt/master.sls
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ salt-master:
- template: jinja
- source: salt://salt/files/master.d
- clean: {{ salt_settings.clean_config_d_dir }}
- exclude_pat: _*
service.running:
- enable: True
- name: {{ salt_settings.master_service }}
Expand All @@ -18,3 +19,9 @@ salt-master:
- pkg: salt-master
{% endif %}
- file: salt-master
- file: remove-old-master-conf-file
# clean up old _defaults.conf file if they have it around
remove-old-master-conf-file:
file.absent:
- name: /etc/salt/master.d/_defaults.conf
7 changes: 7 additions & 0 deletions salt/minion.sls
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ salt-minion:
- template: jinja
- source: salt://salt/files/minion.d
- clean: {{ salt_settings.clean_config_d_dir }}
- exclude_pat: _*
- context:
standalone: False
service.running:
Expand All @@ -20,3 +21,9 @@ salt-minion:
- pkg: salt-minion
{% endif %}
- file: salt-minion
- file: remove-old-minion-conf-file
# clean up old _defaults.conf file if they have it around
remove-old-minion-conf-file:
file.absent:
- name: /etc/salt/minion.d/_defaults.conf
6 changes: 6 additions & 0 deletions salt/standalone.sls
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ salt-minion:
- template: jinja
- source: salt://salt/files/minion.d
- clean: {{ salt_settings.clean_config_d_dir }}
- exclude_pat: _*
- context:
standalone: True
service.dead:
Expand All @@ -20,3 +21,8 @@ salt-minion:
- pkg: salt-minion
{% endif %}
- file: salt-minion
# clean up old _defaults.conf file if they have it around
remove-old-standalone-conf-file:
file.absent:
- name: /etc/salt/minion.d/_defaults.conf

0 comments on commit a11c39c

Please sign in to comment.