Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(825)

Unified Diff: blimp/engine/start_engine.sh

Issue 1638153002: Set up an stunnel endpoint for the engine. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: No loger apt-get updating twice Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « blimp/engine/Dockerfile ('k') | blimp/tools/bundle-engine.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: blimp/engine/start_engine.sh
diff --git a/blimp/engine/start_engine.sh b/blimp/engine/start_engine.sh
new file mode 100755
index 0000000000000000000000000000000000000000..f507c24b2e7fc5810ec97fbeb07f04ac9847c423
--- /dev/null
+++ b/blimp/engine/start_engine.sh
@@ -0,0 +1,19 @@
+#!/bin/bash
+
+# Copyright 2016 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+stunnel \
+ -p /engine/data/stunnel.pem \
+ -P /engine/stunnel.pid \
+ -d 25466 -r 25467 -f &
+/engine/blimp_engine_app \
+ --disable-gpu \
+ --use-remote-compositing \
+ --disable-cached-picture-raster \
+ --blimp-client-token-path=/engine/data/client_token \
+ $@ &
+
+# Stop execution if either stunnel or blimp_engine_app die.
+wait -n
« no previous file with comments | « blimp/engine/Dockerfile ('k') | blimp/tools/bundle-engine.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698