From 7e5a76e7996ebcba36536c8fecd31a95280f3417 Mon Sep 17 00:00:00 2001 From: B Stack Date: Wed, 6 Dec 2017 06:51:36 -0500 Subject: Initial commit --- main.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 main.yml (limited to 'main.yml') diff --git a/main.yml b/main.yml new file mode 100644 index 0000000..839866a --- /dev/null +++ b/main.yml @@ -0,0 +1,19 @@ +--- +# File: /etc/ansible/roles/certreq/main.yml +# Author: bgstack15 +# Startdate: 2017-09-13 +# Title: Role that Generates a PKCS12 Certificate File From a Microsoft Sub-CA +# Purpose: Generates a cert from a Microsoft Sub-CA +# History: +# Usage: +# Reference: +# /etc/ansible/configuration/test/certreq.yml +# Improve: +# Documentation: README.txt + +- hosts: all + tasks: + - include: tasks/main.yml + handlers: + - include: handlers/main.yml +... -- cgit