2017-08-31 17:29:25 +00:00
|
|
|
- name: Teamviewer exclude ARM and debian family
|
2017-05-27 18:09:50 +00:00
|
|
|
set_fact:
|
|
|
|
teamviewer_install: False
|
|
|
|
teamviewer_enabled: "unavailable"
|
2017-08-31 17:29:25 +00:00
|
|
|
when: ansible_architecture == "armv7l" or not is_redhat
|
2017-05-27 18:09:50 +00:00
|
|
|
|
|
|
|
- name: Install Teamviewer if intel
|
2017-10-31 03:55:24 +00:00
|
|
|
include_tasks: install.yml
|
2017-08-31 17:29:25 +00:00
|
|
|
when: teamviewer_install
|
2017-05-27 18:09:50 +00:00
|
|
|
|
2018-10-31 04:42:25 +00:00
|
|
|
- name: Add 'teamviewer' variable values to {{ iiab_ini_file }}
|
|
|
|
ini_file:
|
|
|
|
path: "{{ iiab_ini_file }}"
|
|
|
|
section: teamviewer
|
|
|
|
option: "{{ item.option }}"
|
|
|
|
value: "{{ item.value }}"
|
2017-05-27 18:09:50 +00:00
|
|
|
with_items:
|
|
|
|
- option: name
|
|
|
|
value: teamviewer
|
|
|
|
- option: description
|
|
|
|
value: '"TeamViewer - the All-In-One Software for Remote Support and Online Meetings"'
|
2019-01-10 22:26:47 +00:00
|
|
|
- option: teamviewer_install
|
2017-05-27 18:09:50 +00:00
|
|
|
value: "{{ teamviewer_install }}"
|
2019-01-10 22:26:47 +00:00
|
|
|
- option: teamviewer_enabled
|
2017-05-27 18:09:50 +00:00
|
|
|
value: "{{ teamviewer_enabled }}"
|