File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -820,7 +820,7 @@ build_container() {
820
820
$PW
821
821
"
822
822
# This executes create_lxc.sh and creates the container and .conf file
823
- bash -c "$(wget -qLO - https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/ct/create_lxc.sh)" || exit
823
+ bash -c "$(wget -qLO - https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/ct/create_lxc.sh || echo exit $? )" || exit
824
824
825
825
LXC_CONFIG=/etc/pve/lxc/${CTID}.conf
826
826
if [ "$CT_TYPE" == "0" ]; then
@@ -882,7 +882,7 @@ http://dl-cdn.alpinelinux.org/alpine/latest-stable/community
882
882
EOF'
883
883
pct exec "$CTID" -- ash -c "apk add bash >/dev/null"
884
884
fi
885
- lxc-attach -n "$CTID" -- bash -c "$(wget -qLO - https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/install/$var_install.sh)" || exit
885
+ lxc-attach -n "$CTID" -- bash -c "$(wget -qLO - https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/install/$var_install.sh || echo exit $? )" || exit
886
886
887
887
}
888
888
You can’t perform that action at this time.
0 commit comments