We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70c6083 commit 5915e10Copy full SHA for 5915e10
Vagrantfile
@@ -0,0 +1,17 @@
1
+# -*- mode: ruby -*-
2
+# vi: set ft=ruby :
3
+
4
+$bootstrap = <<SCRIPT
5
+sudo apt-get update
6
+sudo apt-get -fuy -o Dpkg::Options::='--force-confold' install git
7
8
+git clone https://github.com/zardus/ctf-tools.git /home/vagrant/ctf-tools/
9
+/home/vagrant/ctf-tools/bin/manage-tools -s setup
10
+SCRIPT
11
12
+Vagrant.configure(2) do |config|
13
+ config.vm.box = "ubuntu/trusty64"
14
+ config.vm.hostname = "ctf-tools"
15
+ config.vm.provision "shell", privileged: false, inline: $bootstrap
16
+ config.vbguest.installer_arguments = []
17
+end
0 commit comments