From 090fd1df3bf46ce24c2652bb229542a9746a3831 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 13 Jun 2018 21:52:57 +0100 Subject: [PATCH] postdetails was not generating a new file. Removing any existing file --- lgsm/functions/command_postdetails.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lgsm/functions/command_postdetails.sh b/lgsm/functions/command_postdetails.sh index 9bd635086..0ef39ce54 100644 --- a/lgsm/functions/command_postdetails.sh +++ b/lgsm/functions/command_postdetails.sh @@ -42,6 +42,11 @@ fn_bad_postdetailslog() { core_exit.sh } +# Remove any existing postdetails.log file +if [ -f "${postdetailslog}" ]; then + rm -f "${postdetailslog}" +fi + # Rather than a one-pass sed parser, default to using a temporary directory if [ -n "${alertflag}" ]; then postdetailslog="${alertlog}"