]> git.mxchange.org Git - quix0rs-apt-p2p.git/blobdiff - debian/postrm
Set a new peer's ranking values so they don't get an unfair advantage.
[quix0rs-apt-p2p.git] / debian / postrm
index 8ff06f8c7009c964daeba1ed05035f9022be8c9f..c2ea95746da5940adfd1d61458b5b3f60e0f85e4 100644 (file)
@@ -1,5 +1,5 @@
 #! /bin/sh
-# postrm script for apt-dht
+# postrm script for apt-p2p
 #
 # see: dh_installdeb(1)
 
@@ -17,21 +17,21 @@ set -e
 # for details, see http://www.debian.org/doc/debian-policy/ or
 # the debian-policy package
 
+# dh_installdeb will replace this with shell code automatically
+# generated by other debhelper scripts.
+
+#DEBHELPER#
+
 if test "$1" = "purge"; then
   # Remove the logs
-  rm -rf /var/log/apt-dht.log*
+  rm -rf /var/log/apt-p2p.log*
   
-  echo Purging apt-dht cache directory
-  rm -rf /var/cache/apt-dht
+  echo Purging apt-p2p cache directory
+  rm -rf /var/cache/apt-p2p
 
-  if id aptdht >/dev/null; then
-    deluser aptdht
+  if id apt-p2p >/dev/null; then
+    deluser apt-p2p
   fi
 fi
 
-# dh_installdeb will replace this with shell code automatically
-# generated by other debhelper scripts.
-
-#DEBHELPER#
-
 exit 0