Skip to content

Commit

Permalink
Merge pull request #106 from bird-house/fix-epel
Browse files Browse the repository at this point in the history
skip epel setup when not used
  • Loading branch information
cehbrecht authored Sep 9, 2020
2 parents 9768f43 + 003ea98 commit b602308
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions playbook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# var: hostvars['192.168.50.44']
roles:
- role: geerlingguy.repo-epel
when: ansible_os_family == "RedHat"
when: (ansible_os_family == "RedHat") and (not epel_repo_disable)
- common
- role: andrewrothstein.miniconda
tags:
Expand Down Expand Up @@ -50,7 +50,7 @@
- null.yml
roles:
- role: geerlingguy.repo-epel
when: ansible_os_family == "RedHat"
when: (ansible_os_family == "RedHat") and (not epel_repo_disable)
- common
- role: andrewrothstein.miniconda
tags:
Expand Down

0 comments on commit b602308

Please sign in to comment.