mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Fix package capture regex to catch arm64 debs
This commit is contained in:
parent
f7c692ed76
commit
e521291d83
1 changed files with 3 additions and 1 deletions
|
@ -273,7 +273,9 @@ class SaltPkgInstall:
|
|||
else:
|
||||
log.error("Unexpected file extension: %s", file_ext)
|
||||
|
||||
if re.search(r"salt(.*)(x86_64|all|amd64|aarch64)\.(rpm|deb)$", f_path):
|
||||
if re.search(
|
||||
r"salt(.*)(x86_64|all|amd64|aarch64|arm64)\.(rpm|deb)$", f_path
|
||||
):
|
||||
self.installer_pkg = True
|
||||
self.pkgs.append(f_path)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue