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

https://github.com/austinwilcox/ansible

Ansible Playbooks to automate the setup of my development machine.
https://github.com/austinwilcox/ansible

ansible apt automation brew chocolatey linux

Last synced: about 1 year ago
JSON representation

Ansible Playbooks to automate the setup of my development machine.

Awesome Lists containing this project

README

          




Austins Ansible Playbooks


Ansible playbooks to automate setup of Ubuntu based machines


Table of Contents



  1. About The Project



  2. Getting Started


  3. License

  4. Contact

  5. Acknowledgments

## About The Project

This is a simple ansible setup that allows me to grab a new ubuntu machine, and automate my setup so that I can spend more time writing software than trying to rememember which software packages that I need to effectively work.

(back to top)

### Built With [Ansible](https://docs.ansible.com/)

## Getting Started

Run `install-ansible.sh` which will install all the necessary software to run the playbooks.

### Prerequisites

Here are the contents of the `install-ansible.sh` script

```sh
sudo apt install software-properties-common -y
sudo apt-add-repository --yes --update ppa:ansible/ansible
sudo apt install ansible -y
```

### Running

`ansible-playbook local.yml --ask-become-pass --ask-vault-pass`

(back to top)

## License

Distributed under the GPL-3.0 license. See [LICENSE](./LICENSE) for more information.

(back to top)