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

38 lines
517 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 18:38:29 +01:00
tags:
- common
- packages
- apt
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
2015-11-14 14:20:43 +01:00
- screen
- tmux
- vim
- wget
- zsh
2015-11-14 18:38:29 +01:00
tags:
- common
- packages
- apt
- name: set message of the day
template: >
src=etc/motd.j2
dest=/etc/motd
mode=0444
owner=root
group=root
tags:
- common
- motd