22 lines
498 B
YAML
22 lines
498 B
YAML
|
---
|
||
|
|
||
|
- 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/"
|