2025-02-22 20:45:29 +00:00

28 lines
539 B
YAML

- name: Initialise worker VM
hosts: localhost
become: yes
vars_files:
- local_vars.yaml
- ../common_vars.yaml
tasks:
- name: Install essentials
apt:
pkg:
- apt-transport-https
- ca-certificates
- curl
- software-properties-common
- python3-pip
- virtualenv
- python3-setuptools
- vim
- git
- btop
- whois
- cifs-utils
- tree
- exa
state: latest
update_cache: true
ignore_errors: yes