20 lines
274 B
YAML
20 lines
274 B
YAML
---
|
|
- 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
|