remove check for version string
this check does not get used anywhere and is not needed as zypper/rpm can handle version information directly
This commit is contained in:
parent
25e12c87c0
commit
8a99005098
1 changed files with 0 additions and 7 deletions
|
@ -196,13 +196,6 @@ def main():
|
||||||
result['name'] = name
|
result['name'] = name
|
||||||
result['state'] = state
|
result['state'] = state
|
||||||
|
|
||||||
# Decide if the name contains a version number.
|
|
||||||
match = re.search("-[0-9]", name)
|
|
||||||
if match:
|
|
||||||
specific_version = True
|
|
||||||
else:
|
|
||||||
specific_version = False
|
|
||||||
|
|
||||||
# Get package state
|
# Get package state
|
||||||
installed_state = get_package_state(module, name)
|
installed_state = get_package_state(module, name)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue