From 9541cc693f7f4544c857ff41149537f1f5e678cd Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Thu, 10 Mar 2016 19:18:06 -0500 Subject: [PATCH] Vagrantfile: Add a stub here Closes: #269 Approved by: jlebon --- Vagrantfile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Vagrantfile diff --git a/Vagrantfile b/Vagrantfile new file mode 100644 index 00000000..27ac6bd8 --- /dev/null +++ b/Vagrantfile @@ -0,0 +1,13 @@ +# vi: set ft=ruby : + +# In the future, this might do something more interesting +# like contain code to sync git from the local dir into +# the system and do builds/installs there. But for +# now at least this exists as a starting point, and +# once `ostree admin unlock` exists in the next version, +# things will be a bit simpler. + +Vagrant.configure(2) do |config| + config.vm.box = "fedora/23-atomic-host" + config.vm.hostname = "fedoraah-dev" +end