diff options
author | Martin Pärtel <martin.partel@gmail.com> | 2023-11-12 20:43:24 +0200 |
---|---|---|
committer | Martin Pärtel <martin.partel@gmail.com> | 2023-11-19 21:30:18 +0200 |
commit | bea88937f4564e282063fb44aeac485012cfae87 (patch) | |
tree | 51c60f83d52d394974d8c6d805db661b96c8e67b /vagrant/bionic64 | |
parent | 1fdf240aec17b6525ee2ebc76152ea8109f83595 (diff) | |
download | bindfs-bea88937f4564e282063fb44aeac485012cfae87.tar.gz |
CI: run Vagrant tests.
Diffstat (limited to 'vagrant/bionic64')
-rw-r--r-- | vagrant/bionic64/Vagrantfile | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/vagrant/bionic64/Vagrantfile b/vagrant/bionic64/Vagrantfile deleted file mode 100644 index aab9518..0000000 --- a/vagrant/bionic64/Vagrantfile +++ /dev/null @@ -1,25 +0,0 @@ -# -*- mode: ruby -*- -# vi: set ft=ruby : - -Vagrant.configure("2") do |config| - config.vm.box = "ubuntu/bionic64" - - 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-bionic64" - end - - config.vm.provision "shell", inline: <<-SHELL - apt-get update - apt-get install -y fuse libfuse-dev build-essential pkg-config ruby valgrind - apt-get clean - adduser vagrant fuse - echo user_allow_other > /etc/fuse.conf - SHELL -end |