summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/group/files/grouplist.sh
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/group/files/grouplist.sh')
-rw-r--r--test/integration/targets/group/files/grouplist.sh20
1 files changed, 20 insertions, 0 deletions
diff --git a/test/integration/targets/group/files/grouplist.sh b/test/integration/targets/group/files/grouplist.sh
new file mode 100644
index 0000000..d3129df
--- /dev/null
+++ b/test/integration/targets/group/files/grouplist.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/Groups
+else
+ grep -E -v ^\# /etc/group | cut -d: -f1
+fi