From 37ab949c7c204e0c867fda40f023d2e4ec06e405 Mon Sep 17 00:00:00 2001
From: Michael Stapelberg <michael@stapelberg.de>
Date: Mon, 13 Feb 2012 23:34:37 +0000
Subject: [PATCH 2/2] make indentation consistent

---
 debian/postinst |   10 ++++------
 debian/postrm   |   17 ++++++++---------
 debian/prerm    |    3 +--
 3 files changed, 13 insertions(+), 17 deletions(-)

diff --git a/debian/postinst b/debian/postinst
index 0a6cfd9..26511ea 100644
--- a/debian/postinst
+++ b/debian/postinst
@@ -66,12 +66,10 @@ fi
 
 # for systemd, enable and start cron
 if [ "$1" = "configure" ]; then
-       if [ -x /bin/systemctl ]; then
-	       /bin/systemctl --quiet enable cron.service >/dev/null 2>&1 || true
-	       /bin/systemctl start cron.service >/dev/null 2>&1 || true
-       fi
+    if [ -x /bin/systemctl ]; then
+        /bin/systemctl --quiet enable cron.service >/dev/null 2>&1 || true
+        /bin/systemctl start cron.service >/dev/null 2>&1 || true
+    fi
 fi
 
-
-
 #DEBHELPER#
diff --git a/debian/postrm b/debian/postrm
index cac60a3..3e28016 100644
--- a/debian/postrm
+++ b/debian/postrm
@@ -9,16 +9,15 @@ if [ "$1" = "purge" ]; then
 fi
 
 if [ -x /bin/systemctl ]; then
-       # systemd: reload the daemon
-       /bin/systemctl daemon-reload >/dev/null 2>&1 || true
+    # systemd: reload the daemon
+    /bin/systemctl daemon-reload >/dev/null 2>&1 || true
 
-       case "$1" in
-           upgrade)
-               # systemd: start the new version of cron
-               /bin/systemctl restart cron.service >/dev/null 2>&1 || true
-           ;;
-        esac
+    case "$1" in
+        upgrade)
+            # systemd: start the new version of cron
+            /bin/systemctl restart cron.service >/dev/null 2>&1 || true
+        ;;
+     esac
 fi
 
-
 #DEBHELPER#
diff --git a/debian/prerm b/debian/prerm
index 39cbd5a..a4add4d 100644
--- a/debian/prerm
+++ b/debian/prerm
@@ -2,7 +2,7 @@
 set -e
 
 if [ -x /bin/systemctl ]; then
-# systemd: On uninstall (not upgrade), disable and stop the units
+    # systemd: On uninstall (not upgrade), disable and stop the units
     case "$1" in
        remove|upgrade|deconfigure)
             /bin/systemctl --no-reload --quiet disable cron.service >/dev/null 2>&1 || true
@@ -11,6 +11,5 @@ if [ -x /bin/systemctl ]; then
        esac
 fi
 
-
 #DEBHELPER#
 
-- 
1.7.5.4

