63a218a458
Need to mv to latest released and supported version of logrus switch github.com/Sirupsen/logrus github.com/sirupsen/logrus Also vendor in latest containers/storage and containers/image Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
18 lines
602 B
Go
18 lines
602 B
Go
// Policy evaluation for prSignedBaseLayer.
|
|
|
|
package signature
|
|
|
|
import (
|
|
"github.com/containers/image/types"
|
|
"github.com/sirupsen/logrus"
|
|
)
|
|
|
|
func (pr *prSignedBaseLayer) isSignatureAuthorAccepted(image types.UnparsedImage, sig []byte) (signatureAcceptanceResult, *Signature, error) {
|
|
return sarUnknown, nil, nil
|
|
}
|
|
|
|
func (pr *prSignedBaseLayer) isRunningImageAllowed(image types.UnparsedImage) (bool, error) {
|
|
// FIXME? Reject this at policy parsing time already?
|
|
logrus.Errorf("signedBaseLayer not implemented yet!")
|
|
return false, PolicyRequirementError("signedBaseLayer not implemented yet!")
|
|
}
|