Sanitized mirror from private repository - 2026-04-05 09:36:32 UTC
Some checks failed
Documentation / Deploy to GitHub Pages (push) Has been cancelled
Documentation / Build Docusaurus (push) Has been cancelled

This commit is contained in:
Gitea Mirror Bot
2026-04-05 09:36:32 +00:00
commit db6a77a107
1390 changed files with 354786 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
---
- name: Update Debian-based systems
hosts: debian_clients
become: yes
vars:
ansible_become_method: sudo
tasks:
- name: Update package cache
apt:
update_cache: yes
cache_valid_time: 3600
- name: Upgrade all packages
apt:
upgrade: full
autoclean: yes
autoremove: yes
- name: Check for available updates
command: apt list --upgradable
register: apt_updates
changed_when: false
check_mode: no
- name: Show available updates
debug:
var: apt_updates.stdout_lines