Skip to content
Snippets Groups Projects
Commit a7fd43b9 authored by Jérôme Charaoui's avatar Jérôme Charaoui
Browse files

Add Vagrantfile

This should help with testing development code and new releases. To use,
just install vagrant and run vagrant up && vagrant ssh
parent 1e78c5b4
Branches
Tags
No related merge requests found
......@@ -52,3 +52,4 @@ man/Makefile
src/Makefile
src/backupninja
src/ninjahelper
vagrant
# -*- 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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment