fix the stream on http://querfunk.ffka:8000/qfhi
This commit is contained in:
parent
6aab02cfc1
commit
d2f8592dae
2 changed files with 11 additions and 6 deletions
27
install
27
install
|
@ -1,27 +0,0 @@
|
|||
#!/bin/sh
|
||||
ffka_querfunk_mgmt=2a03:2260:a:b:ea94:f6ff:fea1:98f6
|
||||
|
||||
if ! ping6 -c1 $ffka_querfunk_mgmt &>/dev/null; then
|
||||
echo 'ffka-querfunk is offline'
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# stream setup
|
||||
ssh root@$ffka_querfunk_mgmt "sh -c 'opkg update && opkg install socat'"
|
||||
scp assets/zz_custom root@[$ffka_querfunk_mgmt]:/etc/init.d/
|
||||
ssh root@$ffka_querfunk_mgmt "/etc/init.d/zz_custom enable"
|
||||
|
||||
# http://querfunk.ffka
|
||||
scp assets/index.html root@[$ffka_querfunk_mgmt]:/lib/gluon/status-page/www/
|
||||
|
||||
|
||||
ssh root@$ffka_querfunk_mgmt "reboot"
|
||||
|
||||
echo -n "Waiting for ffka-querfunk to come online after rebooting"
|
||||
sleep 3
|
||||
ffka_querfunk=2a03:2260:a:b::1:66
|
||||
while ! ping6 -c1 $ffka_querfunk &>/dev/null; do
|
||||
echo -n "."
|
||||
sleep 1
|
||||
done
|
||||
echo
|
Reference in a new issue