~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/simple_user_policy/docs/index.rst

  • Committer: Mark Atwood
  • Date: 2011-09-13 19:54:55 UTC
  • mfrom: (2397.1.3 plugin-docs)
  • Revision ID: me@mark.atwood.name-20110913195455-3bk3locm85m4jimp
mergeĀ lp:~daniel-nichter/drizzle/plugin-docs

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
User-based Authorization
 
2
========================
 
3
 
 
4
:program:`simple_user_policy` is an :doc:`/administration/authorization` plugin
 
5
that only allows users to access schemas with their exact name.  For example,
 
6
user "robert" can only access schema "robert".  User "root" can access all
 
7
schemas.  The plugin does not require a policy file or any configuration;
 
8
the policiy is as simple as described here.
 
9
 
 
10
.. _simple_user_policy_loading:
 
11
 
 
12
Loading
 
13
-------
 
14
 
 
15
To load this plugin, start :program:`drizzled` with::
 
16
 
 
17
   --plugin-add=simple_user_policy
 
18
 
 
19
.. seealso:: :doc:`/options` for more information about adding and removing plugins.
 
20
 
 
21
Examples
 
22
--------
 
23
 
 
24
Sorry, there are no examples for this plugin.
 
25
 
 
26
.. _simple_user_policy_authors:
 
27
 
 
28
Authors
 
29
-------
 
30
 
 
31
Monty Taylor
 
32
 
 
33
.. _simple_user_policy_version:
 
34
 
 
35
Version
 
36
-------
 
37
 
 
38
This documentation applies to **simple_user_policy 1.0**.
 
39
 
 
40
To see which version of the plugin a Drizzle server is running, execute:
 
41
 
 
42
.. code-block:: mysql
 
43
 
 
44
   SELECT MODULE_VERSION FROM DATA_DICTIONARY.MODULES WHERE MODULE_NAME='simple_user_policy'
 
45
 
 
46
Changelog
 
47
---------
 
48
 
 
49
v1.0
 
50
^^^^
 
51
* First release.