Commit 35118058 by John Jarvis

add ruby

parent 61689ab6
......@@ -21,7 +21,7 @@
#
#
- name: create data and app directories
- name: create data directories
file: >
path={{ item }}
state=directory
......@@ -30,9 +30,18 @@
mode=0700
with_items:
- "{{ aws_data_dir }}"
- "{{ aws_app_dir }}"
- "{{ aws_log_dir }}"
- name: create app directory
file: >
path={{ item }}
state=directory
owner=root
group=root
mode=0755
with_items:
- "{{ aws_app_dir }}"
- name: install system packages
apt: >
pkg={{','.join(aws_debian_pkgs)}}
......
......@@ -72,7 +72,9 @@ jenkins_admin_debian_pkgs:
# Needed by the CMS to manipulate images.
- libjpeg8-dev
- libpng12-dev
# for status.edx.org
- ruby
- ruby1.9.1
jenkins_admin_gem_pkgs:
# for generating status.edx.org
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment