From 7d1e8f6ea95416f5876453b1312b2ea2181c2334 Mon Sep 17 00:00:00 2001 From: Ryan Johnson Date: Wed, 29 Sep 2021 17:50:33 -0400 Subject: [PATCH] Rename certificates to`.example` extension (#65) * Rename certificates to a `.example` extension. * Add `**/.crt` and `**/.pb7` to .gitignore. --- .gitignore | 3 +++ README.md | 4 ++-- certificates/{root-ca.crt => root-ca.crt.example} | 0 certificates/{root-ca.p7b => root-ca.p7b.example} | 0 4 files changed, 5 insertions(+), 2 deletions(-) rename certificates/{root-ca.crt => root-ca.crt.example} (100%) rename certificates/{root-ca.p7b => root-ca.p7b.example} (100%) 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