aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2024-03-26 13:47:23 -0400
committerB. Stack <bgstack15@gmail.com>2024-03-26 13:47:23 -0400
commitbc761840c1ede052f9368173016346120b21f73f (patch)
tree85ecff73499e7be4c7ebfe73abbdde1e401a718e
parentMerge branch 'add_basic_auth_method_and_passwordfile_input' into 'master' (diff)
downloadcertreq-bc761840c1ede052f9368173016346120b21f73f.tar.gz
certreq-bc761840c1ede052f9368173016346120b21f73f.tar.bz2
certreq-bc761840c1ede052f9368173016346120b21f73f.zip
add license headersHEADmaster
-rw-r--r--README.md3
-rwxr-xr-xfiles/certreq.sh1
-rwxr-xr-xfiles/framework.sh1
3 files changed, 5 insertions, 0 deletions
diff --git a/README.md b/README.md
index a4766a5..672c53c 100644
--- a/README.md
+++ b/README.md
@@ -16,6 +16,9 @@ Call the playbook with:
The role generates a pkc12 file at /tmp/certnew.pfx with the client cert, ca cert chain, and client private key.
+# License
+[GPL 3.0](https://www.gnu.org/licenses/gpl-3.0.en.html)
+
# References
## Weblinks
* https://bgstack15.wordpress.com/2016/06/30/manipulating-ssl-certificates/
diff --git a/files/certreq.sh b/files/certreq.sh
index 459df53..4a2e468 100755
--- a/files/certreq.sh
+++ b/files/certreq.sh
@@ -2,6 +2,7 @@
# Filename: certreq.sh
# Location: atower201:/etc/ansible/roles/certreq/files/certreq.sh
# Author: bgstack15@gmail.com
+# SPDX-License-Identifier: GPL-3.0-only
# Startdate: 2017-11-17 09:13:53
# Title: Script that Requests a Certificate from a Microsoft Sub-CA
# Purpose: Automate host certificate generation in a domain environment
diff --git a/files/framework.sh b/files/framework.sh
index 9ef9470..d47af8e 100755
--- a/files/framework.sh
+++ b/files/framework.sh
@@ -1,6 +1,7 @@
#!/bin/sh
# File: /tmp/framework.sh
# Author: bgstack15@gmail.com
+# SPDX-License-Identifier: GPL-3.0-only
# Startdate: 2014-06-02 15:22
# Title: Framework for Common Elements in My Scripts
# Purpose: Library of common script elements
bgstack15