summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Pashev <pashev.igor@gmail.com>2020-01-02 13:44:14 +0200
committerIgor Pashev <pashev.igor@gmail.com>2020-01-02 13:44:14 +0200
commite17b10726f97143a012e43c874da418d7b06f0ef (patch)
treee6ec5e9c39e7c51ac9f638a8137353def7eb5ee4
downloaddyson-e17b10726f97143a012e43c874da418d7b06f0ef.tar.gz
Initial Vagrantfile
-rw-r--r--Vagrantfile19
1 files changed, 19 insertions, 0 deletions
diff --git a/Vagrantfile b/Vagrantfile
new file mode 100644
index 0000000..3554d1f
--- /dev/null
+++ b/Vagrantfile
@@ -0,0 +1,19 @@
+Vagrant.configure("2") do |config|
+ config.vm.guest = :solaris
+
+ config.vm.box = "dyson"
+ config.vm.box_url = "https://dl.osdyson.org/vagrant/2020-01-02/dyson.box"
+ config.vm.box_download_checksum = "fc20e566b1584bd5ff0b81d1ee20e66d92487ed1e727f1b7fdb8a7e77d5bb228"
+ config.vm.box_download_checksum_type = "sha256"
+
+ config.vm.provider "virtualbox" do |vb|
+ vb.cpus = 2
+ vb.gui = true
+ vb.memory = "2048"
+ end
+
+ config.vm.provision "shell", inline: <<-SHELL
+ apt update
+ apt upgrade
+ SHELL
+end