aboutsummaryrefslogtreecommitdiff
path: root/main.yml
blob: 839866a590494377a0f936693c9455e26e7d321b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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
...
bgstack15