2016-04-11 02:29:41 -04:00
|
|
|
#!/bin/bash -e
|
|
|
|
|
2018-03-02 15:08:24 -05:00
|
|
|
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"
|
2020-08-11 03:04:29 -04:00
|
|
|
install -m 755 files/.xprofile "${ROOTFS_DIR}/etc/skel/.xprofile"
|
2020-08-11 19:26:21 -04:00
|
|
|
install -m 755 files/.browser.sh "${ROOTFS_DIR}/etc/skel/.browser.sh"
|
2020-08-11 03:04:29 -04:00
|
|
|
mkdir -p "${ROOTFS_DIR}/etc/skel/.config/openbox"
|
|
|
|
install -m 644 files/autostart "${ROOTFS_DIR}/etc/skel/.config/openbox/autostart"
|
2016-04-11 02:29:41 -04:00
|
|
|
|
2016-11-14 18:55:45 -05:00
|
|
|
on_chroot << EOF
|
2018-12-09 17:52:03 -05:00
|
|
|
if ! id -u ${FIRST_USER_NAME} >/dev/null 2>&1; then
|
|
|
|
adduser --disabled-password --gecos "" ${FIRST_USER_NAME}
|
2016-04-11 02:29:41 -04:00
|
|
|
fi
|
2020-08-11 05:18:14 -04:00
|
|
|
if ! id -u octoprint >/dev/null 2>&1; then
|
2020-08-11 20:25:59 -04:00
|
|
|
adduser --system --shell /usr/sbin/nologin --disabled-password --gecos "" octoprint
|
2020-08-11 05:18:14 -04:00
|
|
|
fi
|
2018-12-09 17:52:03 -05:00
|
|
|
echo "${FIRST_USER_NAME}:${FIRST_USER_PASS}" | chpasswd
|
2020-08-11 04:01:25 -04:00
|
|
|
echo "octoprint:$(cat /dev/urandom | tr -dc _A-Z-a-z-0-9 | head -c20)" | chpasswd
|
|
|
|
echo "root:$(cat /dev/urandom | tr -dc _A-Z-a-z-0-9 | head -c20)" | chpasswd
|
2016-04-11 02:29:41 -04:00
|
|
|
EOF
|