fix more roles...

This commit is contained in:
Neil Hanlon 2022-01-22 19:42:39 -05:00
parent 20acc5b9a0
commit fd8d523757
Signed by: neil
GPG Key ID: 705BC21EC3C70F34

View File

@ -36,7 +36,10 @@
- name: Fix roles
become: true
ansible.builtin.shell:
cmd: grep -ril 'openstack.config_template.' /etc/ansible/roles/ | xargs sed -i.bak 's,openstack.config_template.,,g'
cmd: "{{ item }}"
with_items:
- grep -ril 'openstack.config_template.' /etc/ansible/roles/ | xargs sed -i.bak 's,openstack.config_template.,,g'
- grep -ril 'openstack.osa.provider_networks' /etc/ansible/roles/ | xargs sed -i.bak 's,openstack.osa.provider_networks,provider_networks,g'
tags:
- temporary
- ansible