conflict in VERBOSE usage between build.func & bootstrap script, so forcing vebosity to 0

This commit is contained in:
Edward Moscardini 2025-03-26 16:59:44 -04:00
parent f942d17845
commit 7bf98d007d
No known key found for this signature in database
GPG Key ID: A00DAB80E4E936C9

View File

@ -28,7 +28,7 @@ msg_ok "Installed openziti"
read -r -p "Would you like to go through the auto configuration now? <y/N>" prompt
if [[ ${prompt,,} =~ ^(y|yes)$ ]]; then
msg_info "Starting Configuration"
bash /opt/openziti/etc/controller/bootstrap.bash
env VERBOSE=0 bash /opt/openziti/etc/controller/bootstrap.bash
msg_ok "Configuration Completed"
systemctl enable -q --now ziti-controller
else