mirror of
https://github.com/ChristianLempa/boilerplates.git
synced 2024-11-25 17:55:06 +01:00
c59109270a
Convert all DOS-style line breaks (carriage return followed by line feed) to Unix-style line breaks (line feed only).
16 lines
418 B
Ruby
Executable File
16 lines
418 B
Ruby
Executable File
# -*- mode: ruby -*-
|
|
# vi: set ft=ruby :
|
|
|
|
Vagrant.configure("2") do |config|
|
|
config.vm.box = "generic/ubuntu2004"
|
|
config.vm.network "public_network"
|
|
config.vm.synced_folder ".", "/vagrant_data", disabled: true
|
|
config.vm.provider "hyperv"
|
|
config.vm.provider "hyperv" do |h|
|
|
h.enable_virtualization_extensions = false
|
|
h.linked_clone = true
|
|
h.memory = 2048
|
|
h.vmname = "ubuntu_plain_1"
|
|
end
|
|
end
|