Update common role

- Add secure-secure-shell task
- Add unattended-upgrades task
- Change package installation tasks
- Remove website tasks from generic services group
This commit is contained in:
Alexander Dietrich 2017-02-05 13:45:33 +01:00
commit 17468493cc
12 changed files with 242 additions and 22 deletions

View file

@ -1,19 +1,11 @@
---
- name: run apt-get update
apt: update_cache=yes
tags:
- common
- name: install common packages
apt: name={{ item }} state=latest
with_items:
- aptitude
- curl
- git
- mosh
- nano
- python
- wget
- zsh
tags:
- common
- include: pre-tasks.yml
tags: common
- include: secure-secure-shell.yml
tags: common
- include: unattended-upgrades.yml
tags: common
- include: user-sanity.yml
tags: common
- include: post-tasks.yml
tags: common