1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-10-02 09:10:11 +02:00

fix calling vagrant global-status

This commit is contained in:
Michael Pöhn 2017-03-25 23:50:10 +01:00 committed by Hans-Christoph Steiner
parent 592a292847
commit a8420817cb

View File

@ -1,6 +1,9 @@
require 'yaml'
configfile = YAML.load_file('Vagrantfile.yaml')
require 'pathname'
srvpath = Pathname.new(File.dirname(__FILE__)).realpath
configfile = YAML.load_file(File.join(srvpath, "/Vagrantfile.yaml"))
Vagrant.configure("2") do |config|