1
0
Fork 0
mirror of https://github.com/mdlayher/homelab.git synced 2024-12-14 11:47:32 +00:00

base: initial commit

This commit is contained in:
Matt Layher 2016-04-16 00:45:31 -04:00
parent 1d94369641
commit d6013e9d41
No known key found for this signature in database
GPG key ID: 77BFE531397EDE94
2 changed files with 21 additions and 0 deletions

4
base.yml Normal file
View file

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

17
roles/base/tasks/main.yml Normal file
View file

@ -0,0 +1,17 @@
---
- name: update package lists
apt: update_cache=yes
- name: install common packages
apt: pkg={{ item }} state=installed
with_items:
- build-essential
- byobu
- git
- htop
- jq
- tmux
tags: install
- name: upgrade all packages
apt: upgrade=dist