| --- | |
| # tasks file for apigee-opdk-setup-os-common-extra | |
| - name: Update EPEL | |
| yum: | |
| name: "https://dl.fedoraproject.org/pub/epel/epel-release-latest-{{ ansible_distribution_major_version }}.noarch.rpm" | |
| state: present | |
| - name: Do not use proxy definitions | |
| include: with_no_proxy.yml | |
| when: http_proxy is not defined and https_proxy is not defined | |
| - name: Use proxy definitions | |
| include: with_proxy.yml | |
| when: http_proxy is defined and https_proxy is defined |