Skip to content
Snippets Groups Projects
Commit 4dfa91d6 authored by User expired's avatar User expired
Browse files

fixed syntax error in Vagrantfile

parent 02cfc044
No related branches found
No related tags found
No related merge requests found
Upcoming version:
-----------------
- fixed syntax error in Vagrantfile (Nikolaus Krismer)
- preparations to use libvirt on dbis-ci test system (Nikolaus Krismer)
- preparations to use libvirt on dbis-ci test system (Nikolaus Krismer)
- merging (Nikolaus Krismer)
......
......@@ -91,7 +91,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.synced_folder "log/bootstrap", "/var/log/vagrant_bootstrap", create: true, owner: "vagrant", group: "vagrant"
# Setup environment on startup (done using a shell script)
config.vm.provision "shell", keep_color: true, path: "bootstrap/prepareEnvironment.sh", args: ["secretPhdPassword#2014!", (isLocalDeploy ? "true" : "false"), (isJenki$
config.vm.provision "shell", keep_color: true, path: "bootstrap/prepareEnvironment.sh", args: ["secretPhdPassword#2014!", (isLocalDeploy ? "true" : "false"), (isJenkinsDeploy ? "true" : "false")]
config.vm.provision "shell", keep_color: true, path: "bootstrap/createDatabase.sh", args: ["niko", "secretPhdPassword#2014!"]
config.vm.provision "shell", keep_color: true, path: "bootstrap/importData.sh", args: ["niko", "secretPhdPassword#2014!", (deployAllDatasets ? "true" : "false")]
# Optionally activate database logging (for queryTimeLogging this is done in the testcase itself now)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment