Skip to content

Commit 43ce8f1

Browse files
committed
[krb_request] Do not use FQCN for krb_request module (exception)
krb_request module is used in some DS zuul ci playbooks, and zuul runs restricted version of Ansible, thus FQCN call of module is not getting resolved. Making custom module with FQCN work there would require to make symlink of the entire cifmw collection there, which does not make sense. Better to have an exception for such usage. Signed-off-by: Amartya Sinha <[email protected]>
1 parent a80e1be commit 43ce8f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

roles/krb_request/tasks/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# under the License.
1616

1717
- name: Perform the request
18-
cifmw.general.krb_request:
18+
krb_request:
1919
url: "{{ cifmw_krb_request_url }}"
2020
dest: "{{ cifmw_krb_request_dest | default(omit) }}"
2121
mode: "{{ cifmw_krb_request_dest_mode | default(omit) }}"

0 commit comments

Comments
 (0)