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

https://github.com/knuckles-team/server-automation

Ansible Automation to be Executed on Inventory
https://github.com/knuckles-team/server-automation

ansible ansible-playbook

Last synced: 5 months ago
JSON representation

Ansible Automation to be Executed on Inventory

Awesome Lists containing this project

README

          

Add ansible user to Ubuntu and add to sudoers

```bash
sudo adduser ansible
sudo usermod -aG sudo ansible
sudo visudo /etc/sudoers
ansible ALL=(ALL) NOPASSWD:ALL
```

```bash
export ANSIBLE_HOST_KEY_CHECKING=True
ansible-playbook -i ./inventory.yml manage_homelab.yml
```