summaryrefslogtreecommitdiffstats
path: root/debian/apt.postrm
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 09:00:48 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 09:00:48 +0000
commit3d8888c70266f612d1f427a112cc1e2155c19584 (patch)
tree3f799cdc23480c7afe9c5ff6632b545da1f17dec /debian/apt.postrm
parentAdding upstream version 2.6.1. (diff)
downloadapt-3d8888c70266f612d1f427a112cc1e2155c19584.tar.xz
apt-3d8888c70266f612d1f427a112cc1e2155c19584.zip
Adding debian version 2.6.1.debian/2.6.1debian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/apt.postrm')
-rwxr-xr-xdebian/apt.postrm22
1 files changed, 22 insertions, 0 deletions
diff --git a/debian/apt.postrm b/debian/apt.postrm
new file mode 100755
index 0000000..ae1e18d
--- /dev/null
+++ b/debian/apt.postrm
@@ -0,0 +1,22 @@
+#! /bin/sh
+
+# apt postrm
+# Copyright (C) 1998, Ben Gertzfield <che@debian.org>
+
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+
+set -e
+
+#DEBHELPER#
+
+case "$1" in
+ remove)
+ ;;
+ purge)
+ rm -rf /var/cache/apt
+ rm -rf /var/lib/apt
+esac
+