2
0
Fork 0
This repository has been archived on 2019-12-19. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
ffka-querfunk/install-set-gluon-node-info

14 lines
520 B
Bash
Executable file

#!/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
ssh root@$ffka_querfunk_mgmt "uci set gluon-node-info.@location[0].latitude=49.006679
uci set gluon-node-info.@location[0].longitude=8.4073580
uci set gluon-node-info.@location[0].share_location=1
uci get gluon-node-info.@owner[0] || uci add gluon-node-info owner
uci set gluon-node-info.@owner[0].contact=neingeist@querfunk.de
uci commit gluon-node-info"