From 22d62c33c480478e14d4d37f9b68af00c550f142 Mon Sep 17 00:00:00 2001 From: Kevin Thompson Date: Sun, 27 Apr 2025 16:36:03 -0500 Subject: [PATCH] Complete removing of dynamic linode inventories and add playbook for arch updates --- playbooks/infrastructure/arch_update.yml | 6 ++++++ playbooks/inventory/linode_inventory.yml | 16 ---------------- 2 files changed, 6 insertions(+), 16 deletions(-) create mode 100644 playbooks/infrastructure/arch_update.yml delete mode 100644 playbooks/inventory/linode_inventory.yml diff --git a/playbooks/infrastructure/arch_update.yml b/playbooks/infrastructure/arch_update.yml new file mode 100644 index 0000000..d9fefbc --- /dev/null +++ b/playbooks/infrastructure/arch_update.yml @@ -0,0 +1,6 @@ +--- +- name: Update Arch packages + hosts: all + become: yes + roles: + - roles/infrastructure/arch_update diff --git a/playbooks/inventory/linode_inventory.yml b/playbooks/inventory/linode_inventory.yml deleted file mode 100644 index ec1fb55..0000000 --- a/playbooks/inventory/linode_inventory.yml +++ /dev/null @@ -1,16 +0,0 @@ ---- -- name: Build Inventory from Linode - hosts: localhost - gather_facts: false - - roles: - - populate_inventory - -- name: Test connection to Linode VMs - hosts: all - gather_facts: false - - tasks: - - name: Ping each Linode - ansible.builtin.ping -