diff --git a/app/internal/liquidsoap_config_utils.py b/app/internal/liquidsoap_config_utils.py index fc6c878..d7802f6 100644 --- a/app/internal/liquidsoap_config_utils.py +++ b/app/internal/liquidsoap_config_utils.py @@ -22,7 +22,7 @@ def generate_liquid_script(config: IcecastConfig): print(f" - Replaced placeholder {placeholder}") # Write the processed content to the output path - output_path = "/op25/op25/gr-op25_repeater/apps/op25.liq" + output_path = "/config/op25.liq" with open(output_path, 'w') as f: f.write(content) diff --git a/run_multi-rx_service.sh b/run_multi-rx_service.sh index f199b2c..ac46465 100644 --- a/run_multi-rx_service.sh +++ b/run_multi-rx_service.sh @@ -11,7 +11,7 @@ MULTI_RX_PID=$! # Store the PID of the background process # --- Start the liquid-dsp plot utility (op25.liq) in the background --- echo "Starting op25.liq..." -./op25.liq & +/configs/op25.liq & LIQ_PID=$! # Store the PID of the op25.liq process # Wait for both background jobs to finish.