mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-07-23 08:41:11 +02:00
11 lines
287 B
YAML
11 lines
287 B
YAML
- name: apt update all packages to their latest version
|
|
apt:
|
|
update_cache: yes
|
|
upgrade: dist
|
|
force_apt_get: yes
|
|
when: run_once_update_apt
|
|
|
|
- name: run the {{ role_name }} logic just once
|
|
set_fact:
|
|
run_once_update_apt: true
|
|
when: run_once_update_apt is not defined |