Wed, 13 Apr 2016 13:22:28 -0400
actually install lightdm
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' | |
27 | 7 | tags: repos |
8 | ||
9 | - package: | |
10 | name: firefox | |
11 | state: latest | |
12 | tags: packages, install | |
35 | 13 | when: > |
14 | not ( ansible_os_family == 'Debian' | |
15 | and ansible_distribution_release == 'NA') |