mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-22 04:40:22 -07:00
fix pkg name nevra parsing regex in dnf (#53572)
This commit is contained in:
parent
9546761407
commit
7b98ff6a31
2 changed files with 5 additions and 1 deletions
|
@ -383,7 +383,7 @@ class DnfModule(YumDnf):
|
|||
]
|
||||
|
||||
rpm_arch_re = re.compile(r'(.*)\.(.*)')
|
||||
rpm_nevr_re = re.compile(r'(\S+)-(?:(\d*):)?(.*)-(~?\w+[\w.]*)')
|
||||
rpm_nevr_re = re.compile(r'(\S+)-(?:(\d*):)?(.*)-(~?\w+[\w.+]*)')
|
||||
try:
|
||||
arch = None
|
||||
rpm_arch_match = rpm_arch_re.match(packagename)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue