diff options
author | B Stack <bgstack15@gmail.com> | 2017-12-06 06:51:36 -0500 |
---|---|---|
committer | B Stack <bgstack15@gmail.com> | 2017-12-06 06:51:36 -0500 |
commit | 7e5a76e7996ebcba36536c8fecd31a95280f3417 (patch) | |
tree | 87112b13f82013a751f34868d3aefd7dbd657329 /examples | |
download | certreq-7e5a76e7996ebcba36536c8fecd31a95280f3417.tar.gz certreq-7e5a76e7996ebcba36536c8fecd31a95280f3417.tar.bz2 certreq-7e5a76e7996ebcba36536c8fecd31a95280f3417.zip |
Initial commit
Diffstat (limited to 'examples')
-rw-r--r-- | examples/certreq.yml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/examples/certreq.yml b/examples/certreq.yml new file mode 100644 index 0000000..e7af898 --- /dev/null +++ b/examples/certreq.yml @@ -0,0 +1,20 @@ +--- +# File: /etc/ansible/configuration/test/certreq.yml +# Author: bgstack15 +# Startdate: 2017-11-14 +# Title: Playbook that Deploys The Role certreq +# Purpose: Wrapper for the certreq role +# History: +# Usage: +# ansible-playbook -i /etc/ansible/patching/rdu/rdu_patch_list /etc/ansible/configuration/test/certreq.yml --become -u ansible_rdu -l sw* +# Use this playbook when you want to assign a new Microsoft CA-signed certificate to a Linux host for SCCM. +# Reference: +# ansible reference online +# Improve: +# Document: Below this line + +- hosts: all + roles: + - certreq + +... |