Skip to content

Commit

Permalink
Add recore plugin to octoprint
Browse files Browse the repository at this point in the history
  • Loading branch information
eliasbakken committed May 31, 2024
1 parent 33df79b commit 3785009
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
7 changes: 7 additions & 0 deletions userpatches/overlay/bins/is-ssh-enabled
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/bin/bash

if systemctl is-active --quiet ssh; then
echo "true"
else
echo "false"
fi
7 changes: 6 additions & 1 deletion userpatches/overlay/install_components/octoprint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,17 @@ install_octoprint(){
cd OctoprintKlipperPlugin
/home/debian/OctoPrint/venv/bin/python setup.py install


cd /home/debian
git clone https://github.com/LazeMSS/OctoPrint-TopTemp.git
chown -R debian:debian /home/debian/OctoPrint-TopTemp
cd OctoPrint-TopTemp
/home/debian/OctoPrint/venv/bin/python setup.py install

cd /home/debian
git clone https://github.com/intelligent-agent/octoprint_recore.git
chown -R debian:debian /home/debian/octoprint_recore
cd octoprint_recore
/home/debian/OctoPrint/venv/bin/python setup.py install
}

install_octodash() {
Expand Down

0 comments on commit 3785009

Please sign in to comment.