aboutsummaryrefslogtreecommitdiffstats
path: root/testing/novnc/alpine-specific-launch.js.patch
diff options
context:
space:
mode:
Diffstat (limited to 'testing/novnc/alpine-specific-launch.js.patch')
-rw-r--r--testing/novnc/alpine-specific-launch.js.patch17
1 files changed, 0 insertions, 17 deletions
diff --git a/testing/novnc/alpine-specific-launch.js.patch b/testing/novnc/alpine-specific-launch.js.patch
deleted file mode 100644
index d16b883d63e..00000000000
--- a/testing/novnc/alpine-specific-launch.js.patch
+++ /dev/null
@@ -1,17 +0,0 @@
---- a/utils/launch.sh
-+++ b/utils/launch.sh
-@@ -1,4 +1,4 @@
--#!/usr/bin/env bash
-+#!/bin/sh
-
- # Copyright (C) 2018 The noVNC Authors
- # Licensed under MPL 2.0 or any later version (see LICENSE.txt)
-@@ -165,7 +165,7 @@
- ${WEBSOCKIFY} ${SSLONLY} --web ${WEB} ${CERT:+--cert ${CERT}} ${KEY:+--key ${KEY}} ${PORT} ${VNC_DEST} ${RECORD_ARG} &
- proxy_pid="$!"
- sleep 1
--if ! ps -p ${proxy_pid} >/dev/null; then
-+if [ -z "$proxy_pid" ] || ! ps -o pid= | grep -qw ${proxy_pid}; then
- proxy_pid=
- echo "Failed to start WebSockets proxy"
- exit 1