diff options
author | Julian Andres Klode <jak@debian.org> | 2015-08-20 14:47:32 +0200 |
---|---|---|
committer | Julian Andres Klode <jak@debian.org> | 2015-08-20 14:54:03 +0200 |
commit | 269b7c0cd89e9508c0051d6ac2c3632540a31daa (patch) | |
tree | 8dde20dc614f73cd9a5d3ad5e7c1e052dd21417f /debian/apt.postinst | |
parent | 632f24768e4fdcebe4e26e02471beb8f583e073b (diff) |
postinst: Correctly pass --home instead of -home, and fixup old user
Thanks: Niels Thykier for reporting this on IRC
Diffstat (limited to 'debian/apt.postinst')
-rwxr-xr-x | debian/apt.postinst | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/debian/apt.postinst b/debian/apt.postinst index b0a5da7d8..1f98fcece 100755 --- a/debian/apt.postinst +++ b/debian/apt.postinst @@ -40,9 +40,14 @@ case "$1" in fi # add unprivileged user for the apt methods - adduser --force-badname --system -home /var/empty \ + adduser --force-badname --system --home /nonexistent \ --no-create-home --quiet _apt || true + # Fixup any mistake in the home directory of the _apt user + if dpkg --compare-versions "$2" lt-nl 1.1~exp10~; then + usermod --home /nonexistent _apt + fi + # deal with upgrades from experimental if dpkg --compare-versions "$2" 'eq' '1.1~exp3'; then # libapt will setup partial/ at runtime |