mirror of
https://github.com/phfroidmont/self-hosting.git
synced 2025-12-25 05:36:59 +01:00
6 lines
154 B
Bash
6 lines
154 B
Bash
#!/bin/bash
|
|
apt-get update
|
|
apt-get install software-properties-common
|
|
apt-add-repository ppa:ansible/ansible -y
|
|
apt-get update
|
|
apt-get install ansible -y
|