diff --git a/ansible.cfg b/ansible.cfg index 74459e1..1c68e8b 100644 --- a/ansible.cfg +++ b/ansible.cfg @@ -2,7 +2,7 @@ host_key_checking = False gathering = smart fact_caching = jsonfile -fact_caching_timeout = 3600 +fact_caching_timeout = 300 fact_caching_connection = ./facts/ inventory = ./inventory/ forks = 5 @@ -10,4 +10,5 @@ retry_files_enabled = False interpreter_python = auto [ssh_connection] +# pipelining = true # ssh_args = -o ControlMaster=auto diff --git a/roles/requirements.yml b/roles/requirements.yml index 94dd7c5..b14ec03 100644 --- a/roles/requirements.yml +++ b/roles/requirements.yml @@ -15,6 +15,9 @@ roles: - name: 'ensure_os_patch' src: 'git+https://git.fdragon.com/AnsibleRoles/ensure_os_patch.git' version: 'master' + - name: 'ensure_os_upgrade' + src: 'git+https://git.fdragon.com/AnsibleRoles/ensure_os_upgrade.git' + version: 'master' - name: 'ensure_podman' src: 'git+https://git.fdragon.com/AnsibleRoles/ensure_podman.git' version: 'master' diff --git a/test.yml b/test.yml index 95bf0e2..56d4632 100644 --- a/test.yml +++ b/test.yml @@ -5,6 +5,7 @@ roles: - role: 'ensure_ansible_prereq' - role: 'ensure_os_patch' + - role: 'ensure_os_upgrade' - role: 'ensure_cockpit' - role: 'ensure_log_rotation' - role: 'ensure_repo_epel'