don't use the non-existant gshadow database on NetBSD either
This commit is contained in:
parent
68370db5c3
commit
cef2b32663
1 changed files with 6 additions and 4 deletions
|
@ -24,9 +24,11 @@
|
|||
name=$__object_id
|
||||
os="$($__explorer/os)"
|
||||
|
||||
if [ "$os" = "freebsd" ]; then
|
||||
echo "FreeBSD does not have getent gshadow"
|
||||
exit 0
|
||||
fi
|
||||
case "$os" in
|
||||
"freebsd"|"netbsd")
|
||||
echo "$os does not have getent gshadow"
|
||||
exit 0
|
||||
;;
|
||||
esac
|
||||
|
||||
getent gshadow "$name" || true
|
||||
|
|
Loading…
Reference in a new issue