Skip to content
This repository has been archived by the owner on Feb 10, 2022. It is now read-only.

general improvements #7

Merged
merged 2 commits into from Dec 8, 2017
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Prev Previous commit
update all sub packages in engine setup
Previously, we only update ovirt-engine-setup and ovirt-engine-dwh-setup
Now this patch, make sure we update all sub packages under
ovirt-engine-*setup*

Bug-Url: https://bugzilla.redhat.com/show_bug.cgi?id=1521044
  • Loading branch information
dougsland committed Dec 5, 2017
commit fa255522157847b399ae1fe35dc7b026f5754111
6 changes: 2 additions & 4 deletions src/ovirt-engine-hyper-upgrade
Expand Up @@ -380,14 +380,12 @@ class UpgradeHelper(Base):

yum_update_engine_cmd = list(self.YUM_UPDATE_CMD)
yum_update_engine_cmd.extend([
'ovirt-engine-setup*',
'ovirt-engine-dwh-setup*'
'ovirt-engine-*setup*',
])

if self.execute_cmd(yum_update_engine_cmd) != 0:
self.print_msg(
'Aborting.. yum update ovirt-engine-setup* '
'ovirt-engine-dwh-setup* failed...',
'Aborting.. yum update ovirt-engine-*setup* failed...',
MsgType.ERROR
)
sys.exit(2)
Expand Down