mirror of
https://github.com/phfroidmont/self-hosting.git
synced 2025-12-25 21:57:00 +01:00
7 lines
154 B
Bash
7 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
|