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
Raw Normal View History

2020-05-21 18:05:46 +00:00
- name: Copy configuration
2020-05-24 12:41:39 +00:00
loop:
- { src: 'murmur.ini', dest: '{{ murmur.configpath }}/mumble-server.ini', mode: '600', owner: 'root', group: 'root' }
2020-05-21 18:05:46 +00:00
template:
follow: yes
2020-05-24 12:41:39 +00:00
src: '{{ item.src }}.j2'
dest: '{{ item.dest }}'
2020-05-21 18:05:46 +00:00
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