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:
parent
595d884bf4
commit
56a2f5c003
1 changed files with 3 additions and 3 deletions
|
@ -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 }}'
|
||||
|
|
Loading…
Add table
Reference in a new issue