Documentation

This commit is contained in:
Bandie 2022-06-16 14:35:40 +02:00
parent 00833d62ca
commit 9e67d20176
Signed by: Bandie
GPG Key ID: 7FA4FD7D1D7997C2
2 changed files with 6 additions and 4 deletions

View File

@ -9,5 +9,5 @@ Um, neben [keys.openpgp.org](https://keys.openpgp.org/), den eigenen Chaospott-G
3. Führe das Skript `genwkdkey` aus. Es exportiert deinen öffentlichen Schlüssel und legt ihn nach einem WKD-Hash-Muster ab.
4. Füge es zum git hinzu, commite und pushe.
4. Das Skript committet und pusht ebenfalls.

View File

@ -1,15 +1,17 @@
#!/bin/bash
# Set MAILADDRESS variable
read -p 'Type in your chaospott mail address: ' MAILADDRESS
# Dieses danach im o.g. Ordner ausführen.
# Get WKDHASH
WKDHASH=$(gpg --with-wkd-hash --fingerprint "$MAILADDRESS" | egrep "[ ]{14}[0-9a-z]{32}@chaospott\.de" | sed 's/ //g;s/@chaospott\.de//')
if [ -n "$WKDHASH" ]; then
# Export key into WKDHASH
gpg --no-armor --export "$MAILADDRESS" > "$WKDHASH"
git add "$WKDHASH"
# git commit and push
echo "OK. Now put your nickname in the commit message."
read -p 'Press enter.'
git commit