2020-04-07 14:14:01 +02:00
|
|
|
From c2989e749f04aa8477130df649e550f5349a9a1f Mon Sep 17 00:00:00 2001
|
2019-09-06 14:06:25 +02:00
|
|
|
From: Mihai Dinca <mdinca@suse.de>
|
|
|
|
Date: Wed, 31 Jul 2019 15:29:03 +0200
|
|
|
|
Subject: [PATCH] Fix aptpkg systemd call (bsc#1143301)
|
|
|
|
|
|
|
|
---
|
|
|
|
salt/modules/aptpkg.py | 2 +-
|
|
|
|
tests/unit/modules/test_aptpkg.py | 2 +-
|
|
|
|
2 files changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
|
|
|
|
diff --git a/salt/modules/aptpkg.py b/salt/modules/aptpkg.py
|
2020-04-07 14:14:01 +02:00
|
|
|
index 13484c96bc..a5b039fc79 100644
|
2019-09-06 14:06:25 +02:00
|
|
|
--- a/salt/modules/aptpkg.py
|
|
|
|
+++ b/salt/modules/aptpkg.py
|
2020-04-07 14:14:01 +02:00
|
|
|
@@ -168,7 +168,7 @@ def _call_apt(args, scope=True, **kwargs):
|
2019-09-06 14:06:25 +02:00
|
|
|
'''
|
|
|
|
cmd = []
|
|
|
|
if scope and salt.utils.systemd.has_scope(__context__) and __salt__['config.get']('systemd.scope', True):
|
|
|
|
- cmd.extend(['systemd-run', '--scope'])
|
|
|
|
+ cmd.extend(['systemd-run', '--scope', '--description "{0}"'.format(__name__)])
|
|
|
|
cmd.extend(args)
|
|
|
|
|
|
|
|
params = {'output_loglevel': 'trace',
|
|
|
|
diff --git a/tests/unit/modules/test_aptpkg.py b/tests/unit/modules/test_aptpkg.py
|
2020-04-07 14:14:01 +02:00
|
|
|
index 10e960f090..88eed062c4 100644
|
2019-09-06 14:06:25 +02:00
|
|
|
--- a/tests/unit/modules/test_aptpkg.py
|
|
|
|
+++ b/tests/unit/modules/test_aptpkg.py
|
2020-04-07 14:14:01 +02:00
|
|
|
@@ -645,7 +645,7 @@ class AptUtilsTestCase(TestCase, LoaderModuleMockMixin):
|
2019-09-06 14:06:25 +02:00
|
|
|
with patch.dict(aptpkg.__salt__, {'cmd.run_all': MagicMock(), 'config.get': MagicMock(return_value=True)}):
|
|
|
|
aptpkg._call_apt(['apt-get', 'purge', 'vim']) # pylint: disable=W0106
|
|
|
|
aptpkg.__salt__['cmd.run_all'].assert_called_once_with(
|
|
|
|
- ['systemd-run', '--scope', 'apt-get', 'purge', 'vim'], env={},
|
|
|
|
+ ['systemd-run', '--scope', '--description "salt.modules.aptpkg"', 'apt-get', 'purge', 'vim'], env={},
|
|
|
|
output_loglevel='trace', python_shell=False)
|
|
|
|
|
|
|
|
def test_call_apt_with_kwargs(self):
|
|
|
|
--
|
2019-11-28 16:41:55 +01:00
|
|
|
2.16.4
|
2019-09-06 14:06:25 +02:00
|
|
|
|
|
|
|
|