Skip to content
Snippets Groups Projects
Commit 94da93ac authored by Bob Mottram's avatar Bob Mottram
Browse files

rsa rather than numbers

parent 0723a61a
No related branches found
No related tags found
No related merge requests found
......@@ -90,9 +90,9 @@ function configure_backup_key {
# Generate a GPG key for backups
BACKUP_KEY_EXISTS=$(gpg_key_exists "$MY_USERNAME" "$MY_NAME (backup key)")
if [[ $BACKUP_KEY_EXISTS == "no" ]]; then
{ echo 'Key-Type: 9';
{ echo 'Key-Type: rsa';
echo 'Key-Length: 2048';
echo 'Subkey-Type: 1';
echo 'Subkey-Type: rsa';
echo 'Subkey-Length: 2048';
echo "Name-Real: $MY_NAME";
echo "Name-Email: $MY_EMAIL_ADDRESS";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment