1
0
Fork 0
mirror of https://github.com/DO1JLR/ansible_linux_desktop_setup.git synced 2024-09-14 19:54:51 +02:00
ansible_linux_desktop_setup/roles/akku-warning/tasks/main.yml

27 lines
434 B
YAML
Raw Normal View History

2019-03-11 20:22:44 +01:00
---
- name: copy sound warning script
become: yes
copy:
src: 'files/akku.sh'
dest: '/opt/akku.sh'
owner: 'root'
group: 'root'
mode: '0755'
- name: install zenity
become: yes
package:
name: zenity
state: present
- name: Check akku every 2 minutes
become: yes
cron:
name: check if akku still okay
job: /opt/akku.sh
minute: '*/2'
2019-03-11 22:16:15 +01:00
user: '{{ user }}'
2019-03-11 20:22:44 +01:00
cron_file: /etc/crontab