mirror of
https://github.com/zebrajr/HomeLab.git
synced 2025-12-06 00:20:22 +01:00
22 lines
324 B
YAML
22 lines
324 B
YAML
---
|
|
- hosts: localhost
|
|
connection: local
|
|
become: true
|
|
|
|
tasks:
|
|
- name: install packages
|
|
package:
|
|
name:
|
|
- htop
|
|
- keepass2
|
|
- notepadqq
|
|
- remmina
|
|
|
|
- name: cleanup package cache
|
|
apt:
|
|
autoclean: yes
|
|
|
|
- name: autoremove orphan packages
|
|
apt:
|
|
autoremove: yes
|