Masking: Change "rules_file" parameter to "rules"

The firewall filter and the cache have similar rules files and
they use "rules". To be consistent, the masking filter should
use "rules" as well.
This commit is contained in:
Johan Wikman
2017-01-19 14:57:20 +02:00
parent ead0d4fe3e
commit 47d21bd519
4 changed files with 20 additions and 20 deletions

View File

@ -73,7 +73,7 @@ configuration setup.
[Mask-SSN]
type=filter
module=masking
rules_file=...
rules=...
[SomeService]
type=service
@ -83,9 +83,9 @@ filters=Mask-SSN
## Filter Parameters
The masking filter has one mandatory parameter - `rules_file`.
The masking filter has one mandatory parameter - `rules`.
#### `rules_file`
#### `rules`
Specifies the path of the file where the masking rules are stored.
A relative path is interpreted relative to the _module configuration directory_
@ -93,7 +93,7 @@ of MariaDB MaxScale. The default module configuration directory is
_/etc/maxscale.modules.d_.
```
rules_file=/path/to/rules-file
rules=/path/to/rules-file
```
#### `warn_type_mismatch`