mirror of
				https://github.com/iiab/iiab.git
				synced 2025-03-09 15:40:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
	
		
			605 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
	
		
			605 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
- name: Install DokuWiki
 | 
						|
  include_tasks: install.yml
 | 
						|
  when: dokuwiki_install
 | 
						|
 | 
						|
- name: Add 'dokuwiki' to list of services at /etc/iiab/iiab.ini
 | 
						|
  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 }}"
 |