Skip to content

Commit 27e6883

Browse files
authored
DLPX-94695 "ORACLE_UPGRADE_MINIMUM_UPGRADE_VERSION_TO_RELEASE_SOLARIS_11_4" fails while verifying VDB/dSource state after Upgrade. (#829)
PR URL: https://www.github.com/delphix/appliance-build/pull/829
1 parent f9f352d commit 27e6883

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

upgrade/upgrade-scripts/rootfs-container

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -264,14 +264,14 @@ function quiesce_sources_if_needed() {
264264
# quiesce sources. Only upgrades going to 2025.4.0.0 or greater need
265265
# this hack to quiesce sources.
266266
#
267-
compare_versions "$UPGRADE_VERSION" lt "2025.4.0.0-0" || return 0
267+
compare_versions "$UPGRADE_VERSION" lt "2025.4.0.0-0" && return 0
268268

269269
#
270270
# Also, if the version we're coming from is 2025.3.0.1 or greater, then
271271
# don't quiesce sources. All versions 2025.3.0.1 and greater, should
272272
# quiesce sources properly from the stack's upgrade logic.
273273
#
274-
compare_versions "$UPGRADE_BASE_VERSION" ge "2025.3.0.1-0" || return 0
274+
compare_versions "$UPGRADE_BASE_VERSION" ge "2025.3.0.1-0" && return 0
275275

276276
#
277277
# At this point, we know we're:

0 commit comments

Comments
 (0)