X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=gosa-si%2Ftests%2Fdeploy-gosa-si.pl;h=5d2156815833d080ad1e01becebd7df7fb527799;hb=d077b1abf78c1919e7f949c50b155d35d321e82a;hp=f824b5db813a981ede31693891315f8b798c4a42;hpb=5258cb87292a87bc1c21bb941b1724a759fa254f;p=gosa.git diff --git a/gosa-si/tests/deploy-gosa-si.pl b/gosa-si/tests/deploy-gosa-si.pl index f824b5db8..5d2156815 100755 --- a/gosa-si/tests/deploy-gosa-si.pl +++ b/gosa-si/tests/deploy-gosa-si.pl @@ -62,6 +62,7 @@ my %copies = ( "/usr/lib/gosa-si/client/events/gosaTriggered.pm" => "client/events/gosaTriggered.pm", "/usr/lib/gosa-si/client/events/installation.pm" => "client/events/installation.pm", "/usr/lib/gosa-si/client/events/mailqueue.pm" => "client/events/mailqueue.pm", + "/usr/lib/gosa-si/client/events/load_reporter.pm" => "client/events/load_reporter.pm", ); while( my($new_file, $file_name) = each %copies ) { @@ -72,8 +73,8 @@ while( my($new_file, $file_name) = each %copies ) { print STDERR "$del_cmd\n"; system($del_cmd); - - my $ln_cmd = "ln -s ".$gosa_path.$file_name." $new_file"; + my $abs_file = File::Spec->catfile($gosa_path, $file_name); + my $ln_cmd = "ln -s $abs_file $new_file"; print STDERR "$ln_cmd\n"; system($ln_cmd);