Add Arch updates and remove dynamic Linode inventories for now

This commit is contained in:
Kevin Thompson
2025-04-27 16:33:21 -05:00
parent 444205cdbb
commit 1f4f3aa1b9
5 changed files with 19 additions and 70 deletions

View File

@@ -0,0 +1,11 @@
---
galaxy_info:
author: Kevin M. Thompson (phlux)
description: Update all packages on Arch systems
license: MIT
min_ansible_version: 2.9
platforms:
- name: Arch
versions:
- all
dependencies: []

View File

@@ -0,0 +1,8 @@
---
- name: Update package database
ansible.builtin.command: pacman -Sy --noconfirm
become: yes
- name: Update all packages
ansible.builtin.command: pacman -Su --noconfirm
become: yes