From e4377f7532fcc11d346930cb7585c3fd89590c39 Mon Sep 17 00:00:00 2001 From: Nico Schottelius Date: Fri, 25 Feb 2011 00:58:38 +0100 Subject: [PATCH] remove debug Signed-off-by: Nico Schottelius --- conf/type/__file/explorer/md5sum | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/conf/type/__file/explorer/md5sum b/conf/type/__file/explorer/md5sum index ddfcc0f3..f755c769 100755 --- a/conf/type/__file/explorer/md5sum +++ b/conf/type/__file/explorer/md5sum @@ -21,12 +21,6 @@ # Retrieve the md5sum of a file to be created, if it is already existing. # - -exec 3>&1 -exec 1>&2 - -set -x - if [ -f "$__object/parameter/destination" ]; then destination="$(cat "$__object/parameter/destination")" else @@ -35,7 +29,7 @@ fi # No output if file does not exist - does definitely not match the md5sum :-) if [ -e "$destination" ]; then - md5sum "$destination" >&3 + md5sum "$destination" else - echo "NO FILE NOT FOUND, NO CHECKSUM CALCULATED." >&3 + echo "NO FILE NOT FOUND, NO CHECKSUM CALCULATED." fi