blob: a7ffc3bf9a4f74a159854d9c33e571d49c6ba809 [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
5 apt: update_cache=yes upgrade=dist
Zack Williamsa9421e22016-03-02 13:53:37 -07006 notify:
7 - restart machine
8 - wait for machine
Zack Williams8625d042016-02-26 14:32:43 -07009
10- name: Install standard packages
11 apt: pkg={{ item }} state=present
12 with_items:
13 - tmux
14 - vim
15
16- name: Enable vim syntax highlighting
17 lineinfile: dest=/etc/vim/vimrc
18 regexp="^\s*syntax on"
19 line="syntax on"
Zack Williamsa9421e22016-03-02 13:53:37 -070020