Skip to content

Commit 2debe7e

Browse files
committed
* Rewrote tasks to be consistent in style and conforming to 'new' ansible style (note: FQCN are not yet in place)
1 parent fdda694 commit 2debe7e

2 files changed

Lines changed: 8 additions & 2 deletions

File tree

tasks/install-thinlinc-rhel.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
---
22
- name: Install ThinLinc Software
3-
yum: name="{{ thinlinc_packages }}" state=present disable_gpg_check=true
3+
yum:
4+
name: "{{ thinlinc_packages }}"
5+
state: present
6+
disable_gpg_check: true
47
notify: run tl-setup

tasks/install-thinlinc-suse.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
---
22
- name: Install ThinLinc Software
3-
zypper: name="{{ thinlinc_packages }}" state=present disable_gpg_check=True
3+
zypper:
4+
name: "{{ thinlinc_packages }}"
5+
state: present
6+
disable_gpg_check: true
47
notify: run tl-setup

0 commit comments

Comments
 (0)