D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
proc
/
self
/
root
/
opt
/
saltstack
/
salt
/
lib
/
python3.10
/
site-packages
/
salt
/
states
/
Filename :
stateconf.py
back
Copy
""" Stateconf System ================ The stateconf system is intended for use only with the stateconf renderer. This State module presents the set function. This function does not execute any functionality, but is used to interact with the stateconf renderer. """ def _no_op(name, **kwargs): """ No-op state to support state config via the stateconf renderer. """ return dict(name=name, result=True, changes={}, comment="") set = context = _no_op # pylint: disable=C0103