actually add config field

This commit is contained in:
Roland Shoemaker 2015-05-20 13:14:22 -07:00
parent 74ecad349b
commit a56d90d501
3 changed files with 4 additions and 0 deletions

View File

@ -83,6 +83,7 @@ func main() {
wfe.RA = &rac
wfe.SA = &sac
wfe.Stats = stats
wfe.SubscriberAgreementURL = c.SubscriberAgreementURL
wfe.IssuerCert, err = cmd.LoadCert(c.CA.IssuerCert)
cmd.FailOnError(err, fmt.Sprintf("Couldn't read issuer cert [%s]", c.CA.IssuerCert))

View File

@ -91,6 +91,7 @@ func main() {
wfe.RA = &ra
wfe.SA = sa
wfe.Stats = stats
wfe.SubscriberAgreementURL = c.SubscriberAgreementURL
wfe.IssuerCert, err = cmd.LoadCert(c.CA.IssuerCert)
cmd.FailOnError(err, fmt.Sprintf("Couldn't read issuer cert [%s]", c.CA.IssuerCert))

View File

@ -86,6 +86,8 @@ type Config struct {
Username string
Password string
}
SubscriberAgreementURL string
}
// QueuePair describes a client-server pair of queue names