- CODE: SELECT ALL
which: no setuidgid in (/usr/bin:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin:/usr/bin)
Perhaps this message can get suppressed to avoid confusion.
Although, I do not know if this is the best way to handle this, but I found changing the code this way suppress the message:
- CODE: SELECT ALL
/usr/bin/make_vtl_media
line 42
from:
if [ -x "$(which setuidgid)" ]; then
to:
if [ -x "$(which setuidgid 2>/dev/null)" ]; then
I am sure there may be much better ways to handle this.. Just bringing this up to attention ..
