Merge pull request #451 from sticky-note/fix/tpl_path
fix(tpl_path): salt master conf files
This commit is contained in:
commit
b9c860be2e
@ -1,3 +1,4 @@
|
|||||||
|
{%- set tplroot = tpldir.split('/')[0] %}
|
||||||
{% from "salt/map.jinja" import salt_settings with context %}
|
{% from "salt/map.jinja" import salt_settings with context %}
|
||||||
|
|
||||||
{%- if salt_settings.use_pip %}
|
{%- if salt_settings.use_pip %}
|
||||||
@ -34,7 +35,7 @@ salt-cloud:
|
|||||||
cloud-cert-{{ cert }}-pem:
|
cloud-cert-{{ cert }}-pem:
|
||||||
file.managed:
|
file.managed:
|
||||||
- name: {{ salt_settings.config_path }}/pki/cloud/{{ cert }}.pem
|
- name: {{ salt_settings.config_path }}/pki/cloud/{{ cert }}.pem
|
||||||
- source: salt://{{ slspath }}/files/key
|
- source: salt://{{ tplroot }}/files/key
|
||||||
- template: jinja
|
- template: jinja
|
||||||
- user: root
|
- user: root
|
||||||
- group:
|
- group:
|
||||||
|
@ -24,7 +24,7 @@ salt-master:
|
|||||||
}}
|
}}
|
||||||
{%- else %}
|
{%- else %}
|
||||||
- template: jinja
|
- template: jinja
|
||||||
- source: salt://{{ slspath }}/files/master.d
|
- source: salt://{{ tplroot }}/files/master.d
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
- clean: {{ salt_settings.clean_config_d_dir }}
|
- clean: {{ salt_settings.clean_config_d_dir }}
|
||||||
- exclude_pat: _*
|
- exclude_pat: _*
|
||||||
|
@ -65,7 +65,7 @@ salt-minion:
|
|||||||
}}
|
}}
|
||||||
{%- else %}
|
{%- else %}
|
||||||
- template: jinja
|
- template: jinja
|
||||||
- source: salt://{{ slspath }}/files/minion.d
|
- source: salt://{{ tplroot }}/files/minion.d
|
||||||
- context:
|
- context:
|
||||||
standalone: False
|
standalone: False
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
{%- set tplroot = tpldir.split('/')[0] %}
|
||||||
{% from "salt/map.jinja" import salt_settings with context %}
|
{% from "salt/map.jinja" import salt_settings with context %}
|
||||||
|
|
||||||
{% if salt_settings.install_packages %}
|
{% if salt_settings.install_packages %}
|
||||||
@ -12,7 +13,7 @@ ensure-salt-ssh-is-installed:
|
|||||||
ensure-roster-config:
|
ensure-roster-config:
|
||||||
file.managed:
|
file.managed:
|
||||||
- name: {{ salt_settings.config_path }}/roster
|
- name: {{ salt_settings.config_path }}/roster
|
||||||
- source: salt://{{ slspath }}/files/roster.jinja
|
- source: salt://{{ tplroot }}/files/roster.jinja
|
||||||
- template: jinja
|
- template: jinja
|
||||||
{% if salt_settings.install_packages %}
|
{% if salt_settings.install_packages %}
|
||||||
- require:
|
- require:
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
{%- set tplroot = tpldir.split('/')[0] %}
|
||||||
{% from "salt/map.jinja" import salt_settings with context %}
|
{% from "salt/map.jinja" import salt_settings with context %}
|
||||||
|
|
||||||
salt-minion:
|
salt-minion:
|
||||||
@ -11,7 +12,7 @@ salt-minion:
|
|||||||
file.recurse:
|
file.recurse:
|
||||||
- name: {{ salt_settings.config_path }}/minion.d
|
- name: {{ salt_settings.config_path }}/minion.d
|
||||||
- template: jinja
|
- template: jinja
|
||||||
- source: salt://{{ slspath }}/files/minion.d
|
- source: salt://{{ tplroot }}/files/minion.d
|
||||||
- clean: {{ salt_settings.clean_config_d_dir }}
|
- clean: {{ salt_settings.clean_config_d_dir }}
|
||||||
- exclude_pat: _*
|
- exclude_pat: _*
|
||||||
- context:
|
- context:
|
||||||
|
Loading…
Reference in New Issue
Block a user