Logan Gartner
23c608198b
Timestamps in the build now grab the time at the beginning of the build, instead of the end Sudoers file didn't use chroot path Rearranged octo-config into first-time folder and renamed first-time folder to utils
14 lines
448 B
Bash
Executable file
14 lines
448 B
Bash
Executable file
#!/bin/bash -e
|
|
|
|
mkdir -p "${ROOTFS_DIR}/usr/local/bin/"
|
|
install -m 755 files/octo-config "${ROOTFS_DIR}/usr/local/bin/octo-config"
|
|
|
|
install -m 755 files/first-time.sh ${ROOTFS_DIR}/etc/profile.d/first-time.sh
|
|
|
|
mkdir -p ${ROOTFS_DIR}/etc/systemd/system/getty@tty1.service.d/
|
|
cat > ${ROOTFS_DIR}/etc/systemd/system/getty@tty1.service.d/override.conf << 'EOF'
|
|
[Service]
|
|
ExecStart=
|
|
ExecStart=-/usr/sbin/agetty --autologin root --noclear %I $TERM
|
|
EOF
|
|
|