summaryrefslogtreecommitdiff
path: root/templates/Debian-8.0-amd64-netboot/ruby.sh
diff options
context:
space:
mode:
Diffstat (limited to 'templates/Debian-8.0-amd64-netboot/ruby.sh')
-rw-r--r--templates/Debian-8.0-amd64-netboot/ruby.sh10
1 files changed, 0 insertions, 10 deletions
diff --git a/templates/Debian-8.0-amd64-netboot/ruby.sh b/templates/Debian-8.0-amd64-netboot/ruby.sh
deleted file mode 100644
index e44d60d..0000000
--- a/templates/Debian-8.0-amd64-netboot/ruby.sh
+++ /dev/null
@@ -1,10 +0,0 @@
-# Install Ruby from packages
-apt-get -y install ruby ruby-dev libopenssl-ruby1.8 irb ri rdoc
-
-# Install Rubygems from source
-rg_ver=1.8.22
-curl -o /tmp/rubygems-${rg_ver}.zip \
- "http://production.cf.rubygems.org/rubygems/rubygems-${rg_ver}.zip"
-(cd /tmp && unzip rubygems-${rg_ver}.zip && \
- cd rubygems-${rg_ver} && ruby setup.rb --no-format-executable)
-rm -rf /tmp/rubygems-${rg_ver} /tmp/rubygems-${rg_ver}.zip