Skip to content
This repository was archived by the owner on Feb 13, 2023. It is now read-only.
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Issue #2109: Playing with variable precedence.
  • Loading branch information
geerlingguy committed Nov 23, 2020
commit 93189e9a5d07cbaa9995578182a1de8ec73043ae
25 changes: 13 additions & 12 deletions molecule/default/converge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,6 @@
hosts: all
become: true

vars:
# Update the composer_home_path for global installs.
composer_home_path: "/{{ drupalvm_user }}/.composer"

# Don't run the 'disable firewall' tasks in tests.
firewall_disable_firewalld: false
firewall_disable_ufw: false

# Added to prevent test failures in CI.
firewall_enable_ipv6: false
hostname_configure: false

tasks:
- name: Update apt cache.
apt:
Expand All @@ -28,6 +16,19 @@
state: present
when: ansible_os_family == 'RedHat'

- name: Configure override vars (all).
set_fact:
# Update the composer_home_path for global installs.
composer_home_path: "/{{ drupalvm_user }}/.composer"

# Don't run the 'disable firewall' tasks in tests.
firewall_disable_firewalld: false
firewall_disable_ufw: false

# Added to prevent test failures in CI.
firewall_enable_ipv6: false
hostname_configure: false

- name: Configure test vars (RedHat).
set_fact:
postfix_inet_protocols: ipv4
Expand Down