View Single Post
  #2   (View Single Post)  
Old 12th November 2013
jggimi's Avatar
jggimi jggimi is offline
More noise than signal
 
Join Date: May 2008
Location: USA
Posts: 7,977
Default

Disclaimer: I don't use M:Tier's services, and never have, and I have never used signed packages. I have, however, used openssl(8) and it is a maze of twisty little passages all alike, with a nightmare of similarly worded options and operands.

The error messages you posted here are due to your not having already saved the certificate as /etc/ssl/pkgca.pem. The .pem format is just a text file. If you want it to hold multiple certificates, you append them with cat(1) or with $EDITOR. So use cat(1) or mv(1) and see if that works for you. e.g.: to place two certificates into a pem file, use: $ cat a.crt b.crt > combined.pem
Reply With Quote