Skip to content

Instantly share code, notes, and snippets.

@kaarolch
Forked from boardstretcher/install_fpm.sh
Created August 9, 2017 07:43
Show Gist options
  • Save kaarolch/52347c58f11aae31af36ba2083e3d4f1 to your computer and use it in GitHub Desktop.
Save kaarolch/52347c58f11aae31af36ba2083e3d4f1 to your computer and use it in GitHub Desktop.
Install FPM on centos 6.5
# install ruby, rubygems and all requirements, then install FPM (effing package manager)
# fpm: https://github.com/jordansissel/fpm
# as root
# update system, install requirements
yum update -y
yum install ruby-devel gcc curl libyaml-devel
# get the ruby version manager and install
curl -L get.rvm.io | bash -s stable
source /etc/profile.d/rvm.sh
# install ruby 1.9.3
rvm requirements
rvm install 1.9.3
rvm use 1.9.3 --default
# install rubygems
rvm rubygems current
# install effing package manager
gem install fpm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment