You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
dotfiles/ssh.sh

13 lines
430 B

#!/usr/bin/env bash
set -e
# set 0600 permissions on config file
# (setting permissions on a symlink does nothing; see chmod(1))
chmod 0600 "$( dirname "$(readlink -f "${BASH_SOURCE[0]}")" )/src/.ssh/config"
# prompt to create key if none exists
if [[ "$(find ~/.ssh -maxdepth 1 -type f -name '*.pub' | wc -l)" == 0 ]]; then
echo 'No SSH keys found; creating one now.'
ssh-keygen -t ed25519 -C 'nightfirecat@nightfirec.at'
fi