Use FQCN for module names

This commit is contained in:
Timo Makinen 2022-02-03 16:40:16 +00:00
parent be273475c9
commit 8ba9437c89
17 changed files with 52 additions and 52 deletions

View file

@ -1,6 +1,6 @@
---
- name: install thinlinc repository
yum_repository:
ansible.builtin.yum_repository:
name: thinlinc
baseurl: "https://mirrors.foo.sh/thinlinc/{{ ansible_architecture }}"
description: Cendio Thinlinc
@ -8,18 +8,18 @@
enabled: true
- name: install thinlinc client
package:
ansible.builtin.package:
name: thinlinc-client
state: installed
- name: set default server name
lineinfile:
ansible.builtin.lineinfile:
path: /opt/thinlinc/etc/tlclient.conf
regexp: '^SERVER_NAME='
line: "SERVER_NAME=shell.foo.sh"
- name: disable fullscreen mode
lineinfile:
ansible.builtin.lineinfile:
path: /opt/thinlinc/etc/tlclient.conf
regexp: '^{{ item }}='
line: "{{ item }}=0"
@ -28,13 +28,13 @@
- FULL_SCREEN_ALL_MONITORS
- name: set default screen size
lineinfile:
ansible.builtin.lineinfile:
path: /opt/thinlinc/etc/tlclient.conf
regexp: '^SCREEN_SIZE_SELECTION='
line: "SCREEN_SIZE_SELECTION=2"
- name: use kerberos authentication
lineinfile:
ansible.builtin.lineinfile:
path: /opt/thinlinc/etc/tlclient.conf
regexp: '^AUTHENTICATION_METHOD='
line: "AUTHENTICATION_METHOD=kerberos"