Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0

...

Appendix A: create and add your key to http://www.apache.org/dist/felix/KEYSImage Removed

If you are using a *nix system with a working OpenSSH, GnuPG, and bash you can create and add your own key with the following command:

  1. Create a public/private pair key:
    Code Block
    gpg --gen-key
    
    When gpg asks for e-mail linked the key you MUST USE the <committer>@apache.org one
    When gpg asks for comment linked the key you SHOULD USE "CODE SIGNING KEY"
  2. Add the key to http://www.apache.org/dist/felix/KEYS:Image Removed type the following command replacing the word e-mail with your Apache's one (<committer>@apache.org).
    Code Block
    (gpg --list-sigs e-mail && gpg --export --armor e-mail) > toadd.key
    scp toadd.key people.apache.org:
    ssh people.apache.org "cat toadd.key >> /x1/www/www.apache.org/dist/felix/KEYS"
    
  3. You are now DONE, but to see the changes on http://www.apache.org/dist/felix/KEYSImage Removed you must wait 2 hours

...