Skip to content

Commit

Permalink
Fixes #23224: rudder package doesn't upgrade openscap, and it brings …
Browse files Browse the repository at this point in the history
…a lot of chaos
  • Loading branch information
ncharles committed Aug 4, 2023
1 parent b78abd6 commit fddccd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion relay/sources/rudder-pkg/lib/rudder-pkg/rudderPkg.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def install_file(package_files, exact_version, exit_on_error=True):
if exist:
short_name = metadata['name'].replace('rudder-plugin-', '')
# These don't have upgrade scripts for now
if short_name.startswith('cis-') or short_name == 'openscap':
if short_name.startswith('cis-'):
logger.info('Skipping update, this package cannot be updated')
break
logger.info('The package is already installed, ugrading')
Expand Down

0 comments on commit fddccd5

Please sign in to comment.