From 3604c5d8a87fd7f38ff88657f16683d175b49311 Mon Sep 17 00:00:00 2001 From: Louwrentius Date: Sun, 11 Jan 2009 19:37:44 +0000 Subject: [PATCH] An informational message is displayed about the job log directory --- trunk/ppss.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/trunk/ppss.sh b/trunk/ppss.sh index 30ac887..66c94b1 100755 --- a/trunk/ppss.sh +++ b/trunk/ppss.sh @@ -248,7 +248,10 @@ init_vars () { if [ ! -e "$JOB_LOG_DIR" ] then + log INFO "Job log directory $JOB_lOG_DIR does not exist. Creating." mkdir "$JOB_LOG_DIR" + else + log INFO "Job log directory $JOB_LOG_DIR exists, if it contains logs for items, these items will be skiped." fi }