mirror of https://github.com/apache/cloudstack.git
libvirt: do not set security_driver to none in qemu.conf
This commit is contained in:
parent
a354fb7d57
commit
34c682737e
|
|
@ -660,7 +660,6 @@ class libvirtConfigRedhat(serviceCfgBase):
|
|||
filename = "/etc/libvirt/qemu.conf"
|
||||
|
||||
cfo = configFileOps(filename, self)
|
||||
cfo.addEntry("security_driver", "\"selinux\"")
|
||||
cfo.addEntry("user", "\"root\"")
|
||||
cfo.addEntry("group", "\"root\"")
|
||||
cfo.addEntry("vnc_listen", "\"0.0.0.0\"")
|
||||
|
|
@ -698,7 +697,6 @@ class libvirtConfigSUSE(serviceCfgBase):
|
|||
|
||||
filename = "/etc/libvirt/qemu.conf"
|
||||
cfo = configFileOps(filename, self)
|
||||
cfo.addEntry("security_driver", "\"apparmor\"")
|
||||
cfo.addEntry("user", "\"root\"")
|
||||
cfo.addEntry("group", "\"root\"")
|
||||
cfo.addEntry("vnc_listen", "\"0.0.0.0\"")
|
||||
|
|
@ -753,7 +751,6 @@ class libvirtConfigUbuntu(serviceCfgBase):
|
|||
filename = "/etc/libvirt/qemu.conf"
|
||||
|
||||
cfo = configFileOps(filename, self)
|
||||
cfo.addEntry("security_driver", "\"apparmor\"")
|
||||
cfo.addEntry("user", "\"root\"")
|
||||
cfo.addEntry("group", "\"root\"")
|
||||
configure_libvirt_tls(self.syscfg.env.secure, cfo)
|
||||
|
|
|
|||
Loading…
Reference in New Issue