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 28
28
source " $PWD /lib/common.sh"
29
29
30
30
DEFAULT_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'"
31
33
32
34
SKIP_COPYRIGHTS_CHECK=true
33
35
Original file line number Diff line number Diff line change 17
17
# shellcheck disable=SC2034
18
18
19
19
DEFAULT_PACKAGE_GIT_URL=" https://github.com/delphix/saml-app.git"
20
+ MEND_SCAN_APPLICABLE=" true"
21
+ MEND_SCAN_USING_SUDO=" true"
20
22
21
23
function build() {
22
24
local java_home
Original file line number Diff line number Diff line change 19
19
source " $PWD /lib/common.sh"
20
20
21
21
DEFAULT_PACKAGE_GIT_URL=" https://github.com/delphix/dms-core-gate.git"
22
+ MEND_SCAN_APPLICABLE=" true"
22
23
23
24
function prepare() {
24
25
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"
20
20
21
21
DEFAULT_PACKAGE_GIT_URL=" https://github.com/delphix/dlpx-app-gate.git"
22
22
PACKAGE_DEPENDENCIES=" crypt-blowfish host-jdks"
23
+ MEND_SCAN_APPLICABLE=" true"
23
24
24
25
function prepare() {
25
26
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"
25
25
#
26
26
export LOGGING=false
27
27
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 )
29
29
30
30
function usage() {
31
31
local output_fields=" ${ALL_OUTPUT_FIELDS[*]} "
@@ -70,6 +70,9 @@ function print_package() {
70
70
case " $field " in
71
71
name) outarray+=(" $pkgname " ) ;;
72
72
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} " ) ;;
73
76
dependencies)
74
77
for dep in $PACKAGE_DEPENDENCIES ; do
75
78
check_package_exists " $dep "
You can’t perform that action at this time.
0 commit comments