]> git.mxchange.org Git - quix0rs-apt-p2p.git/blobdiff - debian/postrm
Consume ping errors so they aren't printed in the log.
[quix0rs-apt-p2p.git] / debian / postrm
index 8ff06f8c7009c964daeba1ed05035f9022be8c9f..fa48524ea87df8c5cdb1d3e9a543826573024c17 100644 (file)
@@ -1,5 +1,5 @@
 #! /bin/sh
-# postrm script for apt-dht
+# postrm script for apt-p2p
 #
 # see: dh_installdeb(1)
 
@@ -19,13 +19,13 @@ set -e
 
 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