Thu, 15 Jun 2017 21:24:42 -0400
fix
27 | 1 | --- |
2 | - apt_repository: | |
3 | repo: "deb http://mozilla.debian.net/ {{ansible_distribution_release}}-backports firefox-release" | |
35 | 4 | when: > |
5 | ansible_os_family == 'Debian' | |
6 | and ansible_distribution_release != 'NA' | |
49
6dbfcfdf807c
Fix firefox install (ESR, no weird repo)
Meredith Howard <mhoward@roomag.org>
parents:
35
diff
changeset
|
7 | and ansible_distribution_release != 'stretch' |
27 | 8 | tags: repos |
9 | ||
10 | - package: | |
49
6dbfcfdf807c
Fix firefox install (ESR, no weird repo)
Meredith Howard <mhoward@roomag.org>
parents:
35
diff
changeset
|
11 | name: firefox-esr |
27 | 12 | state: latest |
13 | tags: packages, install | |
35 | 14 | when: > |
15 | not ( ansible_os_family == 'Debian' | |
16 | and ansible_distribution_release == 'NA') |