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">>}},
```
This commit is contained in:
JianBo He 2023-06-16 19:54:09 +08:00
parent 5f7e938b20
commit b84623d640
1 changed files with 1 additions and 1 deletions

2
build
View File

@ -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