d07096ebb5
Add FIRST_USER_NAME and FIRST_USER_PASS variables that can be set in the config (or enviroment). Defaults to the standard pi and raspberry.
16 lines
464 B
Bash
Executable File
16 lines
464 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
install -d "${ROOTFS_DIR}/etc/systemd/system/getty@tty1.service.d"
|
|
install -m 644 files/noclear.conf "${ROOTFS_DIR}/etc/systemd/system/getty@tty1.service.d/noclear.conf"
|
|
install -v -m 644 files/fstab "${ROOTFS_DIR}/etc/fstab"
|
|
|
|
on_chroot << EOF
|
|
if ! id -u ${FIRST_USER_NAME} >/dev/null 2>&1; then
|
|
adduser --disabled-password --gecos "" ${FIRST_USER_NAME}
|
|
fi
|
|
echo "${FIRST_USER_NAME}:${FIRST_USER_PASS}" | chpasswd
|
|
echo "root:root" | chpasswd
|
|
EOF
|
|
|
|
|