ansiblelint fixes - fqcn[action-core] - template to ansible.builtin.template
Replaces references to template: with ansible.builtin.template Signed-off-by: Ryan Lerch <rlerch@redhat.com>
This commit is contained in:
parent
3c41882bb0
commit
47c68f478d
149 changed files with 324 additions and 324 deletions
|
@ -41,7 +41,7 @@
|
|||
check_implicit_admin: true
|
||||
|
||||
- name: Create .my.cnf file for future logins
|
||||
template: src=dotmy.cnf.j2 dest=/root/.my.cnf owner=root group=root mode=0700
|
||||
ansible.builtin.template: src=dotmy.cnf.j2 dest=/root/.my.cnf owner=root group=root mode=0700
|
||||
|
||||
- name: Ensure mariadb has a place to backup to
|
||||
ansible.builtin.file: dest=/backups state=directory owner=mysql
|
||||
|
@ -54,7 +54,7 @@
|
|||
- mariadb-server
|
||||
|
||||
- name: Set up some cronjobs to backup databases as configured
|
||||
template: >
|
||||
ansible.builtin.template: >
|
||||
src=cron-backup-database
|
||||
dest=/etc/cron.d/cron-backup-database-{{ item }}
|
||||
with_items:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue