We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
f-droid
Learn more about funding links in repositories.
Report abuse
1 parent b8a03e1 commit acca4e1Copy full SHA for acca4e1
Vagrantfile
@@ -7,7 +7,7 @@ require 'tempfile'
7
require 'yaml'
8
9
srvpath = Pathname.new(File.dirname(__FILE__)).realpath
10
-configfile = YAML.load_file(File.join(srvpath, "/.gitlab-ci.yml"))
+configfile = YAML.safe_load_file(File.join(srvpath, "/.gitlab-ci.yml"), aliases: true)
11
ci_project_dir = '/vagrant'
12
13
sourcepath = '/etc/profile.d/env.sh'
@@ -38,7 +38,7 @@ end
38
script_file.rewind
39
40
Vagrant.configure("2") do |config|
41
- config.vm.box = "debian/buster64"
+ config.vm.box = "debian/bookworm64"
42
config.vm.network "forwarded_port", guest: 4000, host: 4000
43
config.vm.provision "file", source: env_file.path, destination: 'env.sh'
44
config.vm.provision :shell, inline: <<-SHELL
0 commit comments