Files
bitnet-s9pk/scripts/config_get.sh
2026-05-12 22:31:18 +00:00

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