File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -113,7 +113,7 @@ function generate_icx_proxy_config() {
113
113
DOMAINS=${ARG_DOMAINS[@]}
114
114
DOMAINS_SYSTEM=${ARG_DOMAINS_SYSTEM[@]}
115
115
DOMAINS_APPLICATION=${ARG_DOMAINS_APPLICATION[@]}
116
- DENYLIST_URL=${DENYLIST_URL}
116
+ DENYLIST_URL=${DENYLIST_URL:- }
117
117
EOF
118
118
119
119
# Denylist canister
Original file line number Diff line number Diff line change @@ -420,11 +420,10 @@ function copy_deny_list() {
420
420
421
421
NODE_PREFIX=${DEPLOYMENT} .$subnet_idx .$node_idx
422
422
if [[ -f " ${DENY_LIST:- } " ]]; then
423
- echo " Using deny list ${DENY_LIST} "
423
+ echo " Using denylist ${DENY_LIST} "
424
424
cp " ${DENY_LIST} " " ${CONFIG_DIR} /${NODE_PREFIX} /denylist.json"
425
425
else
426
- echo " Using empty denylist"
427
- touch " ${CONFIG_DIR} /${NODE_PREFIX} /denylist.json"
426
+ echo " No denylist provided"
428
427
fi
429
428
fi
430
429
done
You can’t perform that action at this time.
0 commit comments