Don't handle ACME root certs

They are volatile, and issued certs are already bundled nowadays.
This commit is contained in:
Adrian Heine 2024-08-04 10:46:47 +02:00
parent e40e65bd62
commit 4392e65f3f
5 changed files with 14 additions and 82 deletions

View file

@ -94,12 +94,6 @@ impl Resource for AcmeUser {
type Artifact = (UserNameArtifact, PathArtifact);
}
#[derive(Debug, Hash, PartialEq, Eq)]
pub struct AcmeRootCert;
impl Resource for AcmeRootCert {
type Artifact = PathArtifact;
}
#[derive(Debug, Hash, PartialEq, Eq)]
pub struct AcmeChallengesDir;
impl Resource for AcmeChallengesDir {
@ -348,7 +342,6 @@ default_resources!(
AcmeAccountKey: AcmeAccountKey,
AcmeChallengesDir: AcmeChallengesDir,
AcmeChallengesNginxSnippet: AcmeChallengesNginxSnippet,
AcmeRootCert: AcmeRootCert,
AcmeUser: AcmeUser,
Cert: Cert<D>,
CertChain: CertChain<D>,