An open API service indexing awesome lists of open source software.

https://github.com/tty47/provision-linux

Ansible repository will provision a Linux machine with all the tools needed.
https://github.com/tty47/provision-linux

ansible automation linux provision setup

Last synced: 3 months ago
JSON representation

Ansible repository will provision a Linux machine with all the tools needed.

Awesome Lists containing this project

README

        

# Provision Linux - Ubuntu with Ansible

## Description
In order to provision your linux, execute the following command:

Like `dotenv` but with ansible.

```Makefile
make all
```

---

## Execute only the playbook
```ansible-playbook
sudo ansible-playbook main.yml --extra-vars "username=$USER"
```

---

## Installation
```bash
sudo apt update; sudo apt install -y make git ansible curl sudo && \
bash <(curl -s https://raw.githubusercontent.com/tty47/provision-linux/master/start.sh)
```

---