34 lines
		
	
	
		
			498 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			498 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
---
 | 
						|
 | 
						|
- name: KiwiIRC Packages
 | 
						|
become: yes
 | 
						|
package:
 | 
						|
name:
 | 
						|
- kiwiirc-server-bin
 | 
						|
state: present
 | 
						|
 | 
						|
# Need to capture AniNIX skinning of client as well as client build process.
 | 
						|
 | 
						|
- name: Update permissions
 | 
						|
become: yes
 | 
						|
file:
 | 
						|
path: "{{ item }}"
 | 
						|
recurse: yes
 | 
						|
owner: ircd
 | 
						|
group: http
 | 
						|
loop:
 | 
						|
- /etc/kiwiirc
 | 
						|
- /usr/share/kiwiirc
 | 
						|
 | 
						|
- name: Populate config
 | 
						|
become: yes
 | 
						|
#register: config
 | 
						|
template:
 | 
						|
src: "kiwiirc/{{ item }}.j2"
 | 
						|
dest: "/etc/kiwiirc/{{ item }}"
 | 
						|
owner: ircd
 | 
						|
group: http
 | 
						|
mode: 0640
 | 
						|
loop:
 | 
						|
- "client.json"
 |