Rename project to apt-p2p.
[quix0rs-apt-p2p.git] / debian / postinst
index 636f90f207e877bea04becb2b260098e2c208411..eb87fd291545b97e6c2cffbaf58a73c452f98869 100644 (file)
@@ -1,5 +1,5 @@
 #! /bin/sh
-# postinst script for apt-dht
+# postinst script for apt-p2p
 #
 # see: dh_installdeb(1)
 
@@ -25,17 +25,17 @@ set -e
 
 case "$1" in
     configure)
-               if ! getent passwd aptdht >/dev/null; then
+               if ! getent passwd aptp2p >/dev/null; then
                        adduser --quiet --system --no-create-home \
-                                       --home /var/cache/apt-dht --disabled-password \
+                                       --home /var/cache/apt-p2p --disabled-password \
                                        --disabled-login --shell /bin/false --ingroup nogroup \
-                                       aptdht
+                                       aptp2p
                fi
                
-               touch /var/log/apt-dht.log
-               chown aptdht:adm /var/log/apt-dht.log
-               mkdir -p /var/cache/apt-dht
-               chown -R aptdht:adm /var/cache/apt-dht
+               touch /var/log/apt-p2p.log
+               chown aptp2p:adm /var/log/apt-p2p.log
+               mkdir -p /var/cache/apt-p2p
+               chown -R aptp2p:adm /var/cache/apt-p2p
     ;;
 
     abort-upgrade|abort-remove|abort-deconfigure)