lite-idp icon indicating copy to clipboard operation
lite-idp copied to clipboard

Cannot generate certs

Open jbleduigou opened this issue 4 years ago • 1 comments

While trying to generate the certs I get the following error:

go get: github.com/coreos/[email protected] updating to
        github.com/coreos/[email protected]: parsing go.mod:
        module declares its path as: go.etcd.io/bbolt
                but was required as: github.com/coreos/bbolt

When modifying the makefile from:

cfssl:
	go get -u -tags nopkcs11 github.com/cloudflare/cfssl/cmd/cfssl
	go get -u github.com/cloudflare/cfssl/cmd/cfssljson
	go get -u github.com/mattn/goreman

To:

cfssl:
	go get -tags nopkcs11 github.com/cloudflare/cfssl/cmd/cfssl
	go get github.com/cloudflare/cfssl/cmd/cfssljson
	go get -u github.com/mattn/goreman

It works

jbleduigou avatar Sep 16 '20 11:09 jbleduigou

with your hack, I'm getting this error

env: cfssljson: No such file or directory
env: cfssl: No such file or directory
make: *** [ca] Error 127

lzaiko avatar May 18 '21 00:05 lzaiko