blob: 0e5474d0376772f71388a43287cda25f4c5bfa74 [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
6
7- name: Install standard packages
8 apt: pkg={{ item }} state=present
9 with_items:
10 - tmux
11 - vim
12
13- name: Enable vim syntax highlighting
14 lineinfile: dest=/etc/vim/vimrc
15 regexp="^\s*syntax on"
16 line="syntax on"