enable to install mainsail/fluidd without moonraker
This allows the user to install remote mode Mainsail / Fluidd without Moonraker installed in order to setup separated web server from klipper host.
This commit is contained in:
@@ -19,7 +19,21 @@ function install_fluidd() {
|
||||
### exit early if moonraker not found
|
||||
if [[ -z $(moonraker_systemd) ]]; then
|
||||
local error="Moonraker not installed! Please install Moonraker first!"
|
||||
print_error "${error}" && return
|
||||
print_error "${error}"
|
||||
while true; do
|
||||
read -p "${cyan}###### Install Fluidd without Moonraker? (y/N):${white} " yn
|
||||
case "${yn}" in
|
||||
Y|y|Yes|yes)
|
||||
select_msg "Yes"
|
||||
break;;
|
||||
N|n|No|no|"")
|
||||
select_msg "No"
|
||||
abort_msg "Exiting Fluidd setup ...\n"
|
||||
return;;
|
||||
*)
|
||||
error_msg "Invalid Input!";;
|
||||
esac
|
||||
done
|
||||
fi
|
||||
|
||||
### checking dependencies
|
||||
|
||||
Reference in New Issue
Block a user