Enable OS Upgrading

This commit is contained in:
Jason Rothstein 2021-03-28 00:00:21 -05:00
parent c407a7a91b
commit c42832835c
3 changed files with 6 additions and 1 deletions

View File

@ -2,7 +2,7 @@
host_key_checking = False host_key_checking = False
gathering = smart gathering = smart
fact_caching = jsonfile fact_caching = jsonfile
fact_caching_timeout = 3600 fact_caching_timeout = 300
fact_caching_connection = ./facts/ fact_caching_connection = ./facts/
inventory = ./inventory/ inventory = ./inventory/
forks = 5 forks = 5
@ -10,4 +10,5 @@ retry_files_enabled = False
interpreter_python = auto interpreter_python = auto
[ssh_connection] [ssh_connection]
# pipelining = true
# ssh_args = -o ControlMaster=auto # ssh_args = -o ControlMaster=auto

View File

@ -15,6 +15,9 @@ roles:
- name: 'ensure_os_patch' - name: 'ensure_os_patch'
src: 'git+https://git.fdragon.com/AnsibleRoles/ensure_os_patch.git' src: 'git+https://git.fdragon.com/AnsibleRoles/ensure_os_patch.git'
version: 'master' version: 'master'
- name: 'ensure_os_upgrade'
src: 'git+https://git.fdragon.com/AnsibleRoles/ensure_os_upgrade.git'
version: 'master'
- name: 'ensure_podman' - name: 'ensure_podman'
src: 'git+https://git.fdragon.com/AnsibleRoles/ensure_podman.git' src: 'git+https://git.fdragon.com/AnsibleRoles/ensure_podman.git'
version: 'master' version: 'master'

View File

@ -5,6 +5,7 @@
roles: roles:
- role: 'ensure_ansible_prereq' - role: 'ensure_ansible_prereq'
- role: 'ensure_os_patch' - role: 'ensure_os_patch'
- role: 'ensure_os_upgrade'
- role: 'ensure_cockpit' - role: 'ensure_cockpit'
- role: 'ensure_log_rotation' - role: 'ensure_log_rotation'
- role: 'ensure_repo_epel' - role: 'ensure_repo_epel'