Skip to content

Commit afad2b2

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 2bb3f85 commit afad2b2

1 file changed

Lines changed: 12 additions & 4 deletions

File tree

handlers/main.yml

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,24 @@
11
---
22
# handlers file for thinlinc-server
33
- name: restart vsmagent
4-
service: name=vsmagent state=restarted
4+
service:
5+
name: vsmagent
6+
state: restarted
57

68
- name: restart vsmserver
7-
service: name=vsmserver state=restarted
9+
service:
10+
name: vsmserver
11+
state: restarted
812

913
- name: restart tlwebadm
10-
service: name=tlwebadm state=restarted
14+
service:
15+
name: tlwebadm
16+
state: restarted
1117

1218
- name: restart tlwebaccess
13-
service: name=tlwebaccess state=restarted
19+
service:
20+
name: tlwebaccess
21+
state: restarted
1422

1523
- name: run tl-setup
1624
command: /opt/thinlinc/sbin/tl-setup -a "/root/thinlinc-setup.answers"

0 commit comments

Comments
 (0)