Last active
December 23, 2021 17:22
-
-
Save jwkenney/7378c96c20d989d40cbacba879557530 to your computer and use it in GitHub Desktop.
Custom Ansible fact for local Linux groups
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# Requires Bash v4+ | |
# Gather Ansible facts for local Linux groups defined in /etc/group | |
# Place this under /etc/ansible/facts.d/ on your remote hosts, | |
# and make it executable. Ansible will save group info under the 'ansible_local' fact, | |
# whenever a playbook gathers facts. | |
readarray -t the_groups < <(getent group) | |
let "lastitem = ${#the_groups[@]} - 1" | |
echo "{" | |
for index in "${!the_groups[@]}"; do | |
IFS=: read -r groupname grouppw gid members <<< "${the_groups[$index]}" | |
IFS=',' read -ra MEMBER_ARRAY <<< "${members}" | |
member_list_str="" | |
for i in "${MEMBER_ARRAY[@]}"; do | |
[ -z "${member_list_str}" ] && member_list_str="\"${i}\"" || member_list_str="${member_list_str}, \"${i}\"" | |
done | |
[ ${index} -eq ${lastitem} ] && delim='' || delim=',' | |
cat <<- EOF | |
"${groupname}": { | |
"name": "${groupname}", | |
"gid": ${gid}, | |
"members": [${member_list_str}] | |
}${delim} | |
EOF | |
done | |
echo "}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is an example of a custom/local Ansible fact for local Linux groups on a node.
Requirements:
Usage:
/etc/ansible/facts.d/
on all of your remote Linux nodes, and copy the file in asgroups.fact
chmod +x /etc/ansible/facts.d/groups.fact
ansible -i your_host, -m setup your_host
ansible_local.groups
for the node.Data for groups should look like below:
Troubleshooting:
bash --version
ansible_local.users
fact.chmod +x /etc/ansible/facts.d/groups.fact
Alternatives:
The official getent module included with Ansible, allows you to quickly parse the various databases for users, groups, etc. into a set of facts as well. The resulting facts are very basic, with each entry split into an array of values. You will need to know which values correspond to what settings for a given database.