ansible-fr/playbooks/packages.yaml

11 lines
210 B
YAML
Raw Normal View History

2024-05-30 17:04:14 +02:00
---
- name: add basic packages
hosts: server
tasks:
- name: ensure essential packages installed
become: true
apk:
name: bash,vim,htop,neofetch
state: latest