dotfiles/network/ssh/setup.sh
2017-10-15 20:50:00 +02:00

20 lines
401 B
Bash
Executable File

#!/usr/bin/env bash
source ${DOTFILES}/helpers.sh
function main()
{
local scriptdir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd)"
print_info "Setting up SSH"
# copy private key to .ssh
# cp ${KEYFILE} ~/.ssh/thomas_rsa
# chmod 400 ~/.ssh/thomas_rsa
# ssh-add -K ~/.ssh/thomas_rsa
linkfile ${scriptdir}/config ${HOME}/.ssh/config
print_ok "SSH settings installed"
}
main "$@"