aboutsummaryrefslogtreecommitdiffstats
path: root/vagrant/bootstrap.sh
diff options
context:
space:
mode:
Diffstat (limited to 'vagrant/bootstrap.sh')
-rw-r--r--vagrant/bootstrap.sh18
1 files changed, 7 insertions, 11 deletions
diff --git a/vagrant/bootstrap.sh b/vagrant/bootstrap.sh
index 7395aa7..2ff62a6 100644
--- a/vagrant/bootstrap.sh
+++ b/vagrant/bootstrap.sh
@@ -1,12 +1,8 @@
-#!/usr/bin/env bash
+#!/bin/sh
+pkg upgrade -y -q -f
+pkg install -y -q ruby rubygem-bundler postgresql93-server postgresql93-client git sqlite3
-pacman -Suyq --noconfirm
-pacman -Sq ruby gcc make sqlite3 nodejs imagemagick --noconfirm
-echo "export GEM_HOME=`gem env gemdir`" > /etc/profile.d/rubygems.sh
-source /etc/profile.d/rubygems.sh
-gem install bundler --no-rdoc --no-ri --no-user-install
-cd /vagrant
-./script/setup
-cp vagrant/rails.service /usr/lib/systemd/system
-systemctl enable rails
-systemctl start rails
+echo 'postgresql_enable="YES"' >> /etc/rc.conf
+
+service postgresql initdb
+service -R