forgot to dump gid info

This commit is contained in:
Steven Robertson 2020-02-19 10:08:17 -08:00
parent 96f896b56c
commit a7fe74cdba
1 changed files with 1 additions and 1 deletions

View File

@ -129,7 +129,7 @@
#
- name: DEBUGGING - dump all users and their groups and group ids; become_user fails with sudo gid error
shell: dscl . list /Users | grep -v '^_' | xargs -I{} -t -n1 sh -c "id -Gn {} | python -c \"from __future__ import print_function; import sys; import grp; print([line for line in sys.stdin.read().strip().replace('\n', ' ').split(' ')])\""
shell: dscl . list /Users | grep -v '^_' | xargs -I{} -t -n1 sh -c "id -Gn {} | python -c \"from __future__ import print_function; import sys; import grp; print([grp.getgrnam(line) for line in sys.stdin.read().strip().replace('\n', ' ').split(' ')])\""
- name: "Try writing to temp directory for the readonly_homedir user"