After the Fedora Account System Production Deployment I can't access the public files on fedorapeople.prg anymore that were already in /project/repos/thl/; that directory seems to be owned by be (thl.thl), but the files that were in there are not, they are owned by UID and GUID 100066 now.
A chown -R thl.thl /project/repos/thl/ would work for me, but I guess there might be a underlying issue that is causing this.
chown -R thl.thl /project/repos/thl/
Would be nice to get this fixed soon, as I can't upload to my repo there that seems to be in use my quite a few people.
Metadata Update from @abompard: - Issue tagged with: authentication
Metadata Update from @smooge: - Issue assigned to smooge
Metadata Update from @smooge: - Issue priority set to: Waiting on Assignee (was: Needs Review) - Issue tagged with: high-gain, low-trouble, ops
When I was fixing ownerships of directories I failed to use -R
for i in $( ls -1); do chown -c $i.$i $i; done
I redid this as
for i in $( ls -1); do chown -cR $i.$i $i; done
and I believe it is fixed now.
Metadata Update from @smooge: - Issue close_status updated to: Fixed - Issue status updated to: Closed (was: Open)
Log in to comment on this ticket.