Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
[[email protected] devtools]# ./sign.php /var/www/html/admin/modules/paging
Wasn't able to find a valid key. Sorry
[[email protected] devtools]# gpg --list-secret-keys
/root/.gnupg/secring.gpg
------------------------
sec   2048R/E407B7AB 2014-11-17 [expires: 2015-11-17]
uid                  Ed Led Ovum (Ovum.com FreePBX Module Signing Key) <[email protected]>
ssb   2048R/19663421 2014-11-17
[[email protected] devtools]# ./sign.php /var/www/html/admin/modules/paging E407B7AB
Signing /var/www/html/admin/modules/paging with E407B7AB
        Generating file list...
        Signing /var/www/html/admin/modules/paging/module.sig..
Done
[[email protected] devtools]#

To get the fingerprint keys:

Code Block
gpg --fingerprint 
pub   2048R/28F9D098 2018-01-28
      Key fingerprint = 965F 09B9 50B5 0BD9 7BAA  0E0F 9687 8C74 28F9 D098
uid                  Franck Danard <[email protected]>
sub   2048R/18F01234 2018-01-28

The fingerprint key will be : 96878C7428F9D098

It is expected that you tar the module directory up and distribute as normal, with the module.sig file included.

...