1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-02-13 19:52:06 +00:00
iiab/roles/dokuwiki/tasks/main.yml

20 lines
606 B
YAML
Raw Normal View History

2017-12-08 10:01:09 +00:00
- name: Install DokuWiki
include_tasks: install.yml
when: dokuwiki_install | bool
2017-05-27 18:09:50 +00:00
2018-10-31 06:07:34 +00:00
- name: Add 'dokuwiki' variable values to {{ iiab_ini_file }}
2017-12-08 10:01:09 +00:00
ini_file:
2018-10-31 06:07:34 +00:00
path: "{{ iiab_ini_file }}"
2017-12-08 10:01:09 +00:00
section: dokuwiki
option: "{{ item.option }}"
value: "{{ item.value }}"
2017-05-27 18:09:50 +00:00
with_items:
- option: name
2017-12-08 10:10:19 +00:00
value: DokuWiki
2017-05-27 18:09:50 +00:00
- option: description
value: '"DokuWiki is a simple to use and highly versatile Open Source wiki software that does not require a database."'
2017-05-27 18:09:50 +00:00
- option: installed
value: "{{ dokuwiki_install }}"
- option: enabled
value: "{{ dokuwiki_enabled }}"