Minor dev Vagrantfile tweaks

This commit is contained in:
Fabio Rehm 2014-02-25 23:54:05 -03:00
parent 3ad2d6eb50
commit 43625fca96

View file

@ -123,7 +123,7 @@ Vagrant.configure("2") do |config|
# Disable NFS
arch.cache.synced_folder_opts = { }
arch.vm.provision :shell, inline: 'pacman -Syu --noconfirm libffi git && gem install bundler'
arch.vm.provision :shell, inline: 'pacman -Syu --noconfirm libffi git ruby && gem install bundler'
end
config.vm.define :opensuse do |suse|
@ -132,6 +132,6 @@ Vagrant.configure("2") do |config|
# Disable NFS
suse.cache.synced_folder_opts = { }
suse.vm.provision :shell, inline: 'time zypper install -y git && gem install bundler'
suse.vm.provision :shell, inline: 'time zypper install -y git'
end
end