Logan Gartner
bd1dd3554f
MJPG streamer has been added to allow for video to work inside of OctoPrint (url is http://rpi-ip/webcam/) OctoPrint + MJPG now uses Nginx as a reverse proxy. This is to simpify the frontend and eventually this will allow me to add HTTPS support Changed dialogrc background color to black to save eyeballs
17 lines
585 B
Bash
Executable file
17 lines
585 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"
|
|
|
|
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
|