summaryrefslogtreecommitdiff
path: root/scripts/image_signing/ensure_no_password.sh
blob: 4e2e606577ca116359c060430e04eb697530b8c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/bin/bash

# Copyright 2010 The ChromiumOS Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

# abort on error
set -e

# Load common constants and variables.
. "$(dirname "$0")/common.sh"

main() {
  if [[ $# -ne 1 ]]; then
    echo "Usage $0 <image>"
    exit 1
  fi

  local image="$1"

  local loopdev rootfs
  if [[ -d "${image}" ]]; then
    rootfs="${image}"
  else
    rootfs=$(make_temp_dir)
    loopdev=$(loopback_partscan "${image}")
    mount_loop_image_partition_ro "${loopdev}" 3 "${rootfs}"
  fi

  if ! no_chronos_password "${rootfs}"; then
    die "chronos password is set! Shouldn't be for release builds."
  fi
}
main "$@"