Used sequpgrade.sh to upgrade existing seqs

This commit is contained in:
2022-05-29 20:58:23 +02:00
parent 10ee4198f0
commit 6214493c18
57 changed files with 802 additions and 806 deletions

View File

@@ -32,10 +32,10 @@ WSUBDIR="${WDIR}/${toolName}"
#}
step_1_info() { echo "Install prerequisits for $toolName"; }
step_1_alias() { ALIAS="install"; }
step_1_alias() { echo "install"; }
step_1() {
local aptOpt=
if [ $QUIET != 0 ] ; then
if quiet ; then
aptOpt="-y"
fi
#exe apt update
@@ -59,7 +59,7 @@ step_3() {
}
step_20_info() { echo "List $toolName prerequisits"; }
step_20_alias() { ALIAS="listdeps"; }
step_20_alias() { echo "listdeps"; }
step_20() {
echo " [I] $toolName prerequisits:"
echo "$toolDeps $toolDeps2"
@@ -79,7 +79,7 @@ step_32() {
systemdConfigLoc="/etc/systemd/system"
step_34_info() { echo "Downgrade $toolName jabber dependencies (callbackIQ -> FHEM crash)"; }
step_34_alias() { ALIAS="downgrade_xmpp"; }
step_34_alias() { echo "downgrade_xmpp"; }
step_34() {
if [ ! -f $libnetDown ]; then
exe wget "$libnetUrl" -O "$libnetDown"
@@ -91,7 +91,7 @@ step_34() {
fi
local aptOption=
if [ $QUIET -ne 0 ] ; then
if quiet ; then
aptOption="-y"
else
aptOption=""
@@ -136,7 +136,7 @@ Pin: version 1.23-2
Pin-Priority: 1000"
step_37_info() { echo "Download latest speedtest python script"; }
step_37_alias() { ALIAS="speedtestdownload"; }
step_37_alias() { echo "speedtestdownload"; }
step_37() {
local lSpeedPath="/usr/local/bin/speedtest-cli"
exe wget -O "$lSpeedPath" https://raw.githubusercontent.com/sivel/speedtest-cli/master/speedtest.py
@@ -144,11 +144,11 @@ step_37() {
}
step_40_info() { echo "Execute fhem [COMMAND]"; }
step_40_alias() { ALIAS="exe"; }
step_40_alias() { echo "exe"; }
step_40() {
shift
exe perl "${toolHome}/fhem.pl" 7072 "$1"
}
VERSION_SEQREV=11
readonly sqr_minVersion=16
. /usr/local/bin/sequencer.sh