Kind of continue from the other gist how to install LAMP on an Amazon AMI
##Install git
sudo yum install git-core
##Create ssh directory since it doesn't exists by default on the Amazon AMI
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
phpcs.standard = WordPress | |
phpcs.tabWidth = 4 | |
phpcs.encoding = utf-8 | |
ftp.host = ftp.example.com | |
ftp.port = 21 | |
ftp.username = username | |
ftp.password = password | |
ftp.project.dir = /subdomains/docs/httpdocs/${project.name.safe} | |
ftp.dir = ${ftp.project.dir}/${project.version} |
Kind of continue from the other gist how to install LAMP on an Amazon AMI
##Install git
sudo yum install git-core
##Create ssh directory since it doesn't exists by default on the Amazon AMI
This gist assumes:
This gist assumes:
/usr/sbin/groupadd -g 30119 jenkins | |
/usr/sbin/useradd -u 30119 -g jenkins jenkins | |
mkdir /home/jenkins | |
chown -R jenkins. /home/jenkins |
#!/bin/bash | |
# author: Jean-François Lépine | |
# Ruby | |
# ----------------------- | |
curl -L get.rvm.io | bash -s stable | |
source /etc/profile.d/rvm.sh | |
rvm reload | |
rvm install 2.1.0 |