Add ssh key gen

This commit is contained in:
ViViDboarder 2021-10-25 09:17:50 -07:00
parent 4abe1b01ed
commit a55167bddb
2 changed files with 5 additions and 0 deletions

View File

@ -22,6 +22,7 @@ function install() {
}
install "macports"
install "generate_ssh_keys"
install "finicky"
install "bitwarden"
install "nextcloud"

View File

@ -0,0 +1,4 @@
#! /bin/bash
log "Generate default ssh key for current host"
ssh-keygen -t ed25519 -C "${USER}@$(hostname)"