You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
360 B
10 lines
360 B
#!/bin/sh
|
|
|
|
set -Eeuo pipefail
|
|
|
|
while ! curl -sf --connect-timeout 5 --expect100-timeout 5 "$KIOSK_URL"; do
|
|
echo "Waiting for the Kiosk APP to become available..."
|
|
sleep 10
|
|
done
|
|
|
|
exec /usr/bin/google/chrome/chrome --password-store=basic --no-default-browser-check --no-first-run --ash-no-nudges --disable-search-engine-choice-screen -kiosk "$KIOSK_URL"
|
|
|