diff --git a/cdist/conf/type/__file/explorer/cksum b/cdist/conf/type/__file/explorer/cksum
index dcad99ba..335e4e7a 100755
--- a/cdist/conf/type/__file/explorer/cksum
+++ b/cdist/conf/type/__file/explorer/cksum
@@ -1,6 +1,6 @@
 #!/bin/sh
 #
-# 2011 Nico Schottelius (nico-cdist at schottelius.org)
+# 2011-2012 Nico Schottelius (nico-cdist at schottelius.org)
 #
 # This file is part of cdist.
 #
@@ -24,11 +24,11 @@
 destination="/$__object_id"
 
 if [ -e "$destination" ]; then
-   if [ -f  "$destination" ]; then
-      cksum < "$destination"
-   else
-      echo "NO REGULAR FILE"
-   fi
+    if [ -f  "$destination" ]; then
+        cksum < "$destination"
+    else
+        echo "NO REGULAR FILE"
+    fi
 else
-   echo "NO FILE FOUND, NO CHECKSUM CALCULATED."
+    echo "NO FILE FOUND, NO CHECKSUM CALCULATED."
 fi
diff --git a/cdist/conf/type/__file/explorer/exists b/cdist/conf/type/__file/explorer/exists
index f8b85671..c319cb5d 100755
--- a/cdist/conf/type/__file/explorer/exists
+++ b/cdist/conf/type/__file/explorer/exists
@@ -1,6 +1,6 @@
 #!/bin/sh
 #
-# 2011 Nico Schottelius (nico-cdist at schottelius.org)
+# 2011-2012 Nico Schottelius (nico-cdist at schottelius.org)
 #
 # This file is part of cdist.
 #
@@ -24,7 +24,7 @@
 destination="/$__object_id"
 
 if [ -e "$destination" ]; then
-   echo yes
+    echo yes
 else
-   echo no
+    echo no
 fi