aboutsummaryrefslogtreecommitdiff
path: root/roles/sudo/tests/test.yml
diff options
context:
space:
mode:
Diffstat (limited to 'roles/sudo/tests/test.yml')
-rw-r--r--roles/sudo/tests/test.yml12
1 files changed, 12 insertions, 0 deletions
diff --git a/roles/sudo/tests/test.yml b/roles/sudo/tests/test.yml
new file mode 100644
index 0000000..e15f798
--- /dev/null
+++ b/roles/sudo/tests/test.yml
@@ -0,0 +1,12 @@
+---
+- name: Test playbook for sudo
+ hosts: test
+ remote_user: root
+ roles:
+ - sudo
+ 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' }
bgstack15