Mercurial > repos > other > Puppet
annotate modules/mysql/tasks/sql.json @ 443:c6c9a2cfcfbd
Update MySQL module
Fixes a problem with MariaDB and blank certificate paths
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Mon, 08 May 2023 11:48:41 +0100 |
parents | 48d3a1948e4d |
children |
rev | line source |
---|---|
244 | 1 { |
2 "description": "Allows you to execute arbitary SQL", | |
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 "sql": { | |
18 "description": "The SQL you want to execute", | |
19 "type": "String[1]" | |
20 } | |
21 } | |
22 } |