aboutsummaryrefslogtreecommitdiff
path: root/files/certreq.conf.example
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2017-12-06 06:51:36 -0500
committerB Stack <bgstack15@gmail.com>2017-12-06 06:51:36 -0500
commit7e5a76e7996ebcba36536c8fecd31a95280f3417 (patch)
tree87112b13f82013a751f34868d3aefd7dbd657329 /files/certreq.conf.example
downloadcertreq-7e5a76e7996ebcba36536c8fecd31a95280f3417.tar.gz
certreq-7e5a76e7996ebcba36536c8fecd31a95280f3417.tar.bz2
certreq-7e5a76e7996ebcba36536c8fecd31a95280f3417.zip
Initial commit
Diffstat (limited to 'files/certreq.conf.example')
-rw-r--r--files/certreq.conf.example8
1 files changed, 8 insertions, 0 deletions
diff --git a/files/certreq.conf.example b/files/certreq.conf.example
new file mode 100644
index 0000000..a956241
--- /dev/null
+++ b/files/certreq.conf.example
@@ -0,0 +1,8 @@
+CERTREQ_USER="ANONYMOUS"
+CERTREQ_PASS="NOPASSWORD"
+CERTREQ_WORKDIR="$( mktemp -d )"
+CERTREQ_TEMPLATE="ConfigMgrLinuxClientCertificate"
+CERTREQ_CNLONG="$( hostname -f )"
+CERTREQ_CNSHORT="$( echo "${CERTREQ_CNLONG%%.*}" )"
+CERTREQ_SUBJECT="/DC=com/DC=example/DC=ad/CN=${CERTREQ_CNSHORT}/CN=${CERTREQ_CNPARAM:-CERTREQ_CNPARAM}"
+CERTREQ_CA="http://ca2.ad.example.com"
bgstack15