New server setup based on ubuntu
This commit is contained in:
21
roles/server-basic-environment/tasks/main.yml
Normal file
21
roles/server-basic-environment/tasks/main.yml
Normal 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/"
|
||||
Reference in New Issue
Block a user