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:
parent
1d94369641
commit
d6013e9d41
2 changed files with 21 additions and 0 deletions
4
base.yml
Normal file
4
base.yml
Normal file
|
@ -0,0 +1,4 @@
|
|||
---
|
||||
- hosts: all
|
||||
roles:
|
||||
- base
|
17
roles/base/tasks/main.yml
Normal file
17
roles/base/tasks/main.yml
Normal 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
|
Loading…
Reference in a new issue