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

Side by Side Diff: compute_engine_scripts/skfe/vm_config.sh

Issue 1083033003: Fix typo in skfe's vm_config.sh. (Closed) Base URL: https://skia.googlesource.com/buildbot.git@master
Patch Set: Created 5 years, 8 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 | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/bin/bash 1 #!/bin/bash
2 # 2 #
3 # This file contains constants for the shell scripts which interact 3 # This file contains constants for the shell scripts which interact
4 # with the skia frontend servers Google Compute Engine instance. 4 # with the skia frontend servers Google Compute Engine instance.
5 # 5 #
6 # Copyright 2014 Google Inc. All Rights Reserved. 6 # Copyright 2014 Google Inc. All Rights Reserved.
7 7
8 # Sets all constants in compute_engine_cfg.py as env variables. 8 # Sets all constants in compute_engine_cfg.py as env variables.
9 $(python ../compute_engine_cfg.py) 9 $(python ../compute_engine_cfg.py)
10 if [ $? != "0" ]; then 10 if [ $? != "0" ]; then
11 echo "Failed to read compute_engine_cfg.py!" 11 echo "Failed to read compute_engine_cfg.py!"
12 exit 1 12 exit 1
13 fi 13 fi
14 14
15 # The base names of the VM instances. Actual names are VM_NAME_BASE-name 15 # The base names of the VM instances. Actual names are VM_NAME_BASE-name
16 VM_NAME_BASE=${VM_NAME_BASE:="skia"} 16 VM_NAME_BASE=${VM_NAME_BASE:="skia"}
17 17
18 # The name of instance where skia docs is running on. 18 # The name of instance where skia frontend is running on.
19 INSTANCE_NAME=${VM_NAME_BASE}-skfe 19 INSTANCE_NAME=${VM_NAME_BASE}-skfe
20 20
21 NUM_INSTANCES=2 21 NUM_INSTANCES=2
22 22
23 MACHINE_TYPE=n1-standard-4 23 MACHINE_TYPE=n1-standard-4
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698