We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b99945c commit 672f46cCopy full SHA for 672f46c
provision/ansible/roles/clitools/tasks/configuration.yml
@@ -30,5 +30,19 @@
30
line: 'password = "{{ growlPassword }}"'
31
when: growlPassword is defined
32
33
+# Not working correclty because of issue:
34
+# https://github.com/ansible/ansible-modules-core/issues/1500
35
+#
36
+#- name: Setup growl support
37
+# ini_file:
38
+# dest: '/etc/clitools.ini'
39
+# section: '{{ item.section }}'
40
+# option: '{{ item.option }}'
41
+# value: '{{ item.value }}'
42
+# with_items:
43
+# - { section: 'growl', option: 'password', value: '{{ growlPassword }}' }
44
+# - { section: 'syscheck', option: 'wall', value: '0' }
45
+# when: growlPassword is defined
46
+
47
- name: Run clitools system startup
48
raw: '/usr/local/bin/ct system:startup > /dev/null'
0 commit comments