mirror of
https://0xacab.org/liberate/backupninja.git
synced 2024-11-08 20:02:32 +01:00
47 lines
1.9 KiB
Ruby
47 lines
1.9 KiB
Ruby
# -*- mode: ruby -*-
|
|
# vi: set ft=ruby :
|
|
|
|
ENV["LC_ALL"] = "en_US.UTF-8"
|
|
empty_disk = '.vagrant/tmp/empty.vdi'
|
|
lvm_disk = '.vagrant/tmp/lvm.vdi'
|
|
lukspart_disk = '.vagrant/tmp/lukspart.vdi'
|
|
luksdev_disk = '.vagrant/tmp/luksdev.vdi'
|
|
|
|
Vagrant.configure("2") do |config|
|
|
config.vm.box = "debian/buster64"
|
|
config.vm.provision "shell", inline: <<-SHELL
|
|
locale-gen
|
|
apt-get update
|
|
apt-get install -y automake make dialog
|
|
cd /vagrant
|
|
./autogen.sh
|
|
./configure --prefix=/usr --mandir=/usr/share/man --sysconfdir=/etc --localstatedir=/var --libdir=/usr/lib --libexecdir=/usr/lib
|
|
make
|
|
make install
|
|
SHELL
|
|
config.vm.synced_folder ".", "/vagrant", type: "rsync",
|
|
rsync__exclude: ".git/",
|
|
rsync__args: ["--recursive", "--delete"]
|
|
config.vm.hostname = "bntest0"
|
|
|
|
config.vm.provider :virtualbox do |vb|
|
|
unless File.exist?(empty_disk)
|
|
vb.customize ['createhd', '--filename', empty_disk, '--size', 100 ]
|
|
end
|
|
unless File.exist?(empty_disk)
|
|
vb.customize ['createhd', '--filename', lvm_disk, '--size', 100 ]
|
|
end
|
|
unless File.exist?(lukspart_disk)
|
|
vb.customize ['createhd', '--filename', lukspart_disk, '--size', 100 ]
|
|
end
|
|
unless File.exist?(luksdev_disk)
|
|
vb.customize ['createhd', '--filename', luksdev_disk, '--size', 100 ]
|
|
end
|
|
vb.customize ['storageattach', :id, '--storagectl', 'SATA Controller', '--port', 1, '--device', 0, '--type', 'hdd', '--medium', empty_disk]
|
|
vb.customize ['storageattach', :id, '--storagectl', 'SATA Controller', '--port', 2, '--device', 0, '--type', 'hdd', '--medium', lvm_disk]
|
|
vb.customize ['storageattach', :id, '--storagectl', 'SATA Controller', '--port', 3, '--device', 0, '--type', 'hdd', '--medium', lukspart_disk]
|
|
vb.customize ['storageattach', :id, '--storagectl', 'SATA Controller', '--port', 4, '--device', 0, '--type', 'hdd', '--medium', luksdev_disk]
|
|
end
|
|
|
|
end
|