You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
390 B
27 lines
390 B
5 years ago
|
#!/bin/sh
|
||
|
|
||
|
OPTIONS=$(cat <<'END_HEREDOC'
|
||
|
[
|
||
|
["test", "Test DB"],
|
||
|
["acc", "Acc DB"],
|
||
|
["prod", "Prod DB"]
|
||
|
]
|
||
|
END_HEREDOC
|
||
|
)
|
||
|
|
||
|
cat << END_TEXT
|
||
|
[
|
||
|
{
|
||
|
"name": "target_db",
|
||
|
"title": "Database to import to",
|
||
|
"type": "radio",
|
||
|
"options": $OPTIONS
|
||
|
},
|
||
|
{
|
||
|
"name": "sql_file",
|
||
|
"title": "SQL file",
|
||
|
"type": "file"
|
||
|
}
|
||
|
]
|
||
|
END_TEXT
|