diff options
author | Harald Eilertsen <haraldei@anduin.net> | 2017-12-10 16:15:02 +0100 |
---|---|---|
committer | Harald Eilertsen <haraldei@anduin.net> | 2017-12-10 16:15:02 +0100 |
commit | d70626928b34793489dfcacb5129f4b831c1854e (patch) | |
tree | da717a5e830e3da26e766a133463e490383b5f36 /vagrant/bootstrap.sh | |
parent | d371e234be01451f983c333bc8c82862141f2ef4 (diff) | |
download | hmnoweb-d70626928b34793489dfcacb5129f4b831c1854e.tar.gz hmnoweb-d70626928b34793489dfcacb5129f4b831c1854e.tar.bz2 hmnoweb-d70626928b34793489dfcacb5129f4b831c1854e.zip |
vagrant: Install sqlite3, drop nginx.
We have sqlite3 as a development dependency for some reason. Don't
really need nginx for the dev setup.
Diffstat (limited to 'vagrant/bootstrap.sh')
-rw-r--r-- | vagrant/bootstrap.sh | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/vagrant/bootstrap.sh b/vagrant/bootstrap.sh index 81fd145..2ff62a6 100644 --- a/vagrant/bootstrap.sh +++ b/vagrant/bootstrap.sh @@ -1,9 +1,8 @@ #!/bin/sh pkg upgrade -y -q -f -pkg install -y -q ruby rubygem-bundler postgresql93-server postgresql93-client nginx git +pkg install -y -q ruby rubygem-bundler postgresql93-server postgresql93-client git sqlite3 echo 'postgresql_enable="YES"' >> /etc/rc.conf -echo 'nginx_enable="YES"' >> /etc/rc.conf service postgresql initdb service -R |