Skip to content

Commit a655917

Browse files
committed
Fixing the improved update and downloadtofile
1 parent 9e00f72 commit a655917

File tree

3 files changed

+41
-36
lines changed

3 files changed

+41
-36
lines changed

ZSST_Linux/share/support_tool/actions/update.sh

+5-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,11 @@ function installLatest
1414
mkdir $ZCE_PREFIX/tmp/STlatest
1515
cd $ZCE_PREFIX/tmp/STlatest || exit 1
1616

17-
downloadtofile "https://github.com/zendtech/zs-support-tool/releases/latest/download/SupportToolMulti_LinuxSFX.tar.gz" ZSST_latest.tgz
17+
if ! downloadtofile "https://github.com/zendtech/zs-support-tool/releases/latest/download/SupportToolMulti_LinuxSFX.tar.gz" ZSST_latest.tgz; then
18+
echo -e "\n\nDownload from GitHub failed. You may find a more detailed error report above.\n"
19+
rm -rf "$ZCE_PREFIX/tmp/STlatest"
20+
exit 1
21+
fi
1822

1923
tar xf ZSST_latest.tgz
2024
./SupportToolSFX.bin

ZSST_Linux/share/support_tool/snapshot.sh

+7-7
Original file line numberDiff line numberDiff line change
@@ -24,18 +24,18 @@ function otherrepo
2424
revert="otherrepo $1 revertBAK"
2525
}
2626

27-
# downloadtofile "URL" "outpit file"
27+
# downloadtofile "URL" "output file"
2828
function downloadtofile
2929
{
3030

31-
if command -v wget > /dev/null 2>&1 ;then
32-
wget -O $2 $1 2>/dev/null
31+
if command -v wget &> /dev/null 2>&1 ;then
32+
wget -O $2 $1
3333

34-
elif command -v aria2c > /dev/null 2>&1 ;then
35-
aria2c -j 1 -s 1 -o $2 $1 > /dev/null
34+
elif command -v aria2c &> /dev/null 2>&1 ;then
35+
aria2c -j 1 -s 1 -o $2 $1
3636

37-
elif command -v curl > /dev/null 2>&1 ;then
38-
curl -sLo $2 $1
37+
elif command -v curl &> /dev/null 2>&1 ;then
38+
curl -Lo $2 $1
3939

4040
else
4141
echo "wget, aria2c or curl not found."

ZSST_Linux/share/support_tool/st_funcs.lib

+29-28
Original file line numberDiff line numberDiff line change
@@ -1,51 +1,52 @@
1-
1+
# logerror "message" "/detailed/log/file"
22
function logerror
33
{
4-
if [ $? -ne 0 ];then
5-
if [ ! -w ${ZEND_ERROR_LOG} ]; then ZEND_ERROR_LOG=/dev/stdout; fi
6-
echo "$ZSST_PLUGIN_NAME: $1 executed, return code was not 0." >> ${ZEND_ERROR_LOG}
4+
# the point of this part is logging to STDOUT in actions
5+
if [ -z ${ZEND_ERROR_LOG} ]; then
6+
ZEND_ERROR_LOG=/dev/stdout
7+
elif [ ! -w ${ZEND_ERROR_LOG} ]; then
8+
ZEND_ERROR_LOG=/dev/stdout
9+
fi
10+
11+
echo "$ZSST_PLUGIN_NAME: $1" >> ${ZEND_ERROR_LOG}
12+
if [ -r "$2" ]; then
13+
echo "------------- More Details -----------------------" >> ${ZEND_ERROR_LOG}
14+
cat "$2" >> ${ZEND_ERROR_LOG}
15+
echo "--------------------------------------------------" >> ${ZEND_ERROR_LOG}
16+
rm -f "$2"
717
fi
18+
819
}
920

1021

11-
# downloadtofile "URL" "outpit file"
22+
# downloadtofile "URL" "output file"
1223
function downloadtofile
1324
{
14-
if command -v wget > /dev/null 2>&1 ;then
15-
if wget -q --spider "$1"; then
16-
wget -O $2 $1 2>/dev/null
17-
logerror "wget $1"
18-
else
19-
# output for troubleshooting
20-
wget -nv --spider "$1"
25+
DL_LOG=/tmp/d0wnl0ad2F1L3.log
26+
27+
if command -v wget &> /dev/null ;then
28+
if ! wget -O $2 "$1" &> $DL_LOG ; then
29+
logerror "'wget $1' FAILED" $DL_LOG
2130
return 21
2231
fi
2332

24-
elif command -v aria2c > /dev/null 2>&1 ;then
25-
if aria2c -q --dry-run "$1"; then
26-
aria2c -j 1 -s 1 -o $2 $1 > /dev/null
27-
logerror "aria2c $1"
28-
else
29-
# output for troubleshooting
30-
aria2c -q -l - --log-level=warn --dry-run "$1"
33+
elif command -v aria2c &> /dev/null ;then
34+
if ! aria2c -j 1 -s 1 -o $2 "$1" &> $DL_LOG ; then
35+
logerror "'aria2c $1' FAILED" $DL_LOG
3136
return 22
3237
fi
3338

34-
elif command -v curl > /dev/null 2>&1 ;then
35-
if curl -fsLIo /dev/null "$1"; then
36-
curl -sLo $2 $1
37-
logerror "curl $1"
38-
else
39-
# output for troubleshooting
40-
curl -LI "$1"
39+
elif command -v curl &> /dev/null ;then
40+
if ! curl -Lo $2 "$1" &> $DL_LOG ; then
41+
logerror "'curl $1' FAILED" $DL_LOG
4142
return 23
4243
fi
4344

4445
else
45-
if [ ! -w ${ZEND_ERROR_LOG} ]; then ZEND_ERROR_LOG=/dev/stdout; fi
46-
echo "wget, aria2c or curl not found." >> ${ZEND_ERROR_LOG}
46+
logerror "wget, aria2c or curl not found."
4747
return 1
4848
fi
49+
rm -f $DL_LOG
4950
return 0
5051
}
5152

0 commit comments

Comments
 (0)