Skip to content

Commit c710e28

Browse files
committed
Changes after reprovisioning a Ubuntu 17.04 machine.
1 parent 8c0e959 commit c710e28

File tree

7 files changed

+22
-71
lines changed

7 files changed

+22
-71
lines changed

ansible/README.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
## How to run
22

3+
To run the role that configures my terminal environment run
4+
35
```bash
4-
$ ansible-galaxy install -r requirements.yaml
5-
$ ansible-playbook playbooks/dev.yaml
6+
$ ansible-playbook -i localhost playbooks/main.yaml
67
```
8+
9+
There's also playbooks to install other kinds of software on Ubuntu.

ansible/localhost

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[localhost]
2+
localhost ansible_connection=local
3+

ansible/playbooks/main.yml

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
- hosts: all
3+
roles:
4+
- lucas-role
5+

ansible/playbooks/roles/terminal/tasks/main.yaml

-44
This file was deleted.

ansible/playbooks/roles/vscode/meta/main.yaml

-14
This file was deleted.

ansible/requirements.yaml

-11
This file was deleted.

ansible/variables.yml

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
users:
2+
- username: lucas
3+
visual_studio_code_extensions:
4+
- ms-vscode.cpptools
5+
- robertohuertasm.vscode-icons
6+
- lukehoban.Go
7+
- streetsidesoftware.code-spell-checker
8+
- donjayamanne.python
9+
- EditorConfig.EditorConfig

0 commit comments

Comments
 (0)