Issue #1791
Updated by bmbouter almost 9 years ago
After I by accident upgraded our pulp-server from 2.7.1 to 2.8.0 all our repo's were giving 403 errors. This was because 2.8.0 cannot handle the /var/lib/pulp(/.*) directory being a symlink. This issue can be solved my creating a bind mount instead of a symlink. <pre> mount --bind /path/to/your/pulp/(dir/) /var/lib/pulp/(dir/) </pre>