forked from rails/rails-dev-box
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbootstrap.sh
65 lines (51 loc) · 2 KB
/
bootstrap.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# The output of all these installation steps is noisy. With this utility
# the progress report is nice and concise.
function install {
echo installing $1
shift
apt-get -y install "$@" >/dev/null 2>&1
}
echo updating package information
apt-add-repository -y ppa:brightbox/ruby-ng >/dev/null 2>&1
apt-get -y update >/dev/null 2>&1
install 'development tools' build-essential
# Ruby
install Ruby ruby2.2 ruby2.2-dev
update-alternatives --set ruby /usr/bin/ruby2.2 >/dev/null 2>&1
update-alternatives --set gem /usr/bin/gem2.2 >/dev/null 2>&1
# Bundler
echo installing Bundler
gem install bundler -N >/dev/null 2>&1
# SQLite
install SQLite sqlite3 libsqlite3-dev
install 'ExecJS runtime' nodejs
# git
#install Git git
# memcache
#install memcached memcached
# Redis
#install Redis redis-server
#RabbitMQ
#install RabbitMQ rabbitmq-server
# PostgreSQL
#install PostgreSQL postgresql postgresql-contrib libpq-dev
#sudo -u postgres createuser --superuser vagrant
#sudo -u postgres createdb -O vagrant activerecord_unittest
#sudo -u postgres createdb -O vagrant activerecord_unittest2
# MYSQL
#debconf-set-selections <<< 'mysql-server mysql-server/root_password password root'
#debconf-set-selections <<< 'mysql-server mysql-server/root_password_again password root'
#install MySQL mysql-server libmysqlclient-dev
#mysql -uroot -proot <<SQL
#CREATE USER 'rails'@'localhost';
#CREATE DATABASE activerecord_unittest DEFAULT CHARACTER SET utf8 DEFAULT COLLATE utf8_general_ci;
#CREATE DATABASE activerecord_unittest2 DEFAULT CHARACTER SET utf8 DEFAULT COLLATE utf8_general_ci;
#GRANT ALL PRIVILEGES ON activerecord_unittest.* to 'rails'@'localhost';
#GRANT ALL PRIVILEGES ON activerecord_unittest2.* to 'rails'@'localhost';
#GRANT ALL PRIVILEGES ON inexistent_activerecord_unittest.* to 'rails'@'localhost';
#SQL
# libxml
#install 'Nokogiri dependencies' libxml2 libxml2-dev libxslt1-dev
# Needed for docs generation.
#update-locale LANG=en_US.UTF-8 LANGUAGE=en_US.UTF-8 LC_ALL=en_US.UTF-8
echo 'Initial vagrant up completed!'