262 lines
7.6 KiB
Bash
Executable File
262 lines
7.6 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
if (( $EUID != 0 )); then
|
|
echo "Please run as root (sudo)"
|
|
exit
|
|
fi
|
|
|
|
if [ $SUDO_USER ]; then user=$SUDO_USER; fi
|
|
SCRIPTDIR=$(dirname $(readlink -f $0))
|
|
PIDEFAULT="/home/$user/oprint/bin/octoprint"
|
|
BUDEFAULT="/home/$user/OctoPrint/bin/octoprint"
|
|
OTHERDEFAULT=""
|
|
PS3='Installation type: '
|
|
options=("OctoPi" "OctoBuntu" "Other" "Quit")
|
|
select opt in "${options[@]}"
|
|
do
|
|
case $opt in
|
|
"OctoPi")
|
|
DAEMONPATH=$PIDEFAULT
|
|
INSTALL=1
|
|
break
|
|
;;
|
|
"OctoBuntu")
|
|
DAEMONPATH=$BUDEFAULT
|
|
INSTALL=2
|
|
break
|
|
;;
|
|
"Other")
|
|
DAEMONPATH=$OTHERDEFAULT
|
|
break
|
|
;;
|
|
"Quit")
|
|
exit 1
|
|
;;
|
|
*) echo "invalid option $REPLY";;
|
|
esac
|
|
done
|
|
|
|
echo "UNPLUG PRINTER FROM USB"
|
|
echo "Enter the name for new printer/instance (no spaces):"
|
|
read INSTANCE
|
|
if [ -z "$INSTANCE" ]; then
|
|
echo "No instance given. Exiting"
|
|
exit 1
|
|
fi
|
|
|
|
if test -f "/etc/systemd/system/$INSTANCE.service"; then
|
|
echo "Already have an entry for $INSTANCE. Exiting."
|
|
exit 1
|
|
fi
|
|
|
|
echo "Port on which this instance will run (ENTER will increment last value in /etc/octoprint_instances):"
|
|
read PORT
|
|
if [ -z "$PORT" ]; then
|
|
PORT=$(tail -1 /etc/octoprint_instances | sed -n -e 's/^.*\(port:\)\(.*\)/\2/p')
|
|
|
|
if [ -z "$PORT" ]; then
|
|
PORT=5000
|
|
fi
|
|
|
|
PORT=$((PORT+1))
|
|
echo Selected port is: $PORT
|
|
fi
|
|
|
|
if [ -f /etc/octoprint_instances ]; then
|
|
if grep -q $PORT /etc/octoprint_instances; then
|
|
echo "Port in use! Check /etc/octoprint_instances. Exiting."
|
|
exit 1
|
|
fi
|
|
fi
|
|
|
|
#collect user, basedir path, daemon path
|
|
echo "Octoprint Daemon User [$user]:"
|
|
read OCTOUSER
|
|
if [ -z "$OCTOUSER" ]; then
|
|
OCTOUSER=$user
|
|
fi
|
|
|
|
echo "Octoprint Executable Daemon Path [$DAEMONPATH]:"
|
|
read OCTOPATH
|
|
if [ -z "$OCTOPATH" ]; then
|
|
OCTOPATH=$DAEMONPATH
|
|
fi
|
|
|
|
if [ -f "$OCTOPATH" ]; then
|
|
echo "Path is valid"
|
|
else
|
|
echo "Path is not valid! Aborting"
|
|
exit 1
|
|
fi
|
|
|
|
echo "Octoprint Config Path (where the hidden instance directory will be) [/home/$user/]:"
|
|
read OCTOCONFIG
|
|
if [ -z "$OCTOCONFIG" ]; then
|
|
OCTOCONFIG="/home/$user/"
|
|
fi
|
|
|
|
#octoprint_base is the generic .octoprint folder that contains all configuration, upload, etc.
|
|
echo "Octoprint instance template path [/home/$user/.octoprint]:"
|
|
read BFOLD
|
|
if [ -z "$BFOLD" ]; then
|
|
BFOLD="/home/$user/.octoprint"
|
|
fi
|
|
|
|
if [ -d "$BFOLD" ]; then
|
|
echo "Path is valid"
|
|
else
|
|
echo "Path is not valid! Aborting"
|
|
exit 1
|
|
fi
|
|
|
|
#check to make sure first run is complete
|
|
if grep -q 'firstRun: true' $BFOLD/config.yaml; then
|
|
echo "WARNING!! You should run $OCTOPATH serve and setup the base profile and admin user before continuing"
|
|
exit 1
|
|
fi
|
|
|
|
read -p "Begin auto-detect printer serial number for udev entry?" -n 1 -r
|
|
echo #new line
|
|
if [[ $REPLY =~ ^[Yy]$ ]]
|
|
then
|
|
echo
|
|
#clear out journalctl - probably a better way to do this
|
|
journalctl --rotate > /dev/null 2>&1
|
|
journalctl --vacuum-time=1seconds > /dev/null 2>&1
|
|
echo "Plug your printer in via USB now (detection time-out in 1 min)"
|
|
counter=0
|
|
while [[ -z "$UDEV" ]] && [[ $counter -lt 30 ]]; do
|
|
UDEV=$(timeout 1s journalctl -kf | sed -n -e 's/^.*SerialNumber: //p')
|
|
TEMPUSB=$(timeout 1s journalctl -kf | sed -n -e 's/^.*\(cdc_acm\|ftdi_sio\) \([0-9].*[0-9]\): \(tty.*\|FTD.*\).*/\2/p')
|
|
|
|
counter=$(( $counter + 1 ))
|
|
done
|
|
|
|
fi
|
|
|
|
if [ -z "$UDEV" ]; then
|
|
echo "Printer Serial Number not detected"
|
|
read -p "Do you want to use the physical USB port to assign the udev entry? If you use this all USB hubs and printers must stay plugged into the same USB positions on your machine as they are right now (y/n)." -n 1 -r
|
|
if [[ $REPLY =~ ^[Yy]$ ]]; then
|
|
USB=$TEMPUSB
|
|
echo "Your printer will be setup at the following usb address:"
|
|
echo $USB
|
|
echo
|
|
else
|
|
exit 1
|
|
fi
|
|
|
|
else
|
|
echo "Serial number detected as: $UDEV"
|
|
fi
|
|
echo
|
|
#Octobuntu cameras
|
|
if [[ -n $INSTALL ]]; then
|
|
read -p "Would you like to auto detect an associated USB camera (experimental)?" -n 1 -r
|
|
if [[ $REPLY =~ ^[Yy]$ ]]
|
|
then
|
|
echo
|
|
#clear out journalctl - probably a better way to do this
|
|
journalctl --rotate > /dev/null 2>&1
|
|
journalctl --vacuum-time=1seconds > /dev/null 2>&1
|
|
echo "Plug your CAMERA in via USB now (detection time-out in 1 min)"
|
|
counter=0
|
|
while [[ -z "$CAM" ]] && [[ $counter -lt 30 ]]; do
|
|
CAM=$(timeout 1s journalctl -kf | sed -n -e 's/^.*SerialNumber: //p')
|
|
TEMPUSBCAM=$(timeout 1s journalctl -kf | sed -n -e 's/^.*uvcvideo \(.*\): tty.*/\1/p')
|
|
counter=$(( $counter + 1 ))
|
|
done
|
|
if [ -z "$CAM" ]; then
|
|
echo "Camera Serial Number not detected"
|
|
echo "Your camera should remain at the same USB position and hub. Its position in udev is $TEMPUSBCAM"
|
|
USBCAM=$TEMPUSBCAM
|
|
else
|
|
echo "Camera detected with serial number: $CAM"
|
|
fi
|
|
echo "Camera Port (ENTER will increment last value in /etc/camera_ports):"
|
|
read CAMPORT
|
|
if [ -z "$CAMPORT" ]; then
|
|
CAMPORT=$(tail -1 /etc/camera_ports)
|
|
|
|
if [ -z "$CAMPORT" ]; then
|
|
CAMPORT=8000
|
|
fi
|
|
|
|
CAMPORT=$((CAMPORT+1))
|
|
echo Selected port is: $CAMPORT
|
|
fi
|
|
fi
|
|
fi
|
|
echo
|
|
read -p "Ready to write all changes. Do you want to proceed? " -n 1 -r
|
|
echo
|
|
if [[ $REPLY =~ ^[Yy]$ ]];
|
|
then
|
|
cat $SCRIPTDIR/octoprint_generic.service | \
|
|
sed -e "s/OCTOUSER/$OCTOUSER/" \
|
|
-e "s#OCTOPATH#$OCTOPATH#" \
|
|
-e "s#OCTOCONFIG#$OCTOCONFIG#" \
|
|
-e "s/NEWINSTANCE/$INSTANCE/" \
|
|
-e "s/NEWPORT/$PORT/" > /etc/systemd/system/$INSTANCE.service
|
|
|
|
#Printer udev identifier technique - either Serial number or USB port
|
|
#Serial Number
|
|
if [ -n "$UDEV" ]; then
|
|
echo SUBSYSTEM==\"tty\", ATTRS{serial}==\"$UDEV\", SYMLINK+=\"octo_$INSTANCE\" >> /etc/udev/rules.d/99-octoprint.rules
|
|
fi
|
|
|
|
#USB port
|
|
if [ -n "$USB" ]; then
|
|
echo KERNELS==\"$USB\",SUBSYSTEMS==\"usb\",SYMLINK+=\"octo_$INSTANCE\" >> /etc/udev/rules.d/99-octoprint.rules
|
|
fi
|
|
|
|
#Octobuntu Cameras udev identifier - either Serial number or USB port
|
|
#Serial Number
|
|
if [[ -n $CAM || -n $USBCAM ]]; then
|
|
cat $SCRIPTDIR/octocam_generic.service | \
|
|
sed -e "s/OCTOUSER/$OCTOUSER/" \
|
|
-e "s/OCTOCAM/cam_$INSTANCE/" \
|
|
-e "s/CAMPORT/$CAMPORT/" > /etc/systemd/system/$INSTANCE_cam.service
|
|
|
|
echo $CAMPORT >> /etc/camera_ports
|
|
fi
|
|
|
|
if [ -n "$CAM" ]; then
|
|
echo SUBSYSTEM==\"video4linux\", ATTRS{serial}==\"$CAM\", ATTR{index}==\"0\", SYMLINK+=\"cam_$INSTANCE\" >> /etc/udev/rules.d/99-octoprint.rules
|
|
fi
|
|
|
|
#USB port
|
|
if [ -n "$USBCAM" ]; then
|
|
echo KERNELS==\"$USBCAM\",SUBSYSTEMS==\"video4linux\", ATTR{index}==\"0\", SYMLINK+=\"cam_$INSTANCE\" >> /etc/udev/rules.d/99-octoprint.rules
|
|
fi
|
|
|
|
#just to be on the safe side, add user to dialout and video
|
|
usermod -a -G dialout,video $OCTOUSER
|
|
|
|
#Open port to be on safe side
|
|
#ufw allow $PORT/tcp
|
|
|
|
#Append port in the port list
|
|
echo $PORT >> /etc/octoprint_ports
|
|
|
|
#Append instance name to list for removal tool
|
|
echo instance:$INSTANCE port:$PORT >> /etc/octoprint_instances
|
|
|
|
#copy all files to our new directory
|
|
cp -rp $BFOLD $OCTOCONFIG/.$INSTANCE
|
|
|
|
#Do config.yaml modifications here if needed..
|
|
cat $BFOLD/config.yaml | sed -e "s/INSTANCE/$INSTANCE/" > $OCTOCONFIG/.$INSTANCE/config.yaml
|
|
|
|
#Reset udev
|
|
udevadm control --reload-rules
|
|
udevadm trigger
|
|
systemctl daemon-reload
|
|
sleep 5
|
|
|
|
#Start and enable system process
|
|
systemctl start $INSTANCE
|
|
systemctl enable $INSTANCE
|
|
fi
|
|
|