Add system upgrade role

initial commit
This commit is contained in:
Marty Oehme 2021-07-24 11:51:09 +02:00
commit 1fe4c617db
Signed by: Marty
GPG key ID: B7538B8F50A1C800
7 changed files with 137 additions and 0 deletions

11
Vagrantfile vendored Normal file
View file

@ -0,0 +1,11 @@
Vagrant.configure('2') do |config|
config.vm.define 'tau' do |debian|
debian.vm.box = 'bento/ubuntu-20.04'
debian.vm.network :private_network, ip: '192.168.27.2'
debian.vm.hostname = 'testing'
debian.vm.provider 'virtualbox' do |vb|
vb.memory = '2048'
vb.cpus = 2
end
end
end