Fix lint warnings, Translate tasks names
This commit is contained in:
parent
33045b05d1
commit
39b9ffa525
1 changed files with 6 additions and 6 deletions
|
@ -1,12 +1,12 @@
|
||||||
---
|
---
|
||||||
- name: "backup | automysqlbackup - Definiere Postbackup-Skript"
|
- name: "Backup | Set automysqlbackup postbackup script"
|
||||||
lineinfile:
|
ansible.builtin.lineinfile:
|
||||||
path: /etc/default/automysqlbackup
|
path: /etc/default/automysqlbackup
|
||||||
regexp: '^#POSTBACKUP='
|
regexp: '^#POSTBACKUP='
|
||||||
line: POSTBACKUP="{{ local_scripts_dir }}/automysqlbackup_post_script"
|
line: POSTBACKUP="{{ local_scripts_dir }}/automysqlbackup_post_script"
|
||||||
|
|
||||||
- name: "backup | automysqlbackup - Definiere Backupdir"
|
- name: "Backup | Dest automysqlbackup backupdir"
|
||||||
lineinfile:
|
ansible.builtin.lineinfile:
|
||||||
path: /etc/default/automysqlbackup
|
path: /etc/default/automysqlbackup
|
||||||
regexp: '^BACKUPDIR='
|
regexp: '^BACKUPDIR='
|
||||||
line: 'BACKUPDIR="{{ automysqlbackup_backupdir|default("/var/lib/automysqlbackup") }}"'
|
line: 'BACKUPDIR="{{ automysqlbackup_backupdir|default("/var/lib/automysqlbackup") }}"'
|
||||||
|
@ -17,8 +17,8 @@
|
||||||
state: touch
|
state: touch
|
||||||
changed_when: false
|
changed_when: false
|
||||||
|
|
||||||
- name: "backup | Kopiere automysqlbackup-Postscript"
|
- name: "Backup | Copy automysqlbackup postbackup script"
|
||||||
copy:
|
ansible.builtin.copy:
|
||||||
src: automysqlbackup_post_script
|
src: automysqlbackup_post_script
|
||||||
dest: "{{ local_scripts_dir }}/"
|
dest: "{{ local_scripts_dir }}/"
|
||||||
mode: 0755
|
mode: 0755
|
||||||
|
|
Loading…
Reference in a new issue