I have two users on my server, user1 and ec2-user
I have added user1 to the ec2-user
group
If I change the permission to 775 on the /home/ec2-user directory as user1 I can write files.
find /home/ec2-user/ -type d -exec chmod 775 {} \
However doing the breaks my ppk access with ec2-user
Even if I change the permission back on the /home/ec2-user/.ssh/ directory to 755 my access is still broken
What am I missing?