mirror of
https://github.com/flatcar/scripts.git
synced 2025-08-07 21:16:57 +02:00
BUG=none TEST=set_shared_user_passwd, build_image, checked password Change-Id: Ida251e36f32d6cb116425d475882c5cee601b9f6 Review URL: http://codereview.chromium.org/6904093
26 lines
771 B
Bash
Executable File
26 lines
771 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
# Script to set the password for the shared user account. Stores the MD5crypt'd
|
|
# password to a file inside chroot, for use by build_image.
|
|
|
|
# This can only run inside the chroot.
|
|
. "/usr/lib/crosutils/common.sh" || exit 1
|
|
|
|
# Die on any errors.
|
|
set -e
|
|
|
|
SHARED_USER_PASSWD_FILE="/etc/shared_user_passwd.txt"
|
|
|
|
# Get password
|
|
read -p "Enter password for shared user account: " PASSWORD
|
|
|
|
CRYPTED_PASSWD="$(echo "$PASSWORD" | openssl passwd -1 -stdin)"
|
|
PASSWORD="gone now"
|
|
|
|
echo "${CRYPTED_PASSWD}" | sudo_clobber "${SHARED_USER_PASSWD_FILE}"
|
|
echo "Password set in ${SHARED_USER_PASSWD_FILE}"
|