Sanitized mirror from private repository - 2026-04-19 08:15:48 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-19 08:15:48 +00:00
commit 57b1fe47f2
1437 changed files with 363051 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