17 lines
288 B
Bash
Executable File
17 lines
288 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
# Return current configuration as JSON
|
|
cat <<EOF
|
|
{
|
|
"ssh-keys": {
|
|
"type": "textarea",
|
|
"name": "SSH Authorized Keys",
|
|
"description": "Paste your SSH public key(s) here, one per line",
|
|
"nullable": false,
|
|
"default": "",
|
|
"masked": false
|
|
}
|
|
}
|
|
EOF
|