Browse code

Fix Q_PLUGIN_EXTRA_CONF_FILES usage comment

Related bug #1469434 fixed the usage comments for
Q_PLUGIN_EXTRA_CONF_FILES. However that change didn't
make it into neutron-legacy. This patch updates the comments
in neutron-legacy to reflect proper assignment of
Q_PLUGIN_EXTRA_CONF_FILES as well indicate
Q_PLUGIN_CONF_PATH is required when using extra conf files.

Change-Id: I447f1158d333ac4a35c4903a509146a62d93b272
Related-Bug: #1469434
Closes-Bug: #1542282

Boden R authored on 2016/04/16 01:56:09
Showing 1 changed files
... ...
@@ -946,10 +946,11 @@ function _configure_neutron_common {
946 946
 
947 947
     # Set plugin-specific variables ``Q_DB_NAME``, ``Q_PLUGIN_CLASS``.
948 948
     # For main plugin config file, set ``Q_PLUGIN_CONF_PATH``, ``Q_PLUGIN_CONF_FILENAME``.
949
-    # For addition plugin config files, set ``Q_PLUGIN_EXTRA_CONF_PATH``,
949
+    # For addition plugin config files, set ``Q_PLUGIN_EXTRA_CONF_PATH`` and
950 950
     # ``Q_PLUGIN_EXTRA_CONF_FILES``.  For example:
951 951
     #
952
-    #    ``Q_PLUGIN_EXTRA_CONF_FILES=(file1, file2)``
952
+    #    ``Q_PLUGIN_CONF_PATH=/path/to/plugins``
953
+    #    ``Q_PLUGIN_EXTRA_CONF_FILES=(file1 file2)``
953 954
     neutron_plugin_configure_common
954 955
 
955 956
     if [[ "$Q_PLUGIN_CONF_PATH" == '' || "$Q_PLUGIN_CONF_FILENAME" == '' || "$Q_PLUGIN_CLASS" == '' ]]; then