1
0
Fork 0
mirror of https://github.com/roles-ansible/role_akku_warning.git synced 2024-08-16 10:09:50 +02:00
role_akku_warning/tasks/copy_media_files.yml

20 lines
383 B
YAML
Raw Normal View History

2020-02-20 23:30:57 +01:00
---
- name: copy sound warning script
become: yes
template:
src: 'templates/akku.sh'
dest: '/opt/akku.sh'
owner: 'root'
group: 'root'
mode: '0755'
- name: copy sound warning video
become: yes
copy:
src: "{{ akku_sound_src }}"
dest: "{{ akku_sound_dest }}"
owner: 'root'
group: 'root'
mode: '0644'
when: multimedia_akku_warning|bool