diff options
Diffstat (limited to 'vagrant')
-rw-r--r-- | vagrant/bootstrap.sh | 19 |
1 files changed, 8 insertions, 11 deletions
diff --git a/vagrant/bootstrap.sh b/vagrant/bootstrap.sh index 7395aa7..c06b929 100644 --- a/vagrant/bootstrap.sh +++ b/vagrant/bootstrap.sh @@ -1,12 +1,9 @@ -#!/usr/bin/env bash +#!/bin/sh +pkg upgrade -y -q -f +pkg install -y -q ruby rubygem-bundler postgresql93-server postgresql93-client nginx -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 +echo 'nginx_enable="YES"' >> /etc/rc.conf + +service postgresql initdb +service -R |