fiox issue with salt referencing the wrong opts

This commit is contained in:
Thomas S Hatch 2011-03-03 12:14:17 -07:00
parent 1799bea7df
commit f9cd00256f

View file

@ -25,9 +25,9 @@ class Master(object):
'''
Turn on the master server components
'''
publister = Publisher(opts)
reqserv = ReqServer(opts)
local = LocalServer(opts)
publister = Publisher(self.opts)
reqserv = ReqServer(self.opts)
local = LocalServer(self.opts)
publister.start()
reqserv.start()
local.start()