mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-24 09:25:01 +00:00
1fd9f280cc
PR: 113423 Obtained from: http://www.deweyonline.com/nx/freebsd.html
21 lines
383 B
Plaintext
21 lines
383 B
Plaintext
--- nxsetup.orig Mon Jan 22 19:22:50 2007
|
|
+++ nxsetup
|
|
@@ -135,7 +135,7 @@
|
|
then
|
|
egrep "^nx:" /etc/passwd >/dev/null
|
|
else
|
|
- getent passwd nx >/dev/null
|
|
+ egrep -q "^nx:" /etc/passwd >/dev/null
|
|
fi
|
|
}
|
|
nx_group_exists()
|
|
@@ -145,7 +145,7 @@
|
|
then
|
|
egrep "^nx:" /etc/group >/dev/null
|
|
else
|
|
- getent group nx >/dev/null
|
|
+ egrep -q "^nx:" /etc/group >/dev/null
|
|
fi
|
|
}
|
|
|