2025-03-25 17:26:18 -04:00
|
|
|
#!/bin/bash
|
|
|
|
|
set -xeuo pipefail
|
|
|
|
|
# Verify group members
|
2025-10-17 09:22:48 -04:00
|
|
|
for grp in kvm tss; do
|
|
|
|
|
# Verify we can find through NSS
|
|
|
|
|
getent group $grp >/dev/null
|
|
|
|
|
# and these need to be directly in /etc
|
|
|
|
|
grep -q $grp /etc/group
|
|
|
|
|
done
|