Skip to content

Instantly share code, notes, and snippets.

@v6
Forked from boardstretcher/install_fpm.sh
Created March 18, 2017 01:29
Show Gist options
  • Save v6/88311bf9d311f77f883f7b4156db00b8 to your computer and use it in GitHub Desktop.
Save v6/88311bf9d311f77f883f7b4156db00b8 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