mirror of
https://github.com/saltstack-formulas/apache-formula.git
synced 2025-04-17 10:10:26 +00:00
fix(apache/modules.sls): fix duplicated ID
This commit is contained in:
parent
fc0f869b78
commit
57afd71627
1 changed files with 2 additions and 1 deletions
|
@ -11,7 +11,8 @@ include:
|
|||
{%- endfor %}
|
||||
|
||||
{% for module in salt['pillar.get']('apache:modules:enabled', []) %}
|
||||
{% if module not in existing_states %}
|
||||
{%- set mod_state = 'apache.mod_{}'.format(module) %}
|
||||
{% if mod_state not in existing_states %}
|
||||
a2enmod {{ module }}:
|
||||
cmd.run:
|
||||
- unless: ls /etc/apache2/mods-enabled/{{ module }}.load
|
||||
|
|
Loading…
Add table
Reference in a new issue