Re: run_rc_command succeeds if command not executable

2025-05-26 Thread Greg A. Woods
At Mon, 26 May 2025 16:18:38 +0200, Edgar Fuß wrote: Subject: run_rc_command succeeds if command not executable > > I wondered why mdnsd didn't start on boot without any trace in rc.log. > > Now I found out it's /usr missing in critical_filesystems_local, but why > on

run_rc_command succeeds if command not executable

2025-05-26 Thread Edgar Fuß
I wondered why mdnsd didn't start on boot without any trace in rc.log. Now I found out it's /usr missing in critical_filesystems_local, but why on earth does run_rc_command() do if [ ! -x ${_chroot}${command} ]; then return 0 fi so this is silently ignored?