Skip to content

Commit 672f46c

Browse files
committed
Added ini_file example (but disabled because of bug)
1 parent b99945c commit 672f46c

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

provision/ansible/roles/clitools/tasks/configuration.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,19 @@
3030
line: 'password = "{{ growlPassword }}"'
3131
when: growlPassword is defined
3232

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+
3347
- name: Run clitools system startup
3448
raw: '/usr/local/bin/ct system:startup > /dev/null'

0 commit comments

Comments
 (0)