roles/firefox/tasks/main.yml

changeset 74
87a637974823
parent 73
8b0c09efbb5b
child 75
082685c4bd2a
equal deleted inserted replaced
73:8b0c09efbb5b 74:87a637974823
1 ---
2 - apt_repository:
3 repo: "deb http://mozilla.debian.net/ {{ansible_distribution_release}}-backports firefox-release"
4 when: >
5 ansible_os_family == 'Debian'
6 and ansible_distribution_release != 'NA'
7 and ansible_distribution_release != 'stretch'
8 tags: repos
9
10 - package:
11 name: firefox-esr
12 state: latest
13 tags: packages, install
14 when: >
15 not ( ansible_os_family == 'Debian'
16 and ansible_distribution_release == 'NA')

mercurial