Mercurial > repos > other > Puppet
annotate modules/mysql/tasks/export.json @ 333:8d8dd5c4ec0e
Check sender access earlier to allow whitelisting
This is important for some hosts who send from a domain that
doesn't have DNS, but that we want to allow
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Sun, 15 Mar 2020 16:51:56 +0000 |
parents | 48d3a1948e4d |
children |
rev | line source |
---|---|
244 | 1 { |
2 "description": "Allows you to backup your database to local file.", | |
3 "input_method": "stdin", | |
4 "parameters": { | |
5 "database": { | |
6 "description": "Database to connect to", | |
7 "type": "Optional[String[1]]" | |
8 }, | |
9 "user": { | |
10 "description": "The user", | |
11 "type": "Optional[String[1]]" | |
12 }, | |
13 "password": { | |
14 "description": "The password", | |
15 "type": "Optional[String[1]]" | |
16 }, | |
17 "file": { | |
18 "description": "Path to file you want backup to", | |
19 "type": "String[1]" | |
20 } | |
21 } | |
22 } |