8 lines
263 B
Text
8 lines
263 B
Text
|
#!/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
|