https://bugzilla.novell.com/show_bug.cgi?id=736715 https://bugzilla.novell.com/show_bug.cgi?id=736715#c2 --- Comment #2 from Andrzej Lisowski <andrzej.lisowski@ericsson.com> 2011-12-14 11:39:22 UTC --- Actually I have found something in the log files: :::::::::::::: dispatcher.log :::::::::::::: syntax error at BSConfig.pm line 58, near "our " Compilation failed in require at /usr/lib/obs/server//bs_dispatch line 46. BEGIN failed--compilation aborted at /usr/lib/obs/server//bs_dispatch line 46. :::::::::::::: publisher.log :::::::::::::: syntax error at /usr/lib/obs/server//BSConfig.pm line 58, near "our " Compilation failed in require at /usr/lib/obs/server//bs_publish line 38. BEGIN failed--compilation aborted at /usr/lib/obs/server//bs_publish line 38. :::::::::::::: rep_server.log :::::::::::::: syntax error at BSConfig.pm line 58, near "our " Compilation failed in require at /usr/lib/obs/server//bs_repserver line 48. BEGIN failed--compilation aborted at /usr/lib/obs/server//bs_repserver line 48. :::::::::::::: scheduler_i586.log :::::::::::::: syntax error at BSConfig.pm line 58, near "our " Compilation failed in require at ./bs_sched line 39. BEGIN failed--compilation aborted at ./bs_sched line 39. :::::::::::::: scheduler_x86_64.log :::::::::::::: syntax error at BSConfig.pm line 58, near "our " Compilation failed in require at ./bs_sched line 39. BEGIN failed--compilation aborted at ./bs_sched line 39. :::::::::::::: signer.log :::::::::::::: syntax error at /usr/lib/obs/server//BSConfig.pm line 58, near "our " Compilation failed in require at /usr/lib/obs/server//bs_signer line 39. BEGIN failed--compilation aborted at /usr/lib/obs/server//bs_signer line 39. :::::::::::::: src_server.log :::::::::::::: syntax error at /usr/lib/obs/server//BSConfig.pm line 58, near "our " Compilation failed in require at /usr/lib/obs/server//bs_srcserver line 40. BEGIN failed--compilation aborted at /usr/lib/obs/server//bs_srcserver line 40. :::::::::::::: src_service.log :::::::::::::: syntax error at /usr/lib/obs/server//BSConfig.pm line 58, near "our " Compilation failed in require at /usr/lib/obs/server//BSStdServer.pm line 34. BEGIN failed--compilation aborted at /usr/lib/obs/server//BSStdServer.pm line 34. Compilation failed in require at /usr/lib/obs/server//bs_service line 41. BEGIN failed--compilation aborted at /usr/lib/obs/server//bs_service line 41. :::::::::::::: warden.log :::::::::::::: syntax error at /usr/lib/obs/server//BSConfig.pm line 58, near "our " Compilation failed in require at /usr/lib/obs/server//bs_warden line 37. BEGIN failed--compilation aborted at /usr/lib/obs/server//bs_warden line 37. So after looking closely another time at the template I have found the root for this problem :-) Have a look at line 65 of the template for the BSConfig.pm file: http://gitorious.org/opensuse/build-service/blobs/899b861726f688927c57cd9f7f... You'll fine the following line there: #our $multiaction_notify_support = 0 But it should be: #our $multiaction_notify_support = 0; When I was removing the # sign I should add as well ; sign at the end of the line so it would look like that our $multiaction_notify_support = 0; Once I have added the sign ; at the end of the line the system works fine again. I guess that it would be good to add the ; sign at the end of the line also in the template file for BSConfig.pm so the new users for OBS would not fall into this trap again. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.