Skip to content

Commit 306125d

Browse files
committed
Improve logs
1 parent 342d071 commit 306125d

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

config/guacamole/update_guacamole.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,12 @@
44
import os
55
import secrets
66
import string
7+
import urllib3
78

89
from GuacamoleClient import GuacamoleClient
910

11+
urllib3.disable_warnings()
12+
1013
guacamoleAdminUser = "guacadmin"
1114
guacamoleAdminStandardPassword = "guacadmin"
1215
script_dir = os.path.dirname(__file__)

init/bootstrap_ubuntu_server.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@ if [[ -z "${FIELD_NAME}" ]]; then
1616
fi
1717

1818
set -euo pipefail
19-
set -x
19+
20+
# Plain output for buildkit (docker compose)
21+
export BUILDKIT_PROGRESS=plain
2022

2123
# Update system
2224
if ! dpkg -l | grep git; then

0 commit comments

Comments
 (0)