1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-03-09 15:40:17 +00:00

teamviewer is non-arm and CentOS only (#173)

This commit is contained in:
Jerry Vonau 2017-08-31 12:29:25 -05:00 committed by georgejhunt
parent 595d884bf4
commit 56a2f5c003

View file

@ -1,12 +1,12 @@
- name: Teamviewer exclude ARM
- name: Teamviewer exclude ARM and debian family
set_fact:
teamviewer_install: False
teamviewer_enabled: "unavailable"
when: ansible_architecture == "armv7l"
when: ansible_architecture == "armv7l" or not is_redhat
- name: Install Teamviewer if intel
include: install.yml
when: ansible_architecture == "i386" or ansible_architecture == "x86_64"
when: teamviewer_install
- name: Add teamviewer to service list
ini_file: dest='{{ service_filelist }}'