diff options
author | Michael Vogt <mvo@debian.org> | 2014-10-21 10:54:03 -0400 |
---|---|---|
committer | Michael Vogt <mvo@debian.org> | 2014-10-21 10:54:03 -0400 |
commit | cbb1005a0a2e026e4a7361b0ff86888af192ee85 (patch) | |
tree | 4eae55cfce56a8b8c00c5458f8cbe146d7b9164d | |
parent | 0d303f1764645284b33924c9be8bf29f0a32ca5c (diff) |
debian/apt.postinst: chown _apt:root /etc/apt/auth.conf
If the methods drop privileges we need to ensure that
/etc/apt/apt.conf is still readable by the _apt user.
-rwxr-xr-x | debian/apt.postinst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/debian/apt.postinst b/debian/apt.postinst index b0a5da7d8..bcc18b4e5 100755 --- a/debian/apt.postinst +++ b/debian/apt.postinst @@ -43,6 +43,11 @@ case "$1" in adduser --force-badname --system -home /var/empty \ --no-create-home --quiet _apt || true + # ensure the passwords can still be read by the methods + if [ -e /etc/apt/auth.conf ]; then + chown _apt:root /etc/apt/auth.conf + fi + # deal with upgrades from experimental if dpkg --compare-versions "$2" 'eq' '1.1~exp3'; then # libapt will setup partial/ at runtime |