X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=debian%2Fpostrm;h=c2ea95746da5940adfd1d61458b5b3f60e0f85e4;hb=6573b9d12bf656557a584c6c1a469ba2e66ca2b9;hp=8ff06f8c7009c964daeba1ed05035f9022be8c9f;hpb=004b3242cd6b9933ea049039840f1071b0284ad8;p=quix0rs-apt-p2p.git diff --git a/debian/postrm b/debian/postrm index 8ff06f8..c2ea957 100644 --- a/debian/postrm +++ b/debian/postrm @@ -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