From 8f5fe6dfe184e4aa00fcbc5e6af7d1e0fd550452 Mon Sep 17 00:00:00 2001 From: Alexander Boettcher Date: Wed, 10 May 2023 11:42:16 +0200 Subject: [PATCH] tool/run/load/ipxe: use installed_command to find lighttpd if it is installed in /usr/sbin --- tool/run/load/ipxe | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tool/run/load/ipxe b/tool/run/load/ipxe index 4c88390f10..18cf4a7799 100644 --- a/tool/run/load/ipxe +++ b/tool/run/load/ipxe @@ -96,7 +96,7 @@ proc create_ipxe_config { } { close $fh global lighttpd_spawn_id - spawn lighttpd -f $conf_file -D + spawn [installed_command lighttpd] -f $conf_file -D set lighttpd_spawn_id $spawn_id }