52e7e478e4
Synology kit-connect (SPK): - wizard.sh — one-button Keylink IT fleet setup (auto-runs on install) - www/index.html — dark-themed local dashboard (same design as busrouter) - bin/serve-dashboard.sh — busybox httpd on port 8089 with CGI endpoints - start-stop-status updated to manage dashboard alongside daemon - INFO updated: RT2600ac + RT6600ax compatibility noted - postinst now runs wizard --auto for first-time setup GL kit-connect (OpenWrt ipk): - Makefile — DEPENDS: +curl +openssh-client +tailscale - procd init — USE_PROCD=1, respawn with 5s delay - connect-daemon.sh — Tailscale + reverse SSH (same as Synology version) - connect-wizard.sh — one-button setup, idempotent, UCI config - connect-register.sh — standalone hub registration - www/kitconnect/index.html — dark-themed dashboard with wizard button - www/kitconnect/wizard.cgi — web-triggered wizard endpoint - UCI config at /etc/config/kitconnect Both platforms share: same hub protocol, same Tailscale key, same port pool. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
40 lines
1.5 KiB
Bash
Executable File
40 lines
1.5 KiB
Bash
Executable File
#!/bin/sh
|
|
# kit-connect postinst — run setup wizard, register with hub, set up config.
|
|
# Idempotent — safe to run on upgrades too.
|
|
|
|
PKG_DIR="/var/packages/kit-connect/target"
|
|
LOG_TAG="kit-connect"
|
|
|
|
log() { logger -t "$LOG_TAG" -p local0.warn "$*"; }
|
|
|
|
mkdir -p /etc/kit-connect /etc/busrouter "$PKG_DIR/var"
|
|
|
|
# Make scripts and wizard executable
|
|
chmod +x "$PKG_DIR/wizard.sh" 2>/dev/null || true
|
|
chmod +x "$PKG_DIR/bin/serve-dashboard.sh" 2>/dev/null || true
|
|
chmod 600 "$PKG_DIR/bin/connect_id_ed25519" 2>/dev/null || true
|
|
|
|
# Run the Keylink IT setup wizard (non-interactive)
|
|
# This detects device ID, writes config, registers with hub, starts Tailscale.
|
|
if [ -x "$PKG_DIR/wizard.sh" ]; then
|
|
log "Running Keylink IT fleet setup wizard..."
|
|
"$PKG_DIR/wizard.sh" --auto 2>&1 | while read -r line; do log "$line"; done
|
|
else
|
|
# Fallback: minimal config
|
|
DEVICE_ID=$(cat /etc/busrouter/device-id 2>/dev/null || hostname 2>/dev/null || echo "unknown")
|
|
echo "$DEVICE_ID" > /etc/busrouter/device-id
|
|
|
|
CONF="/etc/kit-connect/connect.conf"
|
|
if [ ! -f "$CONF" ]; then
|
|
cp "$PKG_DIR/conf/connect.conf" "$CONF" 2>/dev/null || touch "$CONF"
|
|
fi
|
|
sed -i "s/^DEVICE_ID=.*/DEVICE_ID=${DEVICE_ID}/" "$CONF" 2>/dev/null
|
|
sed -i "s/^TAILSCALE_HOSTNAME=.*/TAILSCALE_HOSTNAME=${DEVICE_ID}/" "$CONF" 2>/dev/null
|
|
|
|
# Try hub registration
|
|
curl -s --connect-timeout 10 "http://162.243.83.36:8080/api/register/${DEVICE_ID}" 2>/dev/null || true
|
|
fi
|
|
|
|
log "postinst complete — device_id=$(cat /etc/busrouter/device-id 2>/dev/null || echo unknown)"
|
|
exit 0
|