mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
fiox issue with salt referencing the wrong opts
This commit is contained in:
parent
1799bea7df
commit
f9cd00256f
1 changed files with 3 additions and 3 deletions
|
@ -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()
|
||||
|
|
Loading…
Add table
Reference in a new issue