This commit is contained in:
2024-02-13 21:50:03 -06:00
parent 2c43445074
commit 550dc717fe
3 changed files with 3 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env bash #!/usr/bin/env bash
VERS='2.6.31-02112024' VERS='2.6.32-02132024'
noheader=' update service dailytemp confsync -r -report ' noheader=' update service dailytemp confsync -r -report '

View File

@@ -521,7 +521,7 @@ CHECKPOWER(){
fi fi
fi fi
if [ ${REPORT} -eq 0 ]; then if [ ${REPORT} -eq 0 ]; then
[ "${avgdays}" != "" ] && end=`date +%s`; runtime=$((end-start)); echo -e "${idsCL[Default]}runtime: ${runtime}s" [ "${avgdays}" != "" ] && [ ${REPORT} -eq 0 ] && end=`date +%s`; runtime=$((end-start)); echo -e "${idsCL[Default]}runtime: ${runtime}s"
[ "${PW_ACTION}" != "" ] && echo -e "${idsCL[Default]}" [ "${PW_ACTION}" != "" ] && echo -e "${idsCL[Default]}"
fi fi
} }

View File

@@ -218,7 +218,7 @@ CHECKTEMP(){
done done
fi fi
rm -f ${PW_TMPFOLDER}/.fanspeed.* rm -f ${PW_TMPFOLDER}/.fanspeed.*
# [ ${REPORT} -eq 0 ] && end=`date +%s`; runtime=$((end-start)); echo -e "${idsCL[Default]}runtime: ${runtime}s" [ "${avgdays}" != "" ] && [ ${REPORT} -eq 0 ] && end=`date +%s`; runtime=$((end-start)); echo -e "${idsCL[Default]}runtime: ${runtime}s"
[ "${PW_ACTION}" != "" ] && echo -e "${idsCL[Default]}" [ "${PW_ACTION}" != "" ] && echo -e "${idsCL[Default]}"
} }