rootwrap.conf

neutron-rootwrap的配置文件。
给定了一系列的filter文件路径和可执行文件路径,以及log信息。

  1. # Configuration for neutron-rootwrap
  2. # This file should be owned by (and only-writeable by) the root user
  3. [DEFAULT]
  4. # List of directories to load filter definitions from (separated by ',').
  5. # These directories MUST all be only writeable by root !
  6. filters_path=/etc/neutron/rootwrap.d,/usr/share/neutron/rootwrap
  7. # List of directories to search executables in, in case filters do not
  8. # explicitely specify a full path (separated by ',')
  9. # If not specified, defaults to system PATH environment variable.
  10. # These directories MUST all be only writeable by root !
  11. exec_dirs=/sbin,/usr/sbin,/bin,/usr/bin
  12. # Enable logging to syslog
  13. # Default value is False
  14. use_syslog=False
  15. # Which syslog facility to use.
  16. # Valid values include auth, authpriv, syslog, local0, local1...
  17. # Default value is 'syslog'
  18. syslog_log_facility=syslog
  19. # Which messages to log.
  20. # INFO means log all usage
  21. # ERROR means only log unsuccessful attempts
  22. syslog_log_level=ERROR
  23. [xenapi]
  24. # XenAPI configuration is only required by the L2 agent if it is to
  25. # target a XenServer/XCP compute host's dom0.
  26. xenapi_connection_url=<None>
  27. xenapi_connection_username=root
  28. xenapi_connection_password=<None>