This repository has been archived on 2020-06-05. You can view files and clone it, but cannot push or open issues or pull requests.
ansible-murmur/tasks/main.yml

21 lines
552 B
YAML

- name: Copy configuration
loop:
- { src: 'murmur.ini', dest: '{{ murmur.configpath }}/mumble-server.ini', mode: '600', owner: 'root', group: 'root' }
template:
follow: yes
src: '{{ item.src }}.j2'
dest: '{{ item.dest }}'
tags:
- murmur
- vault
notify: Run service actions
- name: Copy systemd service file
template:
follow: yes
src: 'murmur.service.j2'
dest: '/etc/systemd/system/murmur.service'
notify: Run service actions
tags:
- murmur
- systemd