Revert "Adds passthrough config for cinder rootwra

This reverts commit 908a9f5dfe.

This config file is empty by default and breaks the ability
to create cinder volumes with the following error from
oslo.rootwrap:

  No section: \'Filters\'\n'

Change-Id: I28c62fedc372c57e86566270b7e1e99b82a921a4
Closes-bug: #1342101
This commit is contained in:
Dan Prince 2014-07-15 09:00:05 -04:00
parent 701bf0e912
commit 0baa3af50b
2 changed files with 1 additions and 36 deletions

View File

@ -12,25 +12,4 @@ cinder:
debug: False
- Print debugging output (set logging level to DEBUG instead of default WARNING level).
iscsi-helper: tgtadm
- Specifies the iSCSI helper to use. Must match the target element included in the image.
Rootwrap Configuration
----------------------
It is possible to add custom configuration to the rootwrap.conf used by cinder
by supplying an ExtraConfig snippet of the following form:
{
"cinder": {
"rootwrap_config": [
{"section": "SECTIONNAME",
"values": [
{
"option": "OPTIONNAME",
"value": "VALUENAME"
}
]
}
]
}
}
- Specifies the iSCSI helper to use. Must match the target element included in the image.

View File

@ -1,14 +0,0 @@
{{#cinder}}
{{#rootwrap_config}}
[{{{section}}}]
{{#values}}
{{#comment}}
# {{{.}}}
{{/comment}}
{{#option}}
{{{option}}}={{{value}}}
{{/option}}
{{/values}}
{{/rootwrap_config}}
{{/cinder}}