Github user pepov commented on a diff in the pull request:
https://github.com/apache/nifi/pull/2866#discussion_r206872145
--- Diff: nifi-docker/dockerhub/sh/start.sh ---
@@ -54,6 +54,11 @@ case ${AUTH} in
. "${scripts_dir}/secure.sh"
. "${scripts_dir}/update_login_providers.sh"
;;
+ kerberos)
+ echo 'Enableing kerberos user authentication'
+ . "${scripts_dir}/secure.sh"
+ . "${scripts_dir}/kerberosUserAuth.sh"
--- End diff --
file naming should follow the other files already present, please use _
instead of camel case
---