1
0
mirror of https://github.com/openshift/openshift-ansible.git synced 2026-02-05 06:46:04 +01:00

Fix compatibility with ansible-core 2.13

This commit is contained in:
Yaakov Selkowitz
2022-09-29 23:15:14 -04:00
parent 807bdb6f7c
commit 6f69dc8692
7 changed files with 7 additions and 7 deletions

View File

@@ -21,7 +21,7 @@ gathering = smart
fact_caching = jsonfile
fact_caching_connection = $HOME/ansible/facts
fact_caching_timeout = 600
callback_whitelist = profile_tasks
callback_enabled = profile_tasks
inventory_ignore_extensions = secrets.py, .pyc, .cfg, .crt, .ini
# work around privilege escalation timeouts in ansible:
timeout = 30

View File

@@ -23,7 +23,7 @@ gathering = smart
fact_caching = jsonfile
fact_caching_connection = $HOME/ansible/facts
fact_caching_timeout = 600
callback_whitelist = profile_tasks
callback_enabled = profile_tasks
inventory_ignore_extensions = secrets.py, .pyc, .cfg, .crt
# work around privilege escalation timeouts in ansible:
timeout = 30

View File

@@ -21,7 +21,7 @@ gathering = smart
fact_caching = jsonfile
fact_caching_connection = $HOME/ansible/facts
fact_caching_timeout = 600
callback_whitelist = profile_tasks
callback_enabled = profile_tasks
inventory_ignore_extensions = secrets.py, .pyc, .cfg, .crt, .ini
# work around privilege escalation timeouts in ansible:
timeout = 30

View File

@@ -23,7 +23,7 @@ gathering = smart
fact_caching = jsonfile
fact_caching_connection = $HOME/ansible/facts
fact_caching_timeout = 600
callback_whitelist = profile_tasks
callback_enabled = profile_tasks
inventory_ignore_extensions = secrets.py, .pyc, .cfg, .crt
# work around privilege escalation timeouts in ansible:
timeout = 30

View File

@@ -21,7 +21,7 @@ def display(*args, **kwargs):
# Set to minimum required Ansible version
REQUIRED_VERSION = '2.9.5'
REQUIRED_VERSION = '2.12.2'
DESCRIPTION = "Supported versions: %s or newer" % REQUIRED_VERSION

View File

@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/python
"""oc_csr_approve module"""
# Copyright 2020 Red Hat, Inc. and/or its affiliates
# and other contributors as indicated by the @author tags.

View File

@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/python
# pylint: disable=missing-docstring
#
# Copyright 2017 Red Hat, Inc. and/or its affiliates