backupninja/Vagrantfile
Jerome Charaoui a7fd43b94a Add Vagrantfile
This should help with testing development code and new releases. To use,
just install vagrant and run vagrant up && vagrant ssh
2018-06-29 11:43:12 -04:00

16 lines
374 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 git automake make
git clone https://0xacab.org/riseuplabs/backupninja.git
chown vagrant: backupninja -R
SHELL
end