Last active
December 15, 2015 04:50
-
-
Save shiraji/5204368 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
yum -y install ruby | |
yum -y install ruby-devel | |
yum -y install rubygems | |
gem update --system 1.8.25 | |
gem install chef --no-rdoc --no-ri | |
gem install rake | |
gem install knife-solo | |
#check version | |
echo "*** rube -v ***" | |
ruby -v | |
echo "*** gem -v ***" | |
gem -v | |
echo "*** chef-solo -v ***" | |
chef-solo -v | |
echo "*** knife-solo -v ***" | |
knife-solo -v |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment