haproxy removal causes loop?

This commit is contained in:
paukstelis
2022-06-08 13:22:30 -04:00
parent d3eea334f6
commit 6485aa3543

View File

@@ -692,6 +692,8 @@ prepare () {
echo "Installing OctoPrint in /home/$user/OctoPrint" echo "Installing OctoPrint in /home/$user/OctoPrint"
#make venv #make venv
sudo -u $user python3 -m venv /home/$user/OctoPrint sudo -u $user python3 -m venv /home/$user/OctoPrint
#update pip
sudo -u $user /home/$user/OctoPrint/bin/pip install --upgrade pip
#pre-install wheel #pre-install wheel
sudo -u $user /home/$user/OctoPrint/bin/pip install wheel sudo -u $user /home/$user/OctoPrint/bin/pip install wheel
#install oprint #install oprint
@@ -834,7 +836,6 @@ remove_everything() {
if [ -f /etc/haproxy/haproxy.cfg ]; then if [ -f /etc/haproxy/haproxy.cfg ]; then
sed -i "/use_backend $instance/d" /etc/haproxy/haproxy.cfg sed -i "/use_backend $instance/d" /etc/haproxy/haproxy.cfg
sed -i "/#$instance start/,/#$instance stop/d" /etc/haproxy/haproxy.cfg sed -i "/#$instance start/,/#$instance stop/d" /etc/haproxy/haproxy.cfg
systemctl restart haproxy.service
fi fi
done done
echo "Removing system stuff" echo "Removing system stuff"
@@ -849,6 +850,7 @@ remove_everything() {
echo "Removing template" echo "Removing template"
rm -rf /home/$user/.octoprint rm -rf /home/$user/.octoprint
rm -rf /home/$user/OctoPrint rm -rf /home/$user/OctoPrint
systemctl restart haproxy.service
systemctl daemon-reload systemctl daemon-reload
fi fi
} }