mirror of
https://0xacab.org/liberate/backupninja.git
synced 2024-11-08 20:02:32 +01:00
19 lines
475 B
Ruby
19 lines
475 B
Ruby
# -*- mode: ruby -*-
|
|
# vi: set ft=ruby :
|
|
|
|
ENV["LC_ALL"] = "en_US.UTF-8"
|
|
|
|
Vagrant.configure("2") do |config|
|
|
config.vm.box = "debian/stretch64"
|
|
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
|
|
end
|