mirror of
https://0xacab.org/liberate/backupninja.git
synced 2024-11-08 11:52:32 +01:00
a7fd43b94a
This should help with testing development code and new releases. To use, just install vagrant and run vagrant up && vagrant ssh
16 lines
374 B
Ruby
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
|