create roles for richard user and home.xai-corp.net

This commit is contained in:
2015-09-19 16:49:12 -04:00
parent 8ddae69caf
commit c639e5dc4b
20 changed files with 251 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
---
# tasks/main.yml
# define tasks here
- name: install composer
shell: curl -sS https://getcomposer.org/installer | php && mv composer.phar /usr/local/bin/composer
- name: install nodejs and npm
apt: pkg={{ item }} state=installed
with_items:
- nodejs
- nodejs-legacy
- npm
- name: install grunt globaly
npm: name="grunt-cli" global=yes