roles/firefox/tasks/main.yml

Wed, 13 Apr 2016 13:22:28 -0400

author
Meredith Howard <mhoward@roomag.org>
date
Wed, 13 Apr 2016 13:22:28 -0400
changeset 45
2383a9aa66a8
parent 35
5da50e754d33
child 49
6dbfcfdf807c
permissions
-rw-r--r--

actually install lightdm

---
- 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