aboutsummaryrefslogtreecommitdiff
path: root/test.yml
blob: c72e51968dbd410abaa30b2df76bdbbb1199be74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
---
- name: Test playbook for ldap_certs
  hosts: test
  remote_user: root
  roles:
    - sudo
    - ldap_certs
  vars:
    ldap_certs:
      - { exists: 'true', gets_hashlink: 'false', file: '../../../company/ldap_certs-files/CA1-CA1.crt' }
      - { exists: 'true', gets_hashlink: 'false', file: '../../../company/ldap_certs-files/CA2-SubCA.crt' }
      - { exists: 'true', gets_hashlink: 'true', file: '../../../company/ldap_certs-files/certs-example-2016.pem' }
bgstack15