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

Side by Side Diff: scripts/image_signing/sample-test-configs/ensure_no_nonrelease_files.config

Issue 6480121: Check in sample configs to document how to configure these tests. (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/vboot_reference.git@master
Patch Set: move ensure_no_nonrelease_files.config out of parent dir Created 9 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 | Annotate | Revision Log
OLDNEW
1 #!/bin/bash 1 #!/bin/bash
2 2
3 # Copyright (c) 2011 The Chromium OS Authors. All rights reserved. 3 # Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
4 # Use of this source code is governed by a BSD-style license that can be 4 # Use of this source code is governed by a BSD-style license that can be
5 # found in the LICENSE file. 5 # found in the LICENSE file.
6 6
7 # Files/directories that should never be present in a clean, 7 # Files/directories that should never be present in a clean,
8 # standard release build. 8 # standard release build.
9 RELEASE_FILE_BLACKLIST=( 9 RELEASE_FILE_BLACKLIST=(
10 # Flag-file indicating "developer mode", crosh offers "shell" if present: 10 # Flag-file indicating "developer mode", crosh offers "shell" if present:
11 /root/.dev_mode 11 /root/.dev_mode
12 12
13 # Should not ship with a local account pre-set on the system 13 # Should not ship with a local account pre-set on the system
14 /opt/google/chrome/localaccount 14 /opt/google/chrome/localaccount
15 15
16 # Generation of this should happen on-device. Don't want to introduce 16 # Generation of this should happen on-device. Don't want to introduce
17 # any cryptohome-related weaknesses e.g. everyone using the same salt. 17 # any cryptohome-related weaknesses e.g. everyone using the same salt.
18 /home/.shadow 18 /home/.shadow
19 ) 19 )
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698