forked from ansible-collections/ibm_zos_core
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add out-of-box awx support (ansible-collections#80)
- Loading branch information
1 parent
0f6d1e2
commit c8bda60
Showing
2 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
################################################################################ | ||
# Copyright (c) IBM Corporation 2020 | ||
################################################################################ | ||
|
||
################################################################################ | ||
# For for on ansible.cfg options see: | ||
# https://docs.ansible.com/ansible/latest/reference_appendices/config.html | ||
# | ||
# For a full sample see: | ||
# https://github.com/ansible/ansible/blob/devel/examples/ansible.cfg | ||
# | ||
# Note: | ||
# Some of the common options configured are `remote_temp` and `ansible_port`. | ||
# remote_temp - The temporary directory Ansible uses to transfer files onto | ||
# the controller. Default is `/.ansible/tmp` | ||
# ansible_port - The connection port number Ansible uses to connect to the | ||
# target; configure the target if is not using default SSH | ||
# port 22 | ||
################################################################################ | ||
|
||
[defaults] | ||
forks = 25 | ||
# remote_tmp = /u/ansible/tmp | ||
# remote_port = 2022 | ||
|
||
[ssh_connection] | ||
pipelining = True |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
################################################################################ | ||
# Copyright (c) IBM Corporation 2020 | ||
################################################################################ | ||
# This file is required when using repository directly in AWX/Tower | ||
# for more info: https://docs.ansible.com/ansible/latest/user_guide/collections_using.html#install-multiple-collections-with-a-requirements-file | ||
# https://docs.ansible.com/ansible-tower/latest/html/userguide/projects.html#collections-support | ||
--- | ||
collections: | ||
- ibm.ibm_zos_core |