diff options
author | Günther Deschner <gd@samba.org> | 2015-02-05 16:07:35 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2015-02-13 18:25:41 +0100 |
commit | 88f7361c211fce5d1a1a3a56bfa4297263c70fcd (patch) | |
tree | 8b21f7b6c429c610b71f46158f704a71c746ecb2 | |
parent | 8c819f3c6b58d0138c2852c5b2d7c4dd17a54cd0 (diff) | |
download | samba-88f7361c211fce5d1a1a3a56bfa4297263c70fcd.tar.gz samba-88f7361c211fce5d1a1a3a56bfa4297263c70fcd.tar.xz samba-88f7361c211fce5d1a1a3a56bfa4297263c70fcd.zip |
s4-selftest: push up the "users" gid to make gid collision more unlikely.
Guenther
Signed-off-by: Günther Deschner <gd@samba.org>
Reviewed-by: Michael Adam <obnox@samba.org>
-rwxr-xr-x | selftest/target/Samba4.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/selftest/target/Samba4.pm b/selftest/target/Samba4.pm index a58a1cf6b6..da2009d95d 100755 --- a/selftest/target/Samba4.pm +++ b/selftest/target/Samba4.pm @@ -703,7 +703,7 @@ sub provision_raw_step1($$) if ($ctx->{unix_uid} != 0) { print PWD "root:x:0:0:root gecos:$ctx->{prefix_abs}:/bin/false\n"; } - print PWD "$ctx->{unix_name}:x:$ctx->{unix_uid}:100:$ctx->{unix_name} gecos:$ctx->{prefix_abs}:/bin/false\n"; + print PWD "$ctx->{unix_name}:x:$ctx->{unix_uid}:65531:$ctx->{unix_name} gecos:$ctx->{prefix_abs}:/bin/false\n"; print PWD "nobody:x:65534:65533:nobody gecos:$ctx->{prefix_abs}:/bin/false pdbtest:x:65533:65533:pdbtest gecos:$ctx->{prefix_abs}:/bin/false pdbtest2:x:65532:65533:pdbtest gecos:$ctx->{prefix_abs}:/bin/false @@ -719,7 +719,7 @@ pdbtest4:x:65530:65533:pdbtest gecos:$ctx->{prefix_abs}:/bin/false } print GRP "$ctx->{unix_name}:x:$ctx->{unix_gid}:\n"; print GRP "wheel:x:10: -users:x:100: +users:x:65531: nobody:x:65533: nogroup:x:65534:nobody "; |