Skip to content

Commit

Permalink
Don't read inst-sys users during autoinstallation
Browse files Browse the repository at this point in the history
  • Loading branch information
imobachgs committed Mar 5, 2016
1 parent 88c49c9 commit 2b4235e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/Users.pm
Expand Up @@ -6154,7 +6154,7 @@ sub Import {
# remove cache entries (#50265)
UsersCache->ResetCache ();

my $error_msg = Mode->test () ? "" : $self->ReadLocal ();
my $error_msg = (Mode->test() || Stage->initial()) ? "" : $self->ReadLocal ();
if ($error_msg) {
return 0;
}
Expand Down

0 comments on commit 2b4235e

Please sign in to comment.