include all certs for now

This commit is contained in:
Matt Drollette
2014-12-10 19:19:38 -06:00
parent ce34022e93
commit fc694148a7
9 changed files with 224 additions and 2 deletions

View File

@@ -10,7 +10,7 @@ import (
func signerCertificate(signer string) (*x509.Certificate, error) {
certFile := filepath.Base(signerFilename(signer))
certString, err := ioutil.ReadFile(filepath.Join("./certificates", certFile))
certString, err := ioutil.ReadFile(filepath.Join("./certificates/reseed", certFile))
if nil != err {
return nil, err
}