summaryrefslogtreecommitdiffstats
path: root/debian/util-linux.postrm
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--debian/util-linux.postrm16
1 files changed, 16 insertions, 0 deletions
diff --git a/debian/util-linux.postrm b/debian/util-linux.postrm
new file mode 100644
index 0000000..6a5c53c
--- /dev/null
+++ b/debian/util-linux.postrm
@@ -0,0 +1,16 @@
+#!/bin/sh
+set -e
+
+case "$1" in
+ remove)
+ ;;
+
+ purge)
+ rm -f /etc/adjtime
+ ;;
+
+ *)
+ ;;
+esac
+
+#DEBHELPER#