renaming stuff to note that it's not used anymore

This commit is contained in:
2025-05-12 00:17:30 -07:00
parent 47b69d7f49
commit 5227bea568
9 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
# Purpose: General update to the system to keep packages up to date
---
- hosts: webhost
remote_user: webadmin
tasks:
- name: Informational Dump of what is upgradeable
ansible.builtin.command: apt list --upgradable
register: pkg
- name: Show list of packages to upgrade
ansible.builtin.debug:
msg: "{{ pkg.stdout_lines }}"
- name: Update the packages at the system level to the latest versions
become: true
ansible.builtin.apt:
name: "*"
state: latest