MCPcopy Index your code
hub / github.com/saltstack/salt / __init__

Method __init__

salt/state.py:5001–5010  ·  view source on GitHub ↗
(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
5013class RemoteHighState:

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected