Ansible repository for configuring my workstations. Currently, it only supports
Ubuntu
.
Install ansible on Ubuntu.
sudo apt install software-properties-common
sudo apt-add-repository ppa:ansible/ansible
sudo apt update
sudo apt install git ansible
Run ansible for the first time.
sudo ansible-pull -e user=<user> -U https://github.com/gvicentin/workstation.git
If you have the repository cloned, you can also do the following:
sudo ansible-playbook -e user=gvicentin local.yml
After the first install everything should be updated automatically after every change in this repository.