added common role

This commit is contained in:
Frederik Wille 2015-08-29 23:37:16 +02:00
parent 979948afe9
commit 7f9fb0004b
11 changed files with 45 additions and 0 deletions

4
common.yml Normal file
View file

@ -0,0 +1,4 @@
---
- hosts: all
roles:
- common

View file

@ -0,0 +1,4 @@
---
- name: install aptitude
apt: name=aptitutde state=latest
tags: aptitude

View file

@ -0,0 +1,4 @@
---
- name: install curl
apt: name=curl state=latest
tags: curl

View file

@ -0,0 +1,4 @@
---
- name: install git
apt: name=git state=latest
tags: git

View file

@ -0,0 +1,8 @@
---
- include: wget.yml
- include: curl.yml
- include: zsh.yml
- include: git.yml
- include: nano.yml
- include: python.yml
- include: mosh.yml

View file

@ -0,0 +1,4 @@
---
- name: install mosh
apt: name=mosh state=latest
tags: mosh

View file

@ -0,0 +1,4 @@
---
- name: install nano
apt: name=nano state=latest
tags: nano

View file

@ -0,0 +1,4 @@
---
- name: install python
apt: name=python state=latest
tags: python

View file

@ -0,0 +1,4 @@
---
- name: install wget
apt: name=wget state=latest
tags: wget

View file

@ -0,0 +1,4 @@
---
- name: install zsh
apt: name=zsh state=latest
tags: zsh

View file

@ -1,2 +1,3 @@
--- ---
- include: common.yml
- include: services.yml - include: services.yml