Files
computer-playbook/roles/update-apt
Kevin Veen-Birkenbach fff7d261a2 Refactor run-once logic across multiple roles and integrate unified utils/run_once.yml
This commit standardizes all run-once implementations across the following roles:
- desk-git
- dev-fakeroot
- dev-git
- dev-python-yaml
- sys-lock
- sys-svc-certs (wildcard flavor)
- update-apt
- update-pacman
- update-compose
- user-root (moved logic to 01_core.yml + unified run-once handling)
- web-app-matomo
- web-svc-libretranslate

All roles now:
- Use a block guarded by 'run_once_<role>' facts
- Trigger run-once state through utils/run_once.yml
- Optionally disable handler flushing via 'flush_handlers: false'
- Achieve consistent per-host one-time execution semantics

Conversation reference: https://chatgpt.com/share/692c7fbb-ff68-800f-8cb4-4b132cffc8e4
2025-11-30 18:51:40 +01:00
..

Update apt

Description

This role updates packages on Debian-based systems. It refreshes the apt cache and performs a distribution upgrade to ensure all packages are at their latest version.

Overview

Designed for Debian and Ubuntu systems, this role:

  • Updates the package cache using apt.
  • Upgrades all packages to their latest available versions.
  • Notes that full upgrades must be performed manually on nonrolling release systems.

Purpose

The role is intended to keep Debian-based systems up-to-date by automating the package update process, ensuring that security patches and software improvements are applied promptly.

Features

  • Apt Cache Refresh: Updates the package index.
  • Distribution Upgrade: Performs a dist-upgrade to update all installed packages.
  • Debian-Specific: Tailored for Debian-based distributions.