mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-01 08:13:08 +00:00
A preliminary set of test targets for "core" supported module that had no independent tests. These will also help us ensure python3 compatibility for those modules and prevent future regressions.
21 lines
477 B
Bash
21 lines
477 B
Bash
#!/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
|
|
egrep -v ^\# /etc/passwd | cut -d: -f1
|
|
fi
|