X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=scripts%2Finstallation_check.pl;h=520b4f1c2346b15422d134d633fa43715f02deb0;hb=b948bb619c8086b8f05aac962d44d075aea17822;hp=c132310ec58a54edb5b6aa45ff2a43b163abdce3;hpb=ef540e3be2813445e92e138f6e9a9b614aff703c;p=kivitendo-erp.git diff --git a/scripts/installation_check.pl b/scripts/installation_check.pl index c132310ec..520b4f1c2 100755 --- a/scripts/installation_check.pl +++ b/scripts/installation_check.pl @@ -29,11 +29,15 @@ GetOptions( ); # if nothing is requested check "required" -$check{r} = 1 unless defined $check{a} || - defined $check{l} || - defined $check{o} || - defined $check{d}; -my $default_run ='1' if $check{r}; # no parameter, therefore print a note after default run +my $default_run; +if (!defined $check{a} + && !defined $check{l} + && !defined $check{o} + && !defined $check{d}) { + $check{r} = 1; + $default_run ='1'; # no parameter, therefore print a note after default run +} + if ($check{a}) { foreach my $check (keys %check) { $check{$check} = 1 unless defined $check{$check}; @@ -194,10 +198,7 @@ sub print_result { sub print_line { my ($text, $res, $color) = @_; - print $text, " ", ('.' x (78 - length($text) - length($res))); - print mycolor($res, $color); - print "\n"; - return; + print $text, " ", ('.' x (78 - length($text) - length($res))), " ", mycolor($res, $color), $/; } sub print_header {