Package: apt-proxy Version: 1.9.28
apt-proxy failed to work after upgrade from v1 to v2 due to unchanged ownership of a directory.
apt-proxy v1 ran as 'apt-user', symlink /var/cache/apt-proxy and its target were owned by 'apt-user'. Upgrade changed ownership of the symlink but not the symlink's target.
I don't know how it's done in Python, but in bash, using $proxycache as the file/directory to test:
# check for symlink
if [ -h ${proxycache} ]
chown aptproxy.users ${proxycache}
chown -R --dereference aptproxy.users ${proxycache}
fi
-- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

