mirror of
https://github.com/DO1JLR/ansible_linux_desktop_setup.git
synced 2024-09-14 19:54:51 +02:00
26 lines
434 B
YAML
26 lines
434 B
YAML
---
|
|
|
|
- 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'
|
|
user: '{{ user }}'
|
|
cron_file: /etc/crontab
|
|
|