Logan Gartner
b94fcfc1c9
OctoPrint port and listening IP can now be configured First-time and Octo-Config now use a shared library reducing duplicate code Reverted output files to default format Updated TODO
18 lines
668 B
Bash
Executable file
18 lines
668 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"
|
|
install -m 755 files/octo-lib.sh "${ROOTFS_DIR}/usr/local/lib/octo-lib.sh"
|
|
install -m 755 files/start-octoprint "${ROOTFS_DIR}/usr/local/bin/start-octoprint"
|
|
|
|
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
|
|
|
|
on_chroot << EOF
|
|
systemctl set-default multi-user.target
|
|
EOF
|