Commit 7ae9acc6 authored by Vivien Alger's avatar Vivien Alger

Corrected placement error

parent 9eb28502
......@@ -120,6 +120,8 @@ class Recipe(BaseSlapRecipe):
kvm_conf['mac_address'] = ':'.join(['%02x' % x for x in octet_list])
kvm_conf['hostname'] = "slaposkvm"
kvm_conf['smp_count'] = self.options['smp_count']
kvm_conf['ram_size'] = self.options['ram_size']
# Instanciate KVM
......@@ -137,8 +139,6 @@ class Recipe(BaseSlapRecipe):
# [database_path, python_path])
kvm_conf['vnc_display'] = 1
kvm_conf['smp_count'] = self.options['smp_count']
kvm_conf['ram_size'] = self.options['ram_size']
return kvm_conf
def installNoVnc(self, source_ip, source_port, target_ip, target_port,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment