Commit a9609575 authored by Rafael Monnerat's avatar Rafael Monnerat

playbook: Include support for Linuxmint 17.2

parent 9eea43a7
- name: Install packages using apt
apt: name={{ package_name }} state={{ package_state }} update_cache=yes cache_valid_time=3600
when: ansible_os_family == "Debian"
when: ansible_os_family == "Debian" or ansible_os_family == "Linuxmint"
- name: Install re6stnet on CentOS
yum: name={{ package_name }} state={{ package_state }} update_cache=yes
......
......@@ -31,6 +31,14 @@
apt_repository: repo='deb {{ base_open_build_url }}/xUbuntu_14.04/ ./' state=present
when: ansible_distribution == "Ubuntu" and ansible_distribution_version == "14.04"
- name: Install Ubuntu 14.04 repository key (Linuxmint 17.2)
apt_key: url={{ base_open_build_url }}/xUbuntu_14.04/Release.key state=present
when: ansible_distribution == "Linuxmint" and ansible_distribution_version == "17.2"
- name: Install Ubuntu 14.04 repository (Linuxmint 17.2)
apt_repository: repo='deb {{ base_open_build_url }}/xUbuntu_14.04/ ./' state=present
when: ansible_distribution == "Linuxmint" and ansible_distribution_version == "17.2"
- name: Install Ubuntu 15.04 repository key
apt_key: url={{ base_open_build_url }}/xUbuntu_15.04/Release.key state=present
when: ansible_distribution == "Ubuntu" and ansible_distribution_version == "15.04"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment