summaryrefslogtreecommitdiff
path: root/etc/glance/rootwrap.conf
diff options
context:
space:
mode:
authorTomoki Sekiyama <tomoki.sekiyama.qu@hitachi.com>2016-05-26 14:29:07 +0900
committerTomoki Sekiyama <tomoki.sekiyama.qu@hitachi.com>2016-11-04 11:52:04 +0000
commitb1eb395cb4d654f06d7f8aa2d09a6f6be5910377 (patch)
tree1a97aabff6345a5d1ebac4d6f57db70007466ea1 /etc/glance/rootwrap.conf
parent9b63cb5d00b26b6d8bf105ae306094775cacd8dc (diff)
downloadglance_store-b1eb395cb4d654f06d7f8aa2d09a6f6be5910377.tar.gz
Move rootwrap config files from etc/* into etc/glance/*
To cleanly utilize devstack's configure_rootwrap function to install rootwrap config files, these should be placed in etc/glance/ directory as nova and cinder do. Change-Id: I6d4ee6929f3c3536424bb6790c958aa464860300
Diffstat (limited to 'etc/glance/rootwrap.conf')
-rw-r--r--etc/glance/rootwrap.conf27
1 files changed, 27 insertions, 0 deletions
diff --git a/etc/glance/rootwrap.conf b/etc/glance/rootwrap.conf
new file mode 100644
index 0000000..421dd25
--- /dev/null
+++ b/etc/glance/rootwrap.conf
@@ -0,0 +1,27 @@
+# Configuration for glance-rootwrap
+# This file should be owned by (and only-writable by) the root user
+
+[DEFAULT]
+# List of directories to load filter definitions from (separated by ',').
+# These directories MUST all be only writeable by root !
+filters_path=/etc/glance/rootwrap.d,/usr/share/glance/rootwrap
+
+# List of directories to search executables in, in case filters do not
+# explicitely specify a full path (separated by ',')
+# If not specified, defaults to system PATH environment variable.
+# These directories MUST all be only writeable by root !
+exec_dirs=/sbin,/usr/sbin,/bin,/usr/bin,/usr/local/bin,/usr/local/sbin
+
+# Enable logging to syslog
+# Default value is False
+use_syslog=False
+
+# Which syslog facility to use.
+# Valid values include auth, authpriv, syslog, local0, local1...
+# Default value is 'syslog'
+syslog_log_facility=syslog
+
+# Which messages to log.
+# INFO means log all usage
+# ERROR means only log unsuccessful attempts
+syslog_log_level=ERROR