From b84623d640faa910c19148bf33b03eda4ba06874 Mon Sep 17 00:00:00 2001 From: JianBo He Date: Fri, 16 Jun 2023 19:54:09 +0800 Subject: [PATCH] fix(build): add libsasl2-modules-gssapi-mit as deps Before this fix, the kerberos authentication in kafka will report the following errors: ``` ... {{sasl_auth_error,{sass_nomech,<<"SASL(-4): no mechanism available: No worthy mechs found">>}}, ``` --- build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build b/build index f3591d6a1..5464219b3 100755 --- a/build +++ b/build @@ -380,7 +380,7 @@ make_docker() { ## extra_deps is a comma separated list of debian 11 package names local extra_deps='' if [[ "$PROFILE" = *enterprise* ]]; then - extra_deps='libsasl2-2' + extra_deps='libsasl2-2,libsasl2-modules-gssapi-mit' fi echo '_build' >> ./.dockerignore set -x