diff options
Diffstat (limited to 'docker_files/init.pl')
-rwxr-xr-x | docker_files/init.pl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docker_files/init.pl b/docker_files/init.pl index d4f75f6f1..5518fd57b 100755 --- a/docker_files/init.pl +++ b/docker_files/init.pl @@ -31,7 +31,8 @@ foreach my $key (keys %ENV) { } write_localconfig(\%localconfig); -system("perl", "checksetup.pl", "--no-templates", "--no-permissions", '--no-assets'); +sleep(10); +system('perl', 'checksetup.pl', '--no-templates', '--no-permissions'); my $cmd = shift @ARGV or die "usage: init.pl CMD"; my $method = "run_$cmd"; |