Add work.yml playbook
This commit is contained in:
parent
67d308aac2
commit
619303b663
2 changed files with 21 additions and 0 deletions
3
Makefile
3
Makefile
|
@ -7,3 +7,6 @@ previous_tags=$(shell cat .roles_played | tr '\n' ',')
|
|||
|
||||
previous:
|
||||
ansible-playbook everything.yml --ask-become-pass -t '${previous_tags}'
|
||||
|
||||
work:
|
||||
ansible-playbook work.yml --ask-become-pass
|
||||
|
|
18
work.yml
Normal file
18
work.yml
Normal file
|
@ -0,0 +1,18 @@
|
|||
---
|
||||
- name: Setup work environment
|
||||
hosts: localhost
|
||||
connection: local
|
||||
roles:
|
||||
- base
|
||||
- bash
|
||||
- sudoers
|
||||
- git-summary
|
||||
- etckeeper
|
||||
- pass
|
||||
- ssh-agent
|
||||
- i3
|
||||
- neovim
|
||||
- profanity
|
||||
- neomutt
|
||||
- terminator
|
||||
- tmux
|
Loading…
Reference in a new issue