From 5e30b7312b313d1dcc90a6665ab4bb6da3e842bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Recai=20Okta=C5=9F?= Date: Tue, 17 Oct 2023 15:00:56 +0300 Subject: [PATCH] Add generic Vagrantfile --- vagrant/Vagrantfile | 3 +++ vagrant/install.sh | 1 + 2 files changed, 4 insertions(+) create mode 100644 vagrant/Vagrantfile diff --git a/vagrant/Vagrantfile b/vagrant/Vagrantfile new file mode 100644 index 0000000..6cf0445 --- /dev/null +++ b/vagrant/Vagrantfile @@ -0,0 +1,3 @@ +Vagrant.configure("2") do |config| + config.vm.box = "roktas/bookworm" +end diff --git a/vagrant/install.sh b/vagrant/install.sh index 85af0f6..f87ce0a 100644 --- a/vagrant/install.sh +++ b/vagrant/install.sh @@ -4,4 +4,5 @@ set -euo pipefail; [[ -z ${TRACE:-} ]] || set -x; cd "$(dirname "$0")" install -d "$HOME"/.local/bin && { ln -sf "$PWD"/vagrant -t "$HOME"/.local/bin + ln -sf "$PWD"/Vagrantfile -t "$HOME" }