From 365a79fe87d5a2182e5c4b9f02505cc10ee35633 Mon Sep 17 00:00:00 2001 From: Chris Hammer Date: Fri, 18 Mar 2022 20:32:36 -0400 Subject: [PATCH] add tumbleweed node to test inventory; add community.general to collections/requirements.yml; include motd role --- collections/requirements.yml | 7 +++++++ inventory/hosts | 5 +++-- vars/baseos_vars.yml | 1 + 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/collections/requirements.yml b/collections/requirements.yml index 76937c7..e7e84d7 100644 --- a/collections/requirements.yml +++ b/collections/requirements.yml @@ -4,3 +4,10 @@ collections: source: https://github.com/jchristianh-ansible-collections/baseos.git type: git version: main + + + - name: community.general + source: https://galaxy.ansible.com + + +... diff --git a/inventory/hosts b/inventory/hosts index 23dadf2..29d66f4 100644 --- a/inventory/hosts +++ b/inventory/hosts @@ -1,2 +1,3 @@ -debian-test ansible_host=10.1.1.41 -centos-test ansible_host=10.1.1.27 ansible_user=root +debian-test ansible_host=10.1.1.41 +centos-test ansible_host=10.1.1.27 ansible_user=root +tumbleweed-test ansible_host=10.1.1.86 diff --git a/vars/baseos_vars.yml b/vars/baseos_vars.yml index 1a25caa..60577f4 100644 --- a/vars/baseos_vars.yml +++ b/vars/baseos_vars.yml @@ -4,6 +4,7 @@ baseos_include_roles: - base_packages - resolv_conf - update_all_packages + - motd ...