Use 200MB by default for NetVM and ProxyVM
This commit is contained in:
parent
e01b29dd76
commit
d01489b486
@ -1252,6 +1252,10 @@ class QubesNetVm(QubesVm):
|
|||||||
|
|
||||||
if "vcpus" not in kwargs or kwargs["vcpus"] is None:
|
if "vcpus" not in kwargs or kwargs["vcpus"] is None:
|
||||||
kwargs["vcpus"] = default_servicevm_vcpus
|
kwargs["vcpus"] = default_servicevm_vcpus
|
||||||
|
|
||||||
|
if "memory" not in kwargs or kwargs["memory"] is None:
|
||||||
|
kwargs["memory"] = 200
|
||||||
|
|
||||||
super(QubesNetVm, self).__init__(**kwargs)
|
super(QubesNetVm, self).__init__(**kwargs)
|
||||||
self.connected_vms = QubesVmCollection()
|
self.connected_vms = QubesVmCollection()
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user