View | Details | Raw Unified | Return to bug 31130
Collapse All | Expand All

(-)scripts/univention-management-console-server (-1 / +8 lines)
 Lines 189-195    Link Here 
189
		self.server = Server( port = self.options.port )
189
		self.server = Server( port = self.options.port )
190
190
191
		CORE.process( 'Server started' )
191
		CORE.process( 'Server started' )
192
		notifier.loop()
192
		try:
193
			notifier.loop()
194
		except (SystemExit, KeyboardInterrupt):
195
			raise
196
		except:
197
			import traceback
198
			CORE.error(traceback.format_exc())
199
			raise
193
200
194
	def signal_hang_up( self, signal, frame ):
201
	def signal_hang_up( self, signal, frame ):
195
		if hasattr( self, 'server' ):
202
		if hasattr( self, 'server' ):

Return to bug 31130