aboutsummaryrefslogtreecommitdiff
path: root/test.yml
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2016-10-06 10:54:16 -0400
committerB Stack <bgstack15@gmail.com>2016-10-06 10:54:16 -0400
commit44b47fd6e17f8de9f0038d94eb9f6e198c003fab (patch)
treebf0c1bc525388972dee96ff68158b108748af484 /test.yml
parentFixed filename export process in scrub.py (diff)
downloadansible01-44b47fd6e17f8de9f0038d94eb9f6e198c003fab.tar.gz
ansible01-44b47fd6e17f8de9f0038d94eb9f6e198c003fab.tar.bz2
ansible01-44b47fd6e17f8de9f0038d94eb9f6e198c003fab.zip
Fixed a few things, added ldap_certs stub
Diffstat (limited to 'test.yml')
-rw-r--r--test.yml12
1 files changed, 6 insertions, 6 deletions
diff --git a/test.yml b/test.yml
index f170ffd..c72e519 100644
--- a/test.yml
+++ b/test.yml
@@ -1,12 +1,12 @@
---
-- name: Test playbook for sudo
+- name: Test playbook for ldap_certs
hosts: test
remote_user: root
roles:
- sudo
+ - ldap_certs
vars:
- sudo_strings:
- - { priority: 42, exists: 'false', name: 'admins-do-all', content: 'User_Alias ADMINS = Bgstack15, bgstack15, user16, User16' }
- - { priority: 43, exists: false, name: 'a', content: "ADMINS ALL=(ALL) ALL" }
- sudo_files:
- - { exists: 'false', file: '../../../company/sudo-files/40_BGSTACK15' }
+ 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