PK œqhYî¶J‚ßF ßF ) nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/
Dir : /proc/self/root/opt/saltstack/salt/lib/python3.10/site-packages/salt/states/ |
Server: Linux ngx353.inmotionhosting.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 IP: 209.182.202.254 |
Dir : //proc/self/root/opt/saltstack/salt/lib/python3.10/site-packages/salt/states/sysrc.py |
""" State to work with sysrc """ # define the module's virtual name __virtualname__ = "sysrc" def __virtual__(): """ Only load if sysrc executable exists """ if __salt__["cmd.has_exec"]("sysrc"): return True return (False, "Command not found: sysrc") def managed(name, value, **kwargs): """ Ensure a sysrc variable is set to a specific value. name The variable name to set value Value to set the variable to file (optional) The rc file to add the variable to. jail (option) the name or JID of the jail to set the value in. Example: .. code-block:: yaml syslogd: sysrc.managed: - name: syslogd_flags - value: -ss """ ret = {"name": name, "changes": {}, "result": False, "comment": ""} # Check the current state current_state = __salt__["sysrc.get"](name=name, **kwargs) if current_state is not None: for rcname, rcdict in current_state.items(): if rcdict[name] == value: ret["result"] = True ret["comment"] = f"{name} is already set to the desired value." return ret if __opts__["test"] is True: ret["comment"] = f'The value of "{name}" will be changed!' ret["changes"] = { "old": current_state, "new": name + " = " + value + " will be set.", } # When test=true return none ret["result"] = None return ret new_state = __salt__["sysrc.set"](name=name, value=value, **kwargs) ret["comment"] = f'The value of "{name}" was changed!' ret["changes"] = {"old": current_state, "new": new_state} ret["result"] = True return ret def absent(name, **kwargs): """ Ensure a sysrc variable is absent. name The variable name to set file (optional) The rc file to add the variable to. jail (option) the name or JID of the jail to set the value in. """ ret = {"name": name, "changes": {}, "result": False, "comment": ""} # Check the current state current_state = __salt__["sysrc.get"](name=name, **kwargs) if current_state is None: ret["result"] = True ret["comment"] = f'"{name}" is already absent.' return ret if __opts__["test"] is True: ret["comment"] = f'"{name}" will be removed!' ret["changes"] = { "old": current_state, "new": f'"{name}" will be removed.', } # When test=true return none ret["result"] = None return ret new_state = __salt__["sysrc.remove"](name=name, **kwargs) ret["comment"] = f'"{name}" was removed!' ret["changes"] = {"old": current_state, "new": new_state} ret["result"] = True return ret