Skip to content

Commit

Permalink
Fix license and copyright info in buildDockerImage.sh (oracle#1769)
Browse files Browse the repository at this point in the history
Signed-off-by: Rishi Agarwal <[email protected]>
  • Loading branch information
rishiagarwal-oracle authored Oct 28, 2020
1 parent d2bfae0 commit 88242bb
Showing 1 changed file with 9 additions and 13 deletions.
22 changes: 9 additions & 13 deletions OracleIdentityGovernance/dockerfiles/buildDockerImage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,17 @@
usage() {
cat << EOF
Usage: buildDockerImage.sh -v [version] -d [domain-type] [-s]
Builds a Docker Image for Oracle OIM Suite .
Usage: buildDockerImage.sh -v [version]
Builds a Docker Image for Oracle Identity Governance
Parameters:
-h: view usage
-v: Release version to build. Required. E.g 12.2.1.4.0
-d: Domain type to be built. Required for building the domain -oim
-v: Release version to build. Required. Supported: 12.2.1.4.0
-s: skips the MD5 check of packages (DEFAULT)
LICENSE CDDL 1.0 + GPL 2.0
Copyright (c) 2016-2017: Oracle and/or its affiliates. All rights reserved.
LICENSE Universal Permissive License (UPL), Version 1.0
Copyright (c) 2020 Oracle and/or its affiliates.
EOF
exit 0
}
Expand Down Expand Up @@ -51,16 +51,12 @@ while getopts "hsdgiv:t:" optname; do
"s")
SKIPMD5=1
;;
"t")
DOMAINTYPE="$OPTARG"
echo "Domain Type selected is : "$DOMAINTYPE
;;
"v")
VERSION="$OPTARG"
;;
*)
# Should not occur
echo "Unknown error while processing options inside buildDockerImage.sh"
*)
# Should not occur
echo "ERROR: Invalid argument. buildDockerImage.sh"
;;
esac
done
Expand Down

0 comments on commit 88242bb

Please sign in to comment.