The getent
command is replaced by zsh with a function. In share/zsh/5.2/function/compaudit there is a check
[[ -x /usr/bin/getent ]] || getent() {
...etc
Should we just undefine that function or is this better to address with upstream?
Use zsh on a machine where getent is not at that location.
This could be rewritten as:
[[ -n ${commands[getent]} ]] || getent() {
So yes please provide a patch or report this to upstream.
@Mic92 I sent your suggestion to upstream.
Most helpful comment
@Mic92 I sent your suggestion to upstream.