mirror of
https://github.com/iiab/iiab.git
synced 2025-02-13 19:52:06 +00:00
51 lines
1.8 KiB
YAML
51 lines
1.8 KiB
YAML
# we need to install X11 and the Xfce display manager
|
|
- name: Install Xfce group of packages
|
|
shell: "yum groupinstall -y xfce"
|
|
when: xo_model == "none" and internet_available and ansible_distribution_version <= "20"
|
|
tags:
|
|
- download
|
|
|
|
- name: Install X11 group of packages
|
|
shell: "yum groupinstall -y 'X Window system'"
|
|
when: xo_model == "none" and internet_available and ansible_distribution_version <= "20"
|
|
tags:
|
|
- download
|
|
|
|
- name: Install Xfce group of packages
|
|
shell: yum groupinstall -y "Xfce Desktop" --exclude fedora-release\*
|
|
when: xo_model == "none" and internet_available and ansible_distribution_version >= "21"
|
|
tags:
|
|
- download
|
|
|
|
- name: Install X Windows on CentOS
|
|
shell: yum groupinstall -y "Server with GUI"
|
|
when: internet_available and ansible_distribution == "CentOS"
|
|
tags:
|
|
- download
|
|
|
|
- name: Download TeamViewer software
|
|
get_url:
|
|
url: "{{ teamviewer_url }}/{{ teamviewer_rpm_file }}"
|
|
dest: "{{ yum_packages_dir }}/{{ teamviewer_rpm_file }}"
|
|
timeout: "{{ download_timeout }}"
|
|
when: internet_available | bool
|
|
tags:
|
|
- download
|
|
|
|
# F22 has issues with yum localinstall exclude for now
|
|
- name: Do the install of TeamViewer, pulling in any required dependencies
|
|
shell: "yum localinstall -y {{ yum_packages_dir }}/{{ teamviewer_rpm_file }}"
|
|
when: teamviewer_install and internet_available
|
|
and xo_model == "none" and ansible_distribution_version <= "21"
|
|
|
|
- name: Making local copy available
|
|
shell: createrepo {{ yum_packages_dir }}
|
|
when: teamviewer_install and xo_model == "none" and ansible_distribution_version >= "22"
|
|
|
|
- name: Using local copy
|
|
package:
|
|
name: "{{ item }}"
|
|
state: present
|
|
with_items:
|
|
- teamviewer*
|
|
when: teamviewer_install and xo_model == "none" and ansible_distribution_version >= "22"
|