From fb48b04840f49cb4cfd5111b84c006b2183e26e1 Mon Sep 17 00:00:00 2001 From: Aaron Guise Date: Mon, 14 Mar 2022 22:24:49 +1300 Subject: [PATCH] Allow RHEL 8 installation --- defaults/main.yml | 1 - tasks/common.yml | 5 +++++ tasks/main.yml | 1 + 3 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 tasks/common.yml diff --git a/defaults/main.yml b/defaults/main.yml index 9c1bdd7..8893fe2 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -17,7 +17,6 @@ postfix_configure: false common_packages: - libselinux-python - - MySQL-python - nano - git - htop diff --git a/tasks/common.yml b/tasks/common.yml new file mode 100644 index 0000000..8f43b50 --- /dev/null +++ b/tasks/common.yml @@ -0,0 +1,5 @@ +--- +- include_tasks: networking.yml +- include_tasks: communication.yml +- include_tasks: grub.yml +- include_tasks: motd.yml \ No newline at end of file diff --git a/tasks/main.yml b/tasks/main.yml index 8ee4233..31ef1b3 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -5,4 +5,5 @@ params: files: - '{{ ansible_os_family }}.yml' + - 'common.yml' loop: "{{ q('first_found', params, errors='ignore') }}"