From e5244caa610da09ae065756bc0e25f57cc5c2225 Mon Sep 17 00:00:00 2001 From: A Holt Date: Fri, 8 Dec 2017 01:37:27 -0500 Subject: [PATCH] Update install.yml --- roles/teamviewer/tasks/install.yml | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/roles/teamviewer/tasks/install.yml b/roles/teamviewer/tasks/install.yml index 93ef6f234..64a7f2013 100644 --- a/roles/teamviewer/tasks/install.yml +++ b/roles/teamviewer/tasks/install.yml @@ -1,30 +1,33 @@ # 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" + 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" + 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" + 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" + when: internet_available and ansible_distribution == "CentOS" tags: - download - name: Get the teamviewer software - get_url: url="{{ teamviewer_url }}/{{ teamviewer_rpm_file }}" dest="{{ yum_packages_dir }}/{{ teamviewer_rpm_file }}" + get_url: + url: "{{ teamviewer_url }}/{{ teamviewer_rpm_file }}" + dest: "{{ yum_packages_dir }}/{{ teamviewer_rpm_file }}" + timeout: "{{ download_timeout }}" when: internet_available tags: - download @@ -40,8 +43,9 @@ when: teamviewer_install and xo_model == "none" and ansible_distribution_version >= "22" - name: using local copy - package: name={{ item }} - state=present + package: + name: "{{ item }}" + state: present with_items: - - teamviewer* + - teamviewer* when: teamviewer_install and xo_model == "none" and ansible_distribution_version >= "22"