From 0261e875679f1bf63c8d689da7fc7e014597885d Mon Sep 17 00:00:00 2001 From: Stonewall Jackson Date: Sat, 4 Feb 2023 01:23:43 -0500 Subject: initial commit --- playbooks/yum.yml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 playbooks/yum.yml (limited to 'playbooks/yum.yml') diff --git a/playbooks/yum.yml b/playbooks/yum.yml new file mode 100644 index 0000000..e0c829f --- /dev/null +++ b/playbooks/yum.yml @@ -0,0 +1,33 @@ +- import_playbook: common.yml + vars: + hostlist: yum_mirrors + +- name: configure yum mirrors + hosts: yum_mirrors + tags: yum + roles: + - role: yum_mirror + + - role: apache_vhost + apache_default_vhost: yes + apache_document_root: '{{ yum_mirror_webroot }}' + apache_autoindex: yes + apache_redirect_to_https: no + tags: apache + +- name: configure mirror for local packages + hosts: yum_mirrors + tags: yum + roles: + - role: yum_disable_default_repos + + - role: yum + yum_repositories: + - rocky-baseos + - rocky-appstream + - rocky-extras + - epel + + # nagios_client has to run *after* EPEL repository has been configured. + - role: nagios_client + tags: nagios -- cgit