| 123456789101112131415161718192021222324252627282930313233 |
- # Master configuration file for the LXC driver.
- # All settings described here are optional - if omitted, sensible
- # defaults are used.
- # By default, log messages generated by the lxc controller go to the
- # container logfile. It is also possible to accumulate log messages
- # from all lxc controllers along with libvirtd's log outputs. In this
- # case, the lxc controller will honor either LIBVIRT_LOG_OUTPUTS or
- # log_outputs from libvirtd.conf.
- #
- # This is disabled by default, uncomment below to enable it.
- #
- #log_with_libvirtd = 1
- # The default security driver is SELinux. If SELinux is disabled
- # on the host, then the security driver will automatically disable
- # itself. If you wish to disable QEMU SELinux security driver while
- # leaving SELinux enabled for the host in general, then set this
- # to 'none' instead.
- #
- #security_driver = "selinux"
- security_driver = "apparmor"
- # If set to non-zero, then the default security labeling
- # will make guests confined. If set to zero, then guests
- # will be unconfined by default. Defaults to 0.
- #security_default_confined = 1
- security_default_confined = 1
- # If set to non-zero, then attempts to create unconfined
- # guests will be blocked. Defaults to 0.
- #security_require_confined = 1
|