summaryrefslogtreecommitdiffstats
path: root/awx_collection/tools
diff options
context:
space:
mode:
authorSeth Foster <fosterbseth@gmail.com>2021-04-30 21:41:01 +0200
committerSeth Foster <fosterbseth@gmail.com>2021-06-08 20:33:23 +0200
commitef56571772e462b206e8f592627b3dbe7430fe14 (patch)
tree538dd81cef17ad6551e95fbbd0e8660f824c7a0e /awx_collection/tools
parentfix unit tests (diff)
downloadawx-ef56571772e462b206e8f592627b3dbe7430fe14.tar.xz
awx-ef56571772e462b206e8f592627b3dbe7430fe14.zip
controller_meta, templating
Diffstat (limited to 'awx_collection/tools')
-rw-r--r--awx_collection/tools/roles/template_galaxy/tasks/main.yml6
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: