Skip to content

Latest commit

 

History

History
32 lines (22 loc) · 667 Bytes

README.md

File metadata and controls

32 lines (22 loc) · 667 Bytes

Workstation

Ansible repository for configuring my workstations. Currently, it only supports Ubuntu.

Getting started

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

Notes

After the first install everything should be updated automatically after every change in this repository.