ansible-config/roles/common/tasks/main.yml

20 lines
274 B
YAML
Raw Normal View History

2015-08-29 23:37:16 +02:00
---
2015-09-25 22:28:09 +02:00
- name: run apt-get update
apt: update_cache=yes
2015-11-14 17:24:12 +01:00
tags:
- common
2015-09-25 22:28:09 +02:00
- name: install common packages
apt: name={{ item }} state=latest
with_items:
- aptitude
- curl
- git
- mosh
- nano
- python
- wget
- zsh
2015-11-14 17:24:12 +01:00
tags:
- common