Skip to content

Commit 5fc24d5

Browse files
committed
Updated Vagrant configuration to include cachier and apt dependencies
1 parent a3d5275 commit 5fc24d5

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Vagrantfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ $provision = 'vagrant/bootstrap.sh'
2626

2727
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
2828

29-
config.vm.box = box
30-
#config.vm.box_url = box_url
29+
config.vm.box = $box
30+
config.vm.box_url = $box_url
3131
config.vm.provision :shell do |s|
32-
s.path = provision
32+
s.path = $provision
3333
end
3434

3535
config.ssh.keep_alive = true

vagrant/bootstrap.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,4 +65,5 @@ su - vagrant <<-'EOF'
6565
# Force the app to use the internal Postgres port number and ignore .env
6666
bundle exec rake db:migrate
6767
bundle exec rake db:test:prepare
68+
6869
EOF

vagrant/coderwall-box/scripts/postinstall.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,6 @@ apt-get -y install libmagickwand-dev
125125
apt-get -y install libncurses5-dev
126126
apt-get -y install libopenssl-ruby
127127
apt-get -y install libpq-dev
128-
apt-get -y install libpq-dev
129128
apt-get -y install libreadline6
130129
apt-get -y install libreadline6-dev
131130
apt-get -y install libsqlite3-0

0 commit comments

Comments
 (0)