Add system upgrade role
initial commit
This commit is contained in:
commit
1fe4c617db
7 changed files with 137 additions and 0 deletions
11
Vagrantfile
vendored
Normal file
11
Vagrantfile
vendored
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue