aboutsummaryrefslogtreecommitdiffstats
path: root/vagrant
diff options
context:
space:
mode:
authorMartin Pärtel <martin.partel@gmail.com>2022-06-24 20:46:44 +0300
committerMartin Pärtel <martin.partel@gmail.com>2022-06-24 20:46:44 +0300
commita2262b76c871d1a087daff64b3691f7a61bf108f (patch)
tree98c451657646fa15818c74d02ad3dadd2d6f34aa /vagrant
parent6c5d8f0d9097a3829b3541d4be7f36b632ef1159 (diff)
downloadbindfs-a2262b76c871d1a087daff64b3691f7a61bf108f.tar.gz
Removed trusty64 Vagrantfile.
Rsyncing to it fails now and I don't have the time to figure out why.
Diffstat (limited to 'vagrant')
-rw-r--r--vagrant/trusty64/Vagrantfile25
1 files changed, 0 insertions, 25 deletions
diff --git a/vagrant/trusty64/Vagrantfile b/vagrant/trusty64/Vagrantfile
deleted file mode 100644
index e7652f6..0000000
--- a/vagrant/trusty64/Vagrantfile
+++ /dev/null
@@ -1,25 +0,0 @@
-# -*- mode: ruby -*-
-# vi: set ft=ruby :
-
-Vagrant.configure("2") do |config|
- config.vm.box = "ubuntu/trusty64"
-
- 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-trusty64"
- end
-
- config.vm.provision "shell", inline: <<-SHELL
- apt-get update
- apt-get install -y fuse libfuse-dev build-essential pkg-config ruby1.9 valgrind
- apt-get clean
- adduser vagrant fuse
- echo user_allow_other > /etc/fuse.conf
- SHELL
-end