mirror of
https://github.com/iiab/iiab.git
synced 2025-02-13 03:32:12 +00:00
Update install.yml
This commit is contained in:
parent
ef48d49b88
commit
e5244caa61
1 changed files with 12 additions and 8 deletions
|
@ -24,7 +24,10 @@
|
||||||
- download
|
- download
|
||||||
|
|
||||||
- name: Get the teamviewer software
|
- 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
|
when: internet_available
|
||||||
tags:
|
tags:
|
||||||
- download
|
- download
|
||||||
|
@ -40,8 +43,9 @@
|
||||||
when: teamviewer_install and xo_model == "none" and ansible_distribution_version >= "22"
|
when: teamviewer_install and xo_model == "none" and ansible_distribution_version >= "22"
|
||||||
|
|
||||||
- name: using local copy
|
- name: using local copy
|
||||||
package: name={{ item }}
|
package:
|
||||||
state=present
|
name: "{{ item }}"
|
||||||
|
state: present
|
||||||
with_items:
|
with_items:
|
||||||
- teamviewer*
|
- teamviewer*
|
||||||
when: teamviewer_install and xo_model == "none" and ansible_distribution_version >= "22"
|
when: teamviewer_install and xo_model == "none" and ansible_distribution_version >= "22"
|
||||||
|
|
Loading…
Reference in a new issue