roles/firefox/tasks/main.yml

Fri, 10 Feb 2017 03:23:21 -0500

author
Meredith Howard <mhoward@roomag.org>
date
Fri, 10 Feb 2017 03:23:21 -0500
changeset 48
af865a84224a
parent 35
5da50e754d33
child 49
6dbfcfdf807c
permissions
-rw-r--r--

add more installs

---
- apt_repository:
    repo: "deb http://mozilla.debian.net/ {{ansible_distribution_release}}-backports firefox-release"
  when: >
    ansible_os_family == 'Debian'
    and ansible_distribution_release != 'NA'
  tags: repos

- package:
    name: firefox
    state: latest
  tags: packages, install
  when: >
    not ( ansible_os_family == 'Debian'
      and ansible_distribution_release == 'NA')

mercurial