]> git.mxchange.org Git - quix0rs-apt-p2p.git/blobdiff - debian/postinst
Fix some documentation errors.
[quix0rs-apt-p2p.git] / debian / postinst
index eb87fd291545b97e6c2cffbaf58a73c452f98869..e167c41fc90bbe7b6473d83e6a94d64890f38366 100644 (file)
@@ -5,6 +5,8 @@
 
 set -e
 
+. /usr/share/debconf/confmodule
+
 # summary of how this script can be called:
 #        * <postinst> `configure' <most-recently-configured-version>
 #        * <old-postinst> `abort-upgrade' <new version>
@@ -25,17 +27,17 @@ set -e
 
 case "$1" in
     configure)
-               if ! getent passwd aptp2p >/dev/null; then
+               if ! getent passwd apt-p2p >/dev/null; then
                        adduser --quiet --system --no-create-home \
                                        --home /var/cache/apt-p2p --disabled-password \
                                        --disabled-login --shell /bin/false --ingroup nogroup \
-                                       aptp2p
+                                       apt-p2p
                fi
                
                touch /var/log/apt-p2p.log
-               chown aptp2p:adm /var/log/apt-p2p.log
+               chown apt-p2p:adm /var/log/apt-p2p.log
                mkdir -p /var/cache/apt-p2p
-               chown -R aptp2p:adm /var/cache/apt-p2p
+               chown -R apt-p2p:adm /var/cache/apt-p2p
     ;;
 
     abort-upgrade|abort-remove|abort-deconfigure)
@@ -47,6 +49,9 @@ case "$1" in
     ;;
 esac
 
+# Tell debconf to stop so it doesn't get confused
+db_stop
+
 # dh_installdeb will replace this with shell code automatically
 # generated by other debhelper scripts.