We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Description Line is here: https://github.com/saltstack/salt/blob/master/salt/modules/aptpkg.py#L1006
Because no kwargs are sent to _call_apt, it's not possible to override scope=True in that function (located here: https://github.com/saltstack/salt/blob/master/salt/modules/aptpkg.py#L346 ). The line above should be out = _call_apt(cmd, **kwargs) so that scope can be overridden if desired.
scope=True
out = _call_apt(cmd, **kwargs)
The text was updated successfully, but these errors were encountered:
Closed by #63955
Sorry, something went wrong.
garethgreenaway
No branches or pull requests
Description
Line is here: https://github.com/saltstack/salt/blob/master/salt/modules/aptpkg.py#L1006
Because no kwargs are sent to _call_apt, it's not possible to override
scope=True
in that function (located here: https://github.com/saltstack/salt/blob/master/salt/modules/aptpkg.py#L346 ). The line above should beout = _call_apt(cmd, **kwargs)
so that scope can be overridden if desired.The text was updated successfully, but these errors were encountered: