Initial BitNet s9pk package with SSH access

This commit is contained in:
GERTY
2026-05-12 22:31:18 +00:00
commit 6e8a8f5b59
10 changed files with 429 additions and 0 deletions

12
scripts/config_set.sh Executable file
View File

@@ -0,0 +1,12 @@
#!/bin/bash
set -e
# Read config from stdin
SSH_KEYS=$(jq -r '.["ssh-keys"]' /dev/stdin)
# Save to persistent volume
mkdir -p /root/config
echo "$SSH_KEYS" > /root/config/authorized_keys
# Return success
echo "{}"