diff options
author | Chuck Bell <chuck.bell@oracle.com> | 2011-07-19 10:24:14 -0400 |
---|---|---|
committer | Chuck Bell <chuck.bell@oracle.com> | 2011-07-19 10:24:14 -0400 |
commit | d037148151936cc4a647be96ac4f86ec591c2982 (patch) | |
tree | ab09356723820b85f31e3422c7453320517c443a /plugin | |
parent | 6119cc2bba0604de317d86fb9919dc2a86404843 (diff) | |
download | mariadb-git-d037148151936cc4a647be96ac4f86ec591c2982.tar.gz |
WL#5710 : Enable and disable plugins (mysql_plugin)
This patch changes the plugin configuration file format to make it
easier to add new plugins and remove complexity. It also adds more
information when plugin configuration file reads fail.
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/daemon_example/daemon_example.ini | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/plugin/daemon_example/daemon_example.ini b/plugin/daemon_example/daemon_example.ini index 8d84456b635..7c6d4d1456e 100644 --- a/plugin/daemon_example/daemon_example.ini +++ b/plugin/daemon_example/daemon_example.ini @@ -1,6 +1,9 @@ # -# Plugin initialization file. Format using comma-separated values: -# name, libname, symbol, [symbol, ] -# Note: trailing comma is required. +# Plugin configuration file. Place the following on a separate line: # -daemon_example, libdaemon_example, daemon_example, +# library binary file name (without .so or .dll) +# component_name +# [component_name] - additional components in plugin +# +libdaemon_example +daemon_example |