mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Fix test
Signed-off-by: Pedro Algarvio <palgarvio@vmware.com>
This commit is contained in:
parent
e4c5ce3692
commit
ba29a27ad7
2 changed files with 1 additions and 5 deletions
|
@ -12,5 +12,4 @@ def test_ssm_present(install_salt):
|
|||
The ssm.exe binary needs to be present in both the zip and the exe/msi
|
||||
builds
|
||||
"""
|
||||
ssm_path = os.path.join(*install_salt.binary_paths["ssm"])
|
||||
assert os.path.exists(ssm_path)
|
||||
assert os.path.exists(install_salt.ssm_bin)
|
||||
|
|
|
@ -380,7 +380,6 @@ class SaltPkgInstall:
|
|||
"minion": ["salt-minion.exe"],
|
||||
"pip": ["salt-pip.exe"],
|
||||
"python": [python_bin],
|
||||
"ssm": [self.ssm_bin],
|
||||
}
|
||||
else:
|
||||
if os.path.exists(self.install_dir / "bin" / "salt"):
|
||||
|
@ -413,7 +412,6 @@ class SaltPkgInstall:
|
|||
"minion": [str(self.run_root), "minion"],
|
||||
"pip": [str(self.run_root), "pip"],
|
||||
"python": [python_bin],
|
||||
"ssm": [self.ssm_bin],
|
||||
}
|
||||
else:
|
||||
self.binary_paths = {
|
||||
|
@ -441,7 +439,6 @@ class SaltPkgInstall:
|
|||
"minion": [self.install_dir / "salt-minion.exe"],
|
||||
"pip": [self.install_dir / "salt-pip.exe"],
|
||||
"python": [python_bin],
|
||||
"ssm": [self.ssm_bin],
|
||||
}
|
||||
else:
|
||||
self.binary_paths = {
|
||||
|
|
Loading…
Add table
Reference in a new issue