test(bklog):Uncomment cleanup line since script functional
authorSteven Baltakatei Sandoval <baltakatei@gmail.com>
Sat, 11 Jul 2020 08:02:18 +0000 (08:02 +0000)
committerSteven Baltakatei Sandoval <baltakatei@gmail.com>
Sat, 11 Jul 2020 08:02:18 +0000 (08:02 +0000)
Use of appendFileTar() to append a file to a tar using the file's same
location as a temporary working file caused problems. More direct
'eval' command string formation and 'tar --append' usage solved empty
file problem.

exec/bklog

index ecc4e85c9f92d6c4fa007571adfc27a9292bb3e3..54e2f7e4e64822e0c45251e6e7d01cff4ae39b6e 100644 (file)
@@ -11,7 +11,7 @@ dirTmpDefault="/dev/shm"; # Default parent of working directory
 
 # Script Metadata
 scriptName="bklog";             # Define basename of script file.
-scriptVersion="0.1.21-debug";          # Define version of script.
+scriptVersion="0.1.22";          # 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.
@@ -1280,8 +1280,7 @@ magicProcessWriteBuffer() {
     
     # Remove secured chunks from dir_tmp
     for path in "${pathouts[@]}"; do
-       # rm "$path" && vbm "STATUS:$fn:Removed:$path";
-       :
+       rm "$path" && vbm "STATUS:$fn:Removed:$path";
     done;
     
     vbm "STATUS:$fn:Finished magicProcessWriteBuffer().";