Started modifying for nas

This commit is contained in:
Jef Roosens 2022-11-12 23:40:32 +01:00
parent 18ae3aaf4e
commit 9f77e30161
Signed by: Jef Roosens
GPG key ID: B75D4F293C7052DB
6 changed files with 68 additions and 62 deletions

17
Vagrantfile vendored Normal file
View file

@ -0,0 +1,17 @@
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.box = "generic/debian11"
# Use the standard insecure SSH key
config.ssh.insert_key = false
# Don't mount the current directory in the VM
config.vm.synced_folder ".", "/vagrant", disabled: true
config.vm.define "alpha" do |n|
n.vm.hostname = "alpha.test"
n.vm.network :private_network, ip: "192.168.56.5"
end
end