| OLD | NEW |
| 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 ) |
| OLD | NEW |