summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/user/files/userlist.sh
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/user/files/userlist.sh')
-rw-r--r--test/integration/targets/user/files/userlist.sh20
1 files changed, 20 insertions, 0 deletions
diff --git a/test/integration/targets/user/files/userlist.sh b/test/integration/targets/user/files/userlist.sh
new file mode 100644
index 0000000..96a83b2
--- /dev/null
+++ b/test/integration/targets/user/files/userlist.sh
@@ -0,0 +1,20 @@
+#!/usr/bin/env bash
+
+#- name: make a list of groups
+# shell: |
+# cat /etc/group | cut -d: -f1
+# register: group_names
+# when: 'ansible_distribution != "MacOSX"'
+
+#- name: make a list of groups [mac]
+# shell: dscl localhost -list /Local/Default/Groups
+# register: group_names
+# when: 'ansible_distribution == "MacOSX"'
+
+DISTRO="$*"
+
+if [[ "$DISTRO" == "MacOSX" ]]; then
+ dscl localhost -list /Local/Default/Users
+else
+ grep -E -v ^\# /etc/passwd | cut -d: -f1
+fi