Merge pull request #406 from jakllsch/netbsd-user

use passwd database instead of shadow database on NetBSD too
This commit is contained in:
Nico Schottelius 2016-04-01 22:42:40 +02:00
commit fa5950d329
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ os="$($__explorer/os)"
database="shadow"
case "$os" in
"freebsd"|"openbsd") database="passwd";;
"freebsd"|"netbsd"|"openbsd") database="passwd";;
esac