aboutsummaryrefslogtreecommitdiffstats
path: root/vagrant/bootstrap.sh
blob: 81fd1453c67c4bcb10d11890e5fe476c6ab62b25 (plain) (blame)
1
2
3
4
5
6
7
8
9
#!/bin/sh
pkg upgrade -y -q -f
pkg install -y -q ruby rubygem-bundler postgresql93-server postgresql93-client nginx git

echo 'postgresql_enable="YES"' >> /etc/rc.conf
echo 'nginx_enable="YES"' >> /etc/rc.conf

service postgresql initdb
service -R