Package: colord Version: 0.1.21-1 Severity: normal Tags: patch Dear Maintainer,
I examined the transcripts of upgrade to wheezy, and noted the following warning: ----------------[BEGIN WARNING]---------------- Setting up colord (0.1.21-1) ... adduser: Warning: The home directory `/var/lib/colord' does not belong to the user you are currently creating. -----------------[END WARNING]----------------- The warning is spurious and could be avoided. In colord.postinst leave the creation of the home directory to adduser. (The preceeding mkdir and following chown are redundant.) Thanks, Itay -- System Information: Debian Release: 7.2 APT prefers stable APT policy: (500, 'stable') Architecture: amd64 (x86_64) Kernel: Linux 3.2.0-4-amd64 (SMP w/4 CPU cores) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages colord depends on: ii acl 2.2.51-8 ii adduser 3.113+nmu3 ii libc6 2.13-38 ii libcolord1 0.1.21-1 ii libglib2.0-0 2.33.12+really2.32.4-5 ii libgudev-1.0-0 175-7.2 ii libgusb2 0.1.3-5 ii liblcms2-2 2.2+git20110628-2.2 ii libpolkit-gobject-1-0 0.105-3 ii libsane 1.0.22-7.4 ii libsqlite3-0 3.7.13-1+deb7u1 ii libusb-1.0-0 2:1.0.11-1 ii multiarch-support 2.13-38 ii policykit-1 0.105-3 colord recommends no packages. colord suggests no packages. -- no debconf information
11c11,14 < # ...create colord user, and its home directory, if it isn't already there. --- > # ensure /var/lib/colord exists... > mkdir -p /var/lib/colord > > # ...create colord user if it isn't already there... 13a17,20 > > # ...finally, ensure /var/lib/colord has the right permissions > chown -R colord:colord /var/lib/colord >