Set qemuargs to raise memory
diff --git a/centos-7/template.json b/centos-7/template.json
index 824b475..9f381ba 100644
--- a/centos-7/template.json
+++ b/centos-7/template.json
@@ -99,6 +99,9 @@
},
{
"type": "qemu",
+ "qemuargs": [
+ [ "-m", "1024M" ]
+ ],
"vm_name": "{{ user `distro` }}-{{ timestamp }}",
"output_directory": "images/{{ user `distro` }}-qemu-{{ timestamp }}",
"format": "qcow2",
diff --git a/debian-8/template.json b/debian-8/template.json
index 62ff82e..f82d880 100644
--- a/debian-8/template.json
+++ b/debian-8/template.json
@@ -185,6 +185,9 @@
},
{
"type": "qemu",
+ "qemuargs": [
+ [ "-m", "1024M" ]
+ ],
"vm_name": "{{ user `distro` }}-{{ timestamp }}",
"output_directory": "images/{{ user `distro` }}-qemu-{{ timestamp }}",
"format": "qcow2",
diff --git a/ubuntu-14.04/template.json b/ubuntu-14.04/template.json
index f61485b..0f71697 100644
--- a/ubuntu-14.04/template.json
+++ b/ubuntu-14.04/template.json
@@ -193,6 +193,9 @@
},
{
"type": "qemu",
+ "qemuargs": [
+ [ "-m", "1024M" ]
+ ],
"vm_name": "{{ user `distro` }}-{{ timestamp }}",
"output_directory": "images/{{ user `distro` }}-qemu-{{ timestamp }}",
"format": "qcow2",
diff --git a/ubuntu-16.04/template.json b/ubuntu-16.04/template.json
index 1c2743b..d081c2c 100644
--- a/ubuntu-16.04/template.json
+++ b/ubuntu-16.04/template.json
@@ -193,6 +193,9 @@
},
{
"type": "qemu",
+ "qemuargs": [
+ [ "-m", "1024M" ]
+ ],
"vm_name": "{{ user `distro` }}-{{ timestamp }}",
"output_directory": "images/{{ user `distro` }}-qemu-{{ timestamp }}",
"format": "qcow2",