We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 342d071 commit 306125dCopy full SHA for 306125d
config/guacamole/update_guacamole.py
@@ -4,9 +4,12 @@
4
import os
5
import secrets
6
import string
7
+import urllib3
8
9
from GuacamoleClient import GuacamoleClient
10
11
+urllib3.disable_warnings()
12
+
13
guacamoleAdminUser = "guacadmin"
14
guacamoleAdminStandardPassword = "guacadmin"
15
script_dir = os.path.dirname(__file__)
init/bootstrap_ubuntu_server.sh
@@ -16,7 +16,9 @@ if [[ -z "${FIELD_NAME}" ]]; then
16
fi
17
18
set -euo pipefail
19
-set -x
20
+# Plain output for buildkit (docker compose)
21
+export BUILDKIT_PROGRESS=plain
22
23
# Update system
24
if ! dpkg -l | grep git; then
0 commit comments