diff options
author | Andreas Guldstrand <andreas.guldstrand@gmail.com> | 2017-02-06 12:24:28 +0100 |
---|---|---|
committer | Andreas Guldstrand <andreas.guldstrand@gmail.com> | 2017-02-06 12:24:28 +0100 |
commit | 2ae090fba0cb30f95ba406b62e5da150577bd538 (patch) | |
tree | 19ef56cbeff880036b5c8260ae87c67d0f5c26ae /t/11-git.t | |
parent | 0dcba316a80cb8b4283965c2dee217e9c6955fc1 (diff) | |
download | sbotools2-2ae090fba0cb30f95ba406b62e5da150577bd538.tar.xz |
t/ useradd/groupadd in README change from 200 to 199 to not conflict with possible postfix install
Diffstat (limited to 't/11-git.t')
-rwxr-xr-x | t/11-git.t | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -46,9 +46,9 @@ END if (defined $ENV{TRAVIS} and $ENV{TRAVIS} eq 'true') { capture_merged { system(<<"END"); }; -groupadd -g 200 test -useradd -u 200 -g 200 -d /tmp test -chown -R 200:200 $RealBin/gitrepo +groupadd -g 199 test +useradd -u 199 -g 199 -d /tmp test +chown -R 199:199 $RealBin/gitrepo END } @@ -64,8 +64,8 @@ SKIP: { my @fnames = glob "$RealBin/gitrepo/.git/objects/*/*"; my @stat = stat shift @fnames; - is ($stat[4], 200, "Correct owner uid for $RealBin/gitrepo"); - is ($stat[5], 200, "Correct owner gid for $RealBin/gitrepo"); + is ($stat[4], 199, "Correct owner uid for $RealBin/gitrepo"); + is ($stat[5], 199, "Correct owner gid for $RealBin/gitrepo"); } # make a conflict |