diff options
Diffstat (limited to 'awx_collection/tools')
-rw-r--r-- | awx_collection/tools/roles/template_galaxy/tasks/main.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/awx_collection/tools/roles/template_galaxy/tasks/main.yml b/awx_collection/tools/roles/template_galaxy/tasks/main.yml index 1b12854c0d..99f3356a47 100644 --- a/awx_collection/tools/roles/template_galaxy/tasks/main.yml +++ b/awx_collection/tools/roles/template_galaxy/tasks/main.yml @@ -24,15 +24,15 @@ with_fileglob: - "{{ collection_path }}/plugins/inventory/*.py" - "{{ collection_path }}/plugins/lookup/*.py" - - "{{ collection_path }}/plugins/modules/tower_*.py" + - "{{ collection_path }}/plugins/modules/*.py" loop_control: label: "{{ item | basename }}" - name: Change inventory file to support desired namespace and package names replace: path: "{{ collection_path }}/plugins/inventory/controller.py" - regexp: "^ NAME = 'awx.awx.tower' # REPLACE$" - replace: " NAME = '{{ collection_namespace }}.{{ collection_package }}.tower' # REPLACE" + regexp: "^ NAME = 'awx.awx.controller' # REPLACE$" + replace: " NAME = '{{ collection_namespace }}.{{ collection_package }}.controller' # REPLACE" - name: get list of test files find: |