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

Side by Side 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, 10 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 unified diff | Download patch
« no previous file with comments | « blimp/engine/Dockerfile ('k') | blimp/tools/bundle-engine.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #!/bin/bash
2
3 # Copyright 2016 The Chromium Authors. All rights reserved.
4 # Use of this source code is governed by a BSD-style license that can be
5 # found in the LICENSE file.
6
7 stunnel \
8 -p /engine/data/stunnel.pem \
9 -P /engine/stunnel.pid \
10 -d 25466 -r 25467 -f &
11 /engine/blimp_engine_app \
12 --disable-gpu \
13 --use-remote-compositing \
14 --disable-cached-picture-raster \
15 --blimp-client-token-path=/engine/data/client_token \
16 $@ &
17
18 # Stop execution if either stunnel or blimp_engine_app die.
19 wait -n
OLDNEW
« 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