New server setup based on ubuntu

This commit is contained in:
Martin Bauer
2023-09-19 10:55:47 +02:00
parent 578be1a1cf
commit 7776095180
30 changed files with 240 additions and 186 deletions

View File

@@ -0,0 +1,21 @@
---
- name: Do apt update/upgrade
apt: upgrade=yes update_cache=yes cache_valid_time=300
- name: Apt install download & unzip packages
apt:
name:
- wget
- zip
- htop
- xz-utils
- python3
- python3-venv
- python3-wheel
- git
- iotop
- name: Download and install mbenv
ansible.builtin.unarchive:
src: "https://owncloud.bauer.tech/s/vMu7X4mRl2vComu/download?path=%2F&files=mbenv.tar.xz"
remote_src: yes
dest: "/home/core/"