openbsd and freebsd both use the 'passwd' database

This commit is contained in:
og 2014-03-02 17:34:36 -07:00
parent 5cbdf981c0
commit 6a455be63a
1 changed files with 4 additions and 3 deletions

View File

@ -26,9 +26,10 @@ os="$($__explorer/os)"
# Default to using shadow passwords
database="shadow"
if [ "$os" = "freebsd" ]; then
database="passwd"
fi
case "$os" in
"freebsd"|"openbsd") database="passwd";;
esac
getent "$database" "$name" || true