install common packages

This commit is contained in:
Michael Rennecke 2020-04-19 20:58:52 +02:00
parent b5a819b43c
commit 6dd4b085b4
3 changed files with 13 additions and 1 deletions

View File

@ -3,4 +3,4 @@
etckeeper_message:
"changes from Ansible play running as {{ ansible_user_id }}"
sshd_password_authentication: 'no'
sshd_password_authentication: 'no'

View File

@ -2,3 +2,5 @@
# Install unattended Upgrades
- import_tasks: updates.yaml
- import_tasks: packages.yaml

View File

@ -0,0 +1,10 @@
---
- name: install packages
apt:
name:
- vim
- htop
- telnet
- python-docker
state: latest