File tree Expand file tree Collapse file tree 5 files changed +10
-1
lines changed Expand file tree Collapse file tree 5 files changed +10
-1
lines changed Original file line number Diff line number Diff line change 2828source " $PWD /lib/common.sh"
2929
3030DEFAULT_PACKAGE_GIT_URL=" https://github.com/delphix/dms-core-gate.git"
31+ MEND_SCAN_APPLICABLE=" true"
32+ MEND_SCAN_IMAGES=" 'delphix-masking-proxy', 'delphix-masking-database', 'delphix-masking-app'"
3133
3234SKIP_COPYRIGHTS_CHECK=true
3335
Original file line number Diff line number Diff line change 1717# shellcheck disable=SC2034
1818
1919DEFAULT_PACKAGE_GIT_URL=" https://github.com/delphix/saml-app.git"
20+ MEND_SCAN_APPLICABLE=" true"
21+ MEND_SCAN_USING_SUDO=" true"
2022
2123function build() {
2224 local java_home
Original file line number Diff line number Diff line change 1919source " $PWD /lib/common.sh"
2020
2121DEFAULT_PACKAGE_GIT_URL=" https://github.com/delphix/dms-core-gate.git"
22+ MEND_SCAN_APPLICABLE=" true"
2223
2324function prepare() {
2425 logmust read_list " $WORKDIR /repo/packaging/build-dependencies"
Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ source "$PWD/lib/common.sh"
2020
2121DEFAULT_PACKAGE_GIT_URL=" https://github.com/delphix/dlpx-app-gate.git"
2222PACKAGE_DEPENDENCIES=" crypt-blowfish host-jdks"
23+ MEND_SCAN_APPLICABLE=" true"
2324
2425function prepare() {
2526 logmust read_list " $WORKDIR /repo/appliance/packaging/build-dependencies"
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ source "$TOP/lib/common.sh"
2525#
2626export LOGGING=false
2727
28- ALL_OUTPUT_FIELDS=(name git-url dependencies can-update)
28+ ALL_OUTPUT_FIELDS=(name git-url dependencies can-update mend-scan mend-scan-images mend-scan-using-sudo )
2929
3030function usage() {
3131 local output_fields=" ${ALL_OUTPUT_FIELDS[*]} "
@@ -70,6 +70,9 @@ function print_package() {
7070 case " $field " in
7171 name) outarray+=(" $pkgname " ) ;;
7272 git-url) outarray+=(" ${DEFAULT_PACKAGE_GIT_URL:- none} " ) ;;
73+ mend-scan) outarray+=(" ${MEND_SCAN_APPLICABLE:- none} " ) ;;
74+ mend-scan-images) outarray+=(" ${MEND_SCAN_IMAGES:- none} " ) ;;
75+ mend-scan-using-sudo) outarray+=(" ${MEND_SCAN_USING_SUDO:- none} " ) ;;
7376 dependencies)
7477 for dep in $PACKAGE_DEPENDENCIES ; do
7578 check_package_exists " $dep "
You can’t perform that action at this time.
0 commit comments