mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Fix misspelled argument in salt.modules.systemd.disable()
This commit is contained in:
parent
4e2b852f83
commit
17109e1522
1 changed files with 1 additions and 1 deletions
|
@ -889,7 +889,7 @@ def disable(name, **kwargs): # pylint: disable=unused-argument
|
|||
return __salt__['cmd.retcode'](
|
||||
_systemctl_cmd('disable', name, systemd_scope=True),
|
||||
python_shell=False,
|
||||
ignore_recode=True) == 0
|
||||
ignore_retcode=True) == 0
|
||||
|
||||
|
||||
# The unused kwargs argument is required to maintain consistency with the API
|
||||
|
|
Loading…
Add table
Reference in a new issue