Skip to content

Commit 88242bb

Browse files
Fix license and copyright info in buildDockerImage.sh (#1769)
Signed-off-by: Rishi Agarwal <[email protected]>
1 parent d2bfae0 commit 88242bb

File tree

1 file changed

+9
-13
lines changed

1 file changed

+9
-13
lines changed

OracleIdentityGovernance/dockerfiles/buildDockerImage.sh

+9-13
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,17 @@
1313
usage() {
1414
cat << EOF
1515
16-
Usage: buildDockerImage.sh -v [version] -d [domain-type] [-s]
17-
Builds a Docker Image for Oracle OIM Suite .
16+
Usage: buildDockerImage.sh -v [version]
17+
Builds a Docker Image for Oracle Identity Governance
1818
1919
Parameters:
2020
-h: view usage
21-
-v: Release version to build. Required. E.g 12.2.1.4.0
22-
-d: Domain type to be built. Required for building the domain -oim
21+
-v: Release version to build. Required. Supported: 12.2.1.4.0
2322
-s: skips the MD5 check of packages (DEFAULT)
2423
25-
LICENSE CDDL 1.0 + GPL 2.0
26-
Copyright (c) 2016-2017: Oracle and/or its affiliates. All rights reserved.
24+
LICENSE Universal Permissive License (UPL), Version 1.0
25+
Copyright (c) 2020 Oracle and/or its affiliates.
26+
2727
EOF
2828
exit 0
2929
}
@@ -51,16 +51,12 @@ while getopts "hsdgiv:t:" optname; do
5151
"s")
5252
SKIPMD5=1
5353
;;
54-
"t")
55-
DOMAINTYPE="$OPTARG"
56-
echo "Domain Type selected is : "$DOMAINTYPE
57-
;;
5854
"v")
5955
VERSION="$OPTARG"
6056
;;
61-
*)
62-
# Should not occur
63-
echo "Unknown error while processing options inside buildDockerImage.sh"
57+
*)
58+
# Should not occur
59+
echo "ERROR: Invalid argument. buildDockerImage.sh"
6460
;;
6561
esac
6662
done

0 commit comments

Comments
 (0)