better naming
[feisty_meow.git] / scripts / security / fix_ssh_perms.sh
1 #!/bin/bash
2
3 # resets the permissions on the .ssh directory to be safe.
4 # otherwise ssh may ignore keys and such from there.
5
6 chmod 700 $HOME/.ssh 
7 chmod 600 $HOME/.ssh/*
8
9