From: Steven Baltakatei Sandoval Date: Tue, 14 Jul 2020 02:44:05 +0000 (+0000) Subject: debug(bklog):Fix SECONDS advancing X-Git-Url: https://zdv2.bktei.com/gitweb/EVA-2020-02.git/commitdiff_plain/a4823900b419f0fd59ee64c791243470f88d5cb8 debug(bklog):Fix SECONDS advancing --- diff --git a/exec/bklog b/exec/bklog index 188910d..45e6996 100644 --- a/exec/bklog +++ b/exec/bklog @@ -11,7 +11,7 @@ dirTmpDefault="/dev/shm"; # Default parent of working directory # Script Metadata scriptName="bklog"; # Define basename of script file. -scriptVersion="0.1.26"; # Define version of script. +scriptVersion="0.1.27"; # Define version of script. scriptURL="https://gitlab.com/baltakatei/ninfacyzga-01"; # Define wesite hosting this script. scriptTimeStart="$(date +%Y%m%dT%H%M%S.%N)"; # YYYYmmddTHHMMSS.NNNNNNNNN scriptHostname=$(hostname); # Save hostname of system running this script. @@ -1410,7 +1410,7 @@ main() { ### Advance SECONDS the remainder seconds for dividend timeUntilNextDay, divisor bufferTTL if [[ "$(timeUntilNextDay)" -gt "$bufferTTL" ]]; then vbm "DEBUG :$fn:SECONDS currently :$SECONDS"; - SECONDS="$(( $(timeUntilNextDay) % bufferTTL ))" && \ + SECONDS="$(( bufferTTL - ($(timeUntilNextDay) % bufferTTL) ))" && \ vbm "DEBUG :$fn:SECONDS advanced to:$SECONDS"; vbm "DEBUG :$fn:current time:$(date --iso-8601=seconds)"; fi;