Skip to content

Commit

Permalink
try to fix loop error
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandermeindl committed Apr 17, 2024
1 parent e58f173 commit c1d3fe1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion roles/drupal/tasks/instance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
group: '{{ nginx_group }}'
recurse: true

- name: Update settings.php for Drupal 8 - {{ instance.name }}
- name: Update settings.php for Drupal - {{ instance.name }}
ansible.builtin.template:
src: default.settings.php.j2
dest: "{{ instance.dir }}{{ instance.vhost_dir | default(drupal_vhost_dir) }}/sites/default/settings.php"
Expand Down
2 changes: 1 addition & 1 deletion roles/drupal/templates/env.j2
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
APP_ENV={{ instance.drupal_app_env | default('prod') }}
{% if instance.drupal_envs is defined %}
{% for drupal_env in instance.drupal_envs %}
{{ key }}={{ value}}
{{ name }}={{ value }}
{% endfor -%}
{% endif %}

0 comments on commit c1d3fe1

Please sign in to comment.