mirror of
https://gitlab.sectorq.eu/jaydee/ansible.git
synced 2025-07-03 00:03:05 +02:00
init
This commit is contained in:
33
playbooks/05_install_docker.yml
Normal file
33
playbooks/05_install_docker.yml
Normal file
@ -0,0 +1,33 @@
|
||||
- hosts: odroid_cluster
|
||||
name: Install docker
|
||||
become: true
|
||||
become_user: root
|
||||
tasks:
|
||||
- name: Install docker
|
||||
ansible.builtin.apt:
|
||||
name: docker.io
|
||||
state: present
|
||||
- name: Install telnet
|
||||
ansible.builtin.apt:
|
||||
name: telnet
|
||||
state: present
|
||||
- name: Install net-tools
|
||||
ansible.builtin.apt:
|
||||
name: net-tools
|
||||
state: present
|
||||
- name: Install curl!
|
||||
ansible.builtin.apt:
|
||||
name: curl
|
||||
state: present
|
||||
- name: Install deps...
|
||||
ansible.builtin.apt:
|
||||
name:
|
||||
- python3-pip
|
||||
- python3-dev
|
||||
- name: Install bottle python package
|
||||
ansible.builtin.pip:
|
||||
name:
|
||||
- RPLCD
|
||||
- psutil
|
||||
- smbus2
|
||||
- uptime
|
Reference in New Issue
Block a user