diff --git a/.gitignore b/.gitignore index 5ea1d5e3b..bdc7b256b 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,6 @@ crash.log # Configurations ## Ignore custom configurations. config/ +## Ignore certificatess. +**/.crt +**/.p7b \ No newline at end of file diff --git a/README.md b/README.md index 70379fa88..4e2716820 100644 --- a/README.md +++ b/README.md @@ -112,8 +112,8 @@ The directory structure of the repository. │ └── data │ └── autounattend.pkrtpl.hcl ├── certificates -│ ├── root-ca.crt -│ └── root-ca.p7b +│ ├── root-ca.crt.example +│ └── root-ca.p7b.example ├── manifests └── scripts ├── linux diff --git a/certificates/root-ca.crt b/certificates/root-ca.crt.example similarity index 100% rename from certificates/root-ca.crt rename to certificates/root-ca.crt.example diff --git a/certificates/root-ca.p7b b/certificates/root-ca.p7b.example similarity index 100% rename from certificates/root-ca.p7b rename to certificates/root-ca.p7b.example