[Bug 292051] net/py-wsdd: 'service wsdd status' fails to report status correctly
Date: Wed, 31 Dec 2025 10:35:06 UTC
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=292051
--- Comment #9 from Igor Pavlov <igor.arabesc.pavlov@gmail.com> ---
I think it has to be:
--- --- ---
if [ -n "${wsdd_group}" ]; then
warn "wsdd_group is replaced by wsdd_workgroup, check your
configuration."
wsdd_workgroup="${wsdd_workgroup:-$wsdd_group}"
wsdd_group=""
fi
--- --- ---
The `wsdd_workgroup` variable should not be overridden by `wsdd_group` if it
already has a value.
I get the following output after running the `service wsdd status` command:
--- --- ---
# service wsdd status
/usr/local/etc/rc.d/wsdd: WARNING: $command_interpreter /usr/local/bin/python3
!= python3
wsdd is running as pid 71407.
# ps -p 71407
PID TT STAT TIME COMMAND
71407 - I 0:00,16 python3 /usr/local/bin/wsdd -4 -i lan0 -D -p -w WORKGROUP
(python3.12)
--- --- ---
Although `service wsdd status` works with
`command_interpreter="/usr/local/bin/python3"`, I believe it would be more
correct to set `command_interpreter="python3"`.
--
You are receiving this mail because:
You are the assignee for the bug.