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

correct some layout

This commit is contained in:
Lilian Roller 2019-04-24 13:07:10 +02:00
parent 4e199c6865
commit 47c3ccf142
No known key found for this signature in database
GPG key ID: 5215C3441797AB2B
2 changed files with 3 additions and 3 deletions

View file

@ -1,4 +1,6 @@
--- ---
# which user are we currently using?
akku_user: "{{ ansible_user_id }}"
# should we install cronie? # should we install cronie?
install_and_enable_cronie: false install_and_enable_cronie: false

View file

@ -1,5 +1,4 @@
--- ---
- name: copy sound warning script - name: copy sound warning script
become: yes become: yes
copy: copy:
@ -33,7 +32,7 @@
name: check if akku still okay name: check if akku still okay
job: /opt/akku.sh job: /opt/akku.sh
minute: '*/3' minute: '*/3'
user: '{{ user }}' user: '{{ akku_user }}'
cron_file: /etc/crontab cron_file: /etc/crontab
- name: Make sure cron is installed - name: Make sure cron is installed
@ -52,4 +51,3 @@
state: started state: started
enabled: yes enabled: yes
daemon_reload: yes daemon_reload: yes