aboutsummaryrefslogtreecommitdiffstats
path: root/vagrant/rockylinux9/Vagrantfile
diff options
context:
space:
mode:
Diffstat (limited to 'vagrant/rockylinux9/Vagrantfile')
-rw-r--r--vagrant/rockylinux9/Vagrantfile25
1 files changed, 25 insertions, 0 deletions
diff --git a/vagrant/rockylinux9/Vagrantfile b/vagrant/rockylinux9/Vagrantfile
new file mode 100644
index 0000000..e59d100
--- /dev/null
+++ b/vagrant/rockylinux9/Vagrantfile
@@ -0,0 +1,25 @@
+# -*- mode: ruby -*-
+# vi: set ft=ruby :
+
+Vagrant.configure("2") do |config|
+ config.vm.box = "boxen/rockylinux-9"
+
+ config.vm.synced_folder ".", "/vagrant", disabled: true
+ config.vm.synced_folder "../../", "/bindfs",
+ type: "rsync",
+ rsync__auto: false,
+ rsync__exclude: ["vagrant"],
+ rsync__args: ["-av", "--delete-after"]
+
+ config.vm.provider "virtualbox" do |v|
+ v.name = "bindfs-rockylinux9"
+ end
+ config.vm.provider "libvirt" do |v|
+ v.driver = if File.exist?('/dev/kvm') then 'kvm' else 'qemu' end
+ end
+
+ config.vm.provision "shell", inline: <<-SHELL
+ yum install -y fuse3 fuse3-devel gcc make automake autoconf libtool pkg-config ruby valgrind
+ echo user_allow_other > /etc/fuse.conf
+ SHELL
+end