mirror of
https://0xacab.org/liberate/backupninja.git
synced 2024-11-08 11:52:32 +01:00
Add Vagrantfile
This should help with testing development code and new releases. To use, just install vagrant and run vagrant up && vagrant ssh
This commit is contained in:
parent
1e78c5b4a1
commit
a7fd43b94a
1
.gitignore
vendored
1
.gitignore
vendored
@ -52,3 +52,4 @@ man/Makefile
|
||||
src/Makefile
|
||||
src/backupninja
|
||||
src/ninjahelper
|
||||
vagrant
|
||||
|
15
Vagrantfile
vendored
Normal file
15
Vagrantfile
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
# -*- 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
|
Loading…
Reference in New Issue
Block a user