21 lines
698 B
Bash
21 lines
698 B
Bash
#!/usr/bin/env bash
|
|
set -e # Stop the script on errors
|
|
|
|
echo "🔹 Starting Newt inside Home Assistant OS..."
|
|
|
|
# Load configuration values
|
|
PANGOLIN_ENDPOINT=${PANGOLIN_ENDPOINT:-"https://dash.opland.net"}
|
|
NEWT_ID=${NEWT_ID:-"ru32vsg8ls5lx93"}
|
|
NEWT_SECRET=${NEWT_SECRET:-"5rbqgpc292989uk9kz52hmypoyz6u9jf7k670fqja8p4un8o"}
|
|
|
|
echo "✅ Configuration Loaded:"
|
|
echo " PANGOLIN_ENDPOINT=$PANGOLIN_ENDPOINT"
|
|
echo " NEWT_ID=$NEWT_ID"
|
|
echo " NEWT_SECRET=$NEWT_SECRET"
|
|
|
|
# Run Newt inside the add-on container
|
|
echo "🔹 Running Newt..."
|
|
/usr/bin/newt --id "$NEWT_ID" --secret "$NEWT_SECRET" --endpoint "$PANGOLIN_ENDPOINT" &
|
|
|
|
echo "✅ Newt is running!"
|
|
exec tail -f /dev/null # Keep the add-on running
|