From 279f8aae9d4e14380181f7554c2670acf900be99 Mon Sep 17 00:00:00 2001 From: Jacob Cody Wimer Date: Tue, 12 Sep 2017 08:19:07 -0400 Subject: [PATCH] Added a few new tools for development --- roles/developer-machine/tasks/main.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/roles/developer-machine/tasks/main.yml b/roles/developer-machine/tasks/main.yml index 83bc1a6..9b04d15 100644 --- a/roles/developer-machine/tasks/main.yml +++ b/roles/developer-machine/tasks/main.yml @@ -26,6 +26,14 @@ shell: wget -O- https://toolbelt.heroku.com/install-ubuntu.sh | sh when: heroku_installed.stdout == "" +- name: Add docker repo + apt_repository: + repo: 'ppa:tmate.io/archive' + state: present + +- name: Update apt + apt: update_cache=yes + - name: Install other apt items apt: name={{ item }} state=present with_items: @@ -34,6 +42,13 @@ - tmux - apache2-utils - xrdp + - ack-grep + - tmate + - nodejs + - npm + +- name: Install localtunnel + shell: npm install -g localtunnel - name: Pathogen installed stat: path=/home/cody/.vim/autoload/pathogen.vim