install.fairie/.local/share/chezmoi/home/dot_ssh/run_after_ensure-private-key

7 lines
263 B
Bash

#!/usr/bin/env bash
### Ensure id_rsa is present and create one if it does not exist
if [ ! -f "$HOME/.ssh/id_rsa" ]; then
logg 'Generating missing default private key / public key (`~/.ssh/id_rsa`)'
ssh-keygen -b 4096 -t rsa -f "$HOME/.ssh/id_rsa" -q -N
fi