Files
showpiece-pi/stage1/01-sys-tweaks/00-run.sh
Serge Schneider 7f6d20cae1 Whitespace fixes
2025-09-05 12:39:13 +01:00

15 lines
334 B
Bash
Executable File

#!/bin/bash -e
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
if [ -n "${FIRST_USER_PASS}" ]; then
echo "${FIRST_USER_NAME}:${FIRST_USER_PASS}" | chpasswd
fi
echo "root:root" | chpasswd
EOF