You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
347 B
15 lines
347 B
---
|
|
- name: Install multiple packages
|
|
hosts: all
|
|
become: true
|
|
|
|
tasks:
|
|
- name: Update apt cache
|
|
ansible.builtin.apt:
|
|
update_cache: yes
|
|
cache_valid_time: 3600 # Cache für eine Stunde gültig
|
|
|
|
- name: Install required packages
|
|
ansible.builtin.apt:
|
|
name: "{{ required_pkgs }}"
|
|
state: present
|