This is an automated email from the ASF dual-hosted git repository.
awong pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/kudu.git
commit 72fe3d8a0617f18c9a4563bc250b3041e3fff7ca
Author: Grant Henke <granthenke@apache.org>
AuthorDate: Tue Feb 5 22:31:44 2019 -0600
[docker] Fix missing libsasl2 package on Ubuntu
The libsasl2-2 package is missing in the Ubuntu runtime
images. In the dev image it is pulled in as a dependency
of other dev packages. Without this the runtime image is
broken.
Change-Id: Ibc33c64c58377cb76dd0cdb2d3fbef956f7f1484
Reviewed-on: http://gerrit.cloudera.org:8080/12381
Tested-by: Grant Henke <granthenke@apache.org>
Reviewed-by: Andrew Wong <awong@cloudera.com>
---
docker/bootstrap-runtime-env.sh | 1 +
1 file changed, 1 insertion(+)
diff --git a/docker/bootstrap-runtime-env.sh b/docker/bootstrap-runtime-env.sh
index 9188d8d..e8353c6 100755
--- a/docker/bootstrap-runtime-env.sh
+++ b/docker/bootstrap-runtime-env.sh
@@ -57,6 +57,7 @@ elif [[ -f "/usr/bin/apt-get" ]]; then
krb5-admin-server \
krb5-kdc \
krb5-user \
+ libsasl2-2 \
libsasl2-modules \
libsasl2-modules-gssapi-mit \
nscd \
|