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

Side by Side Diff: scripts/image_signing/ensure_no_nonrelease_files.config

Issue 6264023: Script to check for blacklisted files as described in chrome-os-partner:1991 (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/vboot_reference.git@master
Patch Set: Fix review items. Created 9 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | scripts/image_signing/ensure_no_nonrelease_files.sh » ('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 (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
5 # found in the LICENSE file.
6
7 # Files/directories that should never be present in a clean,
8 # standard release build.
9 RELEASE_FILE_BLACKLIST=(
10 # Flag-file indicating "developer mode", crosh offers "shell" if present:
11 /root/.dev_mode
12
13 # Should not ship with a local account pre-set on the system
14 /opt/google/chrome/localaccount
15
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.
18 /home/.shadow
19 )
OLDNEW
« no previous file with comments | « no previous file | scripts/image_signing/ensure_no_nonrelease_files.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698