mirror of
https://github.com/gesellix/Bose-SoundTouch.git
synced 2026-08-18 00:26:29 +00:00
42 lines
1.3 KiB
Bash
42 lines
1.3 KiB
Bash
#!/bin/bash
|
|
set -eo pipefail
|
|
|
|
VERSION=${VERSION:-0.73.0}
|
|
GH_REPO=${GH_REPO:-gesellix/Bose-SoundTouch}
|
|
BINARY_URL=${BINARY_URL:-https://github.com/$GH_REPO/releases/download/v$VERSION/soundtouch-service-v$VERSION-linux-armv7}
|
|
INIT_SCRIPT_URL=${INIT_SCRIPT_URL:-https://raw.githubusercontent.com/$GH_REPO/v$VERSION/scripts/on-device-install/aftertouch}
|
|
|
|
rm -rf /tmp/aftertouch || true
|
|
|
|
echo "Installing Aftertouch $VERSION ..."
|
|
mkdir -p /opt/aftertouch
|
|
curl \
|
|
-sSL \
|
|
-o /tmp/aftertouch/binary \
|
|
--fail \
|
|
"$BINARY_URL"
|
|
|
|
mv /tmp/aftertouch/binary /opt/aftertouch/aftertouch-service
|
|
chmod +x /opt/aftertouch/aftertouch-service
|
|
|
|
echo "Creating init script..."
|
|
curl \
|
|
-sSL \
|
|
-o /tmp/aftertouch/init-script \
|
|
--fail \
|
|
"$INIT_SCRIPT_URL"
|
|
|
|
mv /tmp/aftertouch/init-script /etc/init.d/aftertouch
|
|
chmod +x /etc/init.d/aftertouch
|
|
update-rc.d aftertouch defaults
|
|
|
|
echo "Installation complete. Running initial startup to accelerate future startups..."
|
|
/etc/init.d/aftertouch start
|
|
|
|
/etc/init.d/aftertouch status
|
|
|
|
echo "Installation complete. Aftertouch $VERSION is now running on your device."
|
|
echo "You can try to connect to at http://<your-device-ip>:8000 ."
|
|
echo "If the connection fails, reconnect ssh with port forwarding like:"
|
|
echo "ssh -L 8000:localhost:8000 root@<IP_ADDRESS_OF_SPEAKER>"
|