Review for fix for :
http://monaco.sfbay.sun.com/detail.jsf?cr=6591890
In Solaris, when adding a user the starting default UID is 100.
users-admin has a default setting of not showing users that have a UID
less than 1000, this is incorrect for Solaris. Fix is to change our local
patch for Solaris/Nexenta to have the UID min as 100 and not 1000
Following is a diff or a diff :) for the patch that being changed.
Index: patches/system-tools-backends-08-users.diff
===================================================================
--- patches/system-tools-backends-08-users.diff (revision 11847)
+++ patches/system-tools-backends-08-users.diff (working copy)
@@ -125,7 +125,7 @@
+ 'home_prefix' => '/export/home/$user',
+ 'gmin' => 1000,
+ 'gmax' => 2147483647, # Based on MAXUID from sys/param.h
-+ 'umin' => 1000,
++ 'umin' => 100,
+ 'umax' => 2147483647, # Based on MAXUID from sys/param.h
+};
+
@@ -137,7 +137,7 @@
+ 'home_prefix' => '/export/home/$user',
+ 'gmin' => 1000,
+ 'gmax' => 2147483647, # Based on MAXUID from sys/param.h
-+ 'umin' => 1000,
++ 'umin' => 100,
+ 'umax' => 2147483647, # Based on MAXUID from sys/param.h
+};
+