mirror of
https://github.com/saltstack/salt.git
synced 2025-04-16 01:30:20 +00:00
Fix checking retcodes with runas on Windows
This commit is contained in:
parent
b128203e9c
commit
c2bb925bc6
3 changed files with 139 additions and 75 deletions
2
changelog/59977.fixed.md
Normal file
2
changelog/59977.fixed.md
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
Fixed an issue on Windows where checking success_retcodes when using the
|
||||||
|
runas parameter would fail. Now success_retcodes are checked correctly
|
|
@ -458,8 +458,6 @@ def _run(
|
||||||
if isinstance(cmd, (list, tuple)):
|
if isinstance(cmd, (list, tuple)):
|
||||||
cmd = " ".join(cmd)
|
cmd = " ".join(cmd)
|
||||||
|
|
||||||
return win_runas(cmd, runas, password, cwd)
|
|
||||||
|
|
||||||
if runas and salt.utils.platform.is_darwin():
|
if runas and salt.utils.platform.is_darwin():
|
||||||
# We need to insert the user simulation into the command itself and not
|
# We need to insert the user simulation into the command itself and not
|
||||||
# just run it from the environment on macOS as that method doesn't work
|
# just run it from the environment on macOS as that method doesn't work
|
||||||
|
@ -492,7 +490,7 @@ def _run(
|
||||||
# hang.
|
# hang.
|
||||||
runas = None
|
runas = None
|
||||||
|
|
||||||
if runas:
|
if runas and not salt.utils.platform.is_windows():
|
||||||
# Save the original command before munging it
|
# Save the original command before munging it
|
||||||
try:
|
try:
|
||||||
pwd.getpwnam(runas)
|
pwd.getpwnam(runas)
|
||||||
|
@ -513,7 +511,7 @@ def _run(
|
||||||
else:
|
else:
|
||||||
use_sudo = True
|
use_sudo = True
|
||||||
|
|
||||||
if runas or group:
|
if (runas or group) and not salt.utils.platform.is_windows():
|
||||||
try:
|
try:
|
||||||
# Getting the environment for the runas user
|
# Getting the environment for the runas user
|
||||||
# Use markers to thwart any stdout noise
|
# Use markers to thwart any stdout noise
|
||||||
|
@ -752,6 +750,19 @@ def _run(
|
||||||
|
|
||||||
if not use_vt:
|
if not use_vt:
|
||||||
# This is where the magic happens
|
# This is where the magic happens
|
||||||
|
|
||||||
|
if runas and salt.utils.platform.is_windows():
|
||||||
|
|
||||||
|
# We can't use TimedProc with runas on Windows
|
||||||
|
if change_windows_codepage:
|
||||||
|
salt.utils.win_chcp.set_codepage_id(windows_codepage)
|
||||||
|
|
||||||
|
ret = win_runas(cmd, runas, password, cwd)
|
||||||
|
|
||||||
|
if change_windows_codepage:
|
||||||
|
salt.utils.win_chcp.set_codepage_id(previous_windows_codepage)
|
||||||
|
|
||||||
|
else:
|
||||||
try:
|
try:
|
||||||
if change_windows_codepage:
|
if change_windows_codepage:
|
||||||
salt.utils.win_chcp.set_codepage_id(windows_codepage)
|
salt.utils.win_chcp.set_codepage_id(windows_codepage)
|
||||||
|
@ -832,10 +843,11 @@ def _run(
|
||||||
err = err.rstrip()
|
err = err.rstrip()
|
||||||
ret["pid"] = proc.process.pid
|
ret["pid"] = proc.process.pid
|
||||||
ret["retcode"] = proc.process.returncode
|
ret["retcode"] = proc.process.returncode
|
||||||
if ret["retcode"] in success_retcodes:
|
|
||||||
ret["retcode"] = 0
|
|
||||||
ret["stdout"] = out
|
ret["stdout"] = out
|
||||||
ret["stderr"] = err
|
ret["stderr"] = err
|
||||||
|
|
||||||
|
if ret["retcode"] in success_retcodes:
|
||||||
|
ret["retcode"] = 0
|
||||||
if any(
|
if any(
|
||||||
[stdo in ret["stdout"] for stdo in success_stdout]
|
[stdo in ret["stdout"] for stdo in success_stdout]
|
||||||
+ [stde in ret["stderr"] for stde in success_stderr]
|
+ [stde in ret["stderr"] for stde in success_stderr]
|
||||||
|
|
50
tests/pytests/functional/modules/cmd/test_run_win.py
Normal file
50
tests/pytests/functional/modules/cmd/test_run_win.py
Normal file
|
@ -0,0 +1,50 @@
|
||||||
|
import pytest
|
||||||
|
|
||||||
|
pytestmark = [
|
||||||
|
pytest.mark.core_test,
|
||||||
|
pytest.mark.windows_whitelisted,
|
||||||
|
]
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.fixture(scope="module")
|
||||||
|
def account():
|
||||||
|
with pytest.helpers.create_account() as _account:
|
||||||
|
yield _account
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.skip_unless_on_windows(reason="Minion is not Windows")
|
||||||
|
@pytest.mark.parametrize(
|
||||||
|
"exit_code, return_code, result",
|
||||||
|
[
|
||||||
|
(300, 0, True),
|
||||||
|
(299, 299, False),
|
||||||
|
],
|
||||||
|
)
|
||||||
|
def test_windows_script_exitcode(modules, state_tree, exit_code, return_code, result):
|
||||||
|
ret = modules.state.single(
|
||||||
|
"cmd.run", name=f"cmd.exe /c exit {exit_code}", success_retcodes=[2, 44, 300]
|
||||||
|
)
|
||||||
|
assert ret.result is result
|
||||||
|
assert ret.filtered["changes"]["retcode"] == return_code
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.skip_unless_on_windows(reason="Minion is not Windows")
|
||||||
|
@pytest.mark.parametrize(
|
||||||
|
"exit_code, return_code, result",
|
||||||
|
[
|
||||||
|
(300, 0, True),
|
||||||
|
(299, 299, False),
|
||||||
|
],
|
||||||
|
)
|
||||||
|
def test_windows_script_exitcode_runas(
|
||||||
|
modules, state_tree, exit_code, return_code, result, account
|
||||||
|
):
|
||||||
|
ret = modules.state.single(
|
||||||
|
"cmd.run",
|
||||||
|
name=f"cmd.exe /c exit {exit_code}",
|
||||||
|
success_retcodes=[2, 44, 300],
|
||||||
|
runas=account.username,
|
||||||
|
password=account.password,
|
||||||
|
)
|
||||||
|
assert ret.result is result
|
||||||
|
assert ret.filtered["changes"]["retcode"] == return_code
|
Loading…
Add table
Reference in a new issue