refactor(fluidd): apply necessary changes for moonraker PR 491
Signed-off-by: Dominik Willner <th33xitus@gmail.com>
This commit is contained in:
@@ -124,9 +124,11 @@ function install_fluidd_macros() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function download_fluidd_macros() {
|
function download_fluidd_macros() {
|
||||||
local fluidd_cfg="https://raw.githubusercontent.com/fluidd-core/FluiddPI/master/src/modules/fluidd/filesystem/home/pi/klipper_config/fluidd.cfg"
|
local fluidd_cfg path configs regex
|
||||||
local configs path
|
|
||||||
configs=$(find "${KLIPPER_CONFIG}" -type f -name "printer.cfg" | sort)
|
fluidd_cfg="https://raw.githubusercontent.com/fluidd-core/FluiddPI/master/src/modules/fluidd/filesystem/home/pi/klipper_config/fluidd.cfg"
|
||||||
|
regex="\/home\/${USER}\/([A-Za-z0-9_]+)\/config\/printer\.cfg"
|
||||||
|
configs=$(find "${HOME}" -maxdepth 3 -regextype posix-extended -regex "${regex}" | sort)
|
||||||
|
|
||||||
if [[ -n ${configs} ]]; then
|
if [[ -n ${configs} ]]; then
|
||||||
for config in ${configs}; do
|
for config in ${configs}; do
|
||||||
@@ -214,8 +216,10 @@ function remove_fluidd_logs() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function remove_fluidd_log_symlinks() {
|
function remove_fluidd_log_symlinks() {
|
||||||
local files
|
local files regex
|
||||||
files=$(find "${KLIPPER_LOGS}" -name "fluidd*" 2> /dev/null | sort)
|
|
||||||
|
regex="\/home\/${USER}\/([A-Za-z0-9_]+)\/logs\/fluidd-.*"
|
||||||
|
files=$(find "${HOME}" -maxdepth 3 -regextype posix-extended -regex "${regex}" 2> /dev/null | sort)
|
||||||
|
|
||||||
if [[ -n ${files} ]]; then
|
if [[ -n ${files} ]]; then
|
||||||
for file in ${files}; do
|
for file in ${files}; do
|
||||||
@@ -395,10 +399,11 @@ function select_fluidd_port() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function patch_fluidd_update_manager() {
|
function patch_fluidd_update_manager() {
|
||||||
local patched="false"
|
local patched moonraker_configs regex
|
||||||
local moonraker_configs
|
regex="\/home\/${USER}\/([A-Za-z0-9_]+)\/config\/moonraker\.conf"
|
||||||
moonraker_configs=$(find "${KLIPPER_CONFIG}" -type f -name "moonraker.conf" | sort)
|
moonraker_configs=$(find "${HOME}" -maxdepth 3 -type f -regextype posix-extended -regex "${regex}" | sort)
|
||||||
|
|
||||||
|
patched="false"
|
||||||
for conf in ${moonraker_configs}; do
|
for conf in ${moonraker_configs}; do
|
||||||
if ! grep -Eq "^\[update_manager fluidd\]$" "${conf}"; then
|
if ! grep -Eq "^\[update_manager fluidd\]$" "${conf}"; then
|
||||||
### add new line to conf if it doesn't end with one
|
### add new line to conf if it doesn't end with one
|
||||||
|
|||||||
Reference in New Issue
Block a user