X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=input%2Fhowto%2Fadd-guest.creole;h=35ccb83d9e650203ce63df06e1e70723f090d961;hb=ff444ff6a62af8688d8f4ba6aedc26813cb095ca;hp=46999f76b8ee148513e87cb62043d10cff07d0ba;hpb=6b6a00f8065a9df13538a941a1f4a4af28df3323;p=mirror%2Fdsa-wiki.git diff --git a/input/howto/add-guest.creole b/input/howto/add-guest.creole index 46999f7..35ccb83 100644 --- a/input/howto/add-guest.creole +++ b/input/howto/add-guest.creole @@ -2,21 +2,28 @@ === add to guest keyring === -at home: +first, import the guest key into your keyring: +{{{ + echo -n "New user's key fingerprint: " && + read fingerprint && + ./add-key "`echo $fingerprint | tr -d ' '`" && +}}} +then, add the guest's public gpg key into the guest keyring by {{{ - cd projects/debian/d-a/guest-keyring + cd ~/dsa/guest-keyring }}} -or whereever you keep the checkout. Then +or whereever you keep the checkout and executing: {{{ + git pull && echo -n "New user's key fingerprint: " && read fingerprint && ./add-key "`echo $fingerprint | tr -d ' '`" && git add debian-guest/add-"`echo $fingerprint | tr -d ' ' | cut -b 25-`" && git add debian-guest/index debian-guest/index.gpg && - git ci && + git commit -a && git push }}}