3proxy/tasks/main.yml

24 lines
427 B
YAML

---
- name: 3proxy | Install from aur
aur:
name: 3proxy
use: makepkg
skip_installed: yes
become: no
- name: 3proxy | Deploy configuration file
template:
src: 3proxy.cfg.j2
dest: /etc/3proxy/3proxy.cfg
mode: 0600
owner: threeproxy
group: threeproxy
notify: 3proxy | Reload configuration
- name: 3proxy | Enable and start
systemd:
name: 3proxy
enabled: yes
state: started