Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Block new docker-cimprov installations #1557

Closed
wants to merge 9 commits into from
6 changes: 2 additions & 4 deletions installer/bundle/bundle_skel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -1456,10 +1456,8 @@ case "$installMode" in
OSS_BUNDLE=`basename $i -oss-test.sh`
[ ! -f oss-kits/${OSS_BUNDLE}-cimprov-*.sh ] && continue

if [ "$OSS_BUNDLE" = "docker" ] && [ "$skipDockerProviderInstall" = "true" ]; then
echo "$OSS_BUNDLE provider package installation skipped since --skip-docker-provider-install flag is set. \
If you are installing over an existing omsagent install and wish to remove the docker provider, \
you should first purge the existing installation and then install using the --skip-docker-provider-install flag."
# New installations of the docker-cimprov package are no longer supported
Copy link
Contributor

@ganga1980 ganga1980 Mar 1, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

since the option --skip-docker-provider-install being ignored for the new installations with this change, we should remove this option from supported install command options

if [ "$OSS_BUNDLE" = "docker" ]; then
continue
fi

Expand Down
Loading