blob: bf1c116db7b0e0063f3c8f496fb29accd5625ca1 [file] [log] [blame]
Zack Williams8625d042016-02-26 14:32:43 -07001---
2# file: roles/common-prep/tasks/main.yml
3
4- name: Upgrade system to current using apt
Zack Williams6c3b8732016-03-15 09:57:07 -07005 apt:
6 upgrade=dist
7 update_cache=yes
8 cache_valid_time=3600
Zack Williamsa9421e22016-03-02 13:53:37 -07009 notify:
Zack Williams6c3b8732016-03-15 09:57:07 -070010 - restart host
11 - wait for host
Zack Williams8625d042016-02-26 14:32:43 -070012
13- name: Install standard packages
14 apt: pkg={{ item }} state=present
15 with_items:
16 - tmux
17 - vim
18
19- name: Enable vim syntax highlighting
20 lineinfile: dest=/etc/vim/vimrc
21 regexp="^\s*syntax on"
22 line="syntax on"
Zack Williamsa9421e22016-03-02 13:53:37 -070023