aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Pärtel <martin.partel@gmail.com>2025-07-25 20:12:07 +0300
committerMartin Pärtel <martin.partel@gmail.com>2025-07-25 20:12:07 +0300
commit7c77d3702f4e3062750307871265a5b59a631456 (patch)
treec71f9ff432b6ccb31f80edcd3b190d571607fbe3
parent70a663b3476c0b9b21b626473c00c68a3dc97b92 (diff)
downloadbindfs-7c77d3702f4e3062750307871265a5b59a631456.tar.gz
Remove Debian 10 tests. The apt repo has been shut down.
-rw-r--r--vagrant/debian10/Vagrantfile28
1 files changed, 0 insertions, 28 deletions
diff --git a/vagrant/debian10/Vagrantfile b/vagrant/debian10/Vagrantfile
deleted file mode 100644
index 62104c4..0000000
--- a/vagrant/debian10/Vagrantfile
+++ /dev/null
@@ -1,28 +0,0 @@
-# -*- mode: ruby -*-
-# vi: set ft=ruby :
-
-Vagrant.configure("2") do |config|
- config.vm.box = "boxen/debian-10"
-
- 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-debian10"
- end
- config.vm.provider "libvirt" do |v|
- v.driver = if File.exist?('/dev/kvm') then 'kvm' else 'qemu' end
- end
-
- config.vm.provision "shell", reboot: true, inline: <<-SHELL
- export DEBIAN_FRONTEND='noninteractive'
- apt-get update
- apt-get install -y fuse3 libfuse3-dev build-essential automake autoconf libtool pkg-config ruby valgrind
- apt-get clean
- echo user_allow_other > /etc/fuse.conf
- SHELL
-end