1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-02-13 11:42:08 +00:00
iiab/roles/dokuwiki/tasks/main.yml
2017-05-27 11:09:50 -07:00

18 lines
600 B
YAML

- name: Include the install playbook
include: install.yml
when: dokuwiki_install
- name: Add dokuwiki to service list
ini_file: dest='{{ service_filelist }}'
section=dokuwiki
option='{{ item.option }}'
value='{{ item.value }}'
with_items:
- option: name
value: dokuwiki
- option: description
value: '"DokuWiki is a simple to use and highly versatile Open Source wiki software that does not require a database. "'
- option: installed
value: "{{ dokuwiki_install }}"
- option: enabled
value: "{{ dokuwiki_enabled }}"