Method
__init__
(self, master_opts, minion_opts, grains, id_, saltenv=None)
Source from the content-addressed store, hash-verified
| 4999 | """ |
| 5000 | |
| 5001 | def __init__(self, master_opts, minion_opts, grains, id_, saltenv=None): |
| 5002 | # Force the fileclient to be local |
| 5003 | opts = copy.deepcopy(minion_opts) |
| 5004 | opts["file_client"] = "local" |
| 5005 | opts["file_roots"] = master_opts["master_roots"] |
| 5006 | opts["renderer"] = master_opts["renderer"] |
| 5007 | opts["state_top"] = master_opts["state_top"] |
| 5008 | opts["id"] = id_ |
| 5009 | opts["grains"] = grains |
| 5010 | HighState.__init__(self, opts) |
| 5011 | |
| 5012 | |
| 5013 | class RemoteHighState: |
Callers
nothing calls this directly
Tested by
no test coverage detected