This is an automated email from the ASF dual-hosted git repository.
abhi pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ranger.git
The following commit(s) were added to refs/heads/master by this push:
new c75a2370b RANGER-5455: Remove Kerberos related scripts (#817)
c75a2370b is described below
commit c75a2370b40f316a9f4fdd5b6afe17850971d330
Author: Abhishek Kumar <[email protected]>
AuthorDate: Fri Jan 23 16:43:09 2026 -0800
RANGER-5455: Remove Kerberos related scripts (#817)
---
.../ranger-docker/scripts/wait_for_keytab.sh | 41 ----------------------
.../scripts/wait_for_testusers_keytab.sh | 21 -----------
2 files changed, 62 deletions(-)
diff --git a/dev-support/ranger-docker/scripts/wait_for_keytab.sh
b/dev-support/ranger-docker/scripts/wait_for_keytab.sh
deleted file mode 100755
index 77d0f1783..000000000
--- a/dev-support/ranger-docker/scripts/wait_for_keytab.sh
+++ /dev/null
@@ -1,41 +0,0 @@
-#!/bin/bash
-
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements. See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership. The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License. You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-
-RETRY_COUNT="${KEYTAB_RETRY_COUNT:-5}"
-KEYTABS_DIR=/etc/keytabs
-
-KEYTAB=${KEYTABS_DIR}/$1
-
-for i in {1..RETRY_COUNT}; do
- if [ -f ${KEYTAB} ]
- then
- break
- else
- echo [INFO] "Waiting for keytab ${KEYTAB}.."
- sleep 5
- fi
-done
-
-if [ -f ${KEYTAB} ]
-then
- echo "[INFO] Found keytab ${KEYTAB}"
- exit 0
-else
- echo "[ERROR] Keytab not found: ${KEYTAB}"
- exit 1
-fi
diff --git a/dev-support/ranger-docker/scripts/wait_for_testusers_keytab.sh
b/dev-support/ranger-docker/scripts/wait_for_testusers_keytab.sh
deleted file mode 100755
index 7f887aff9..000000000
--- a/dev-support/ranger-docker/scripts/wait_for_testusers_keytab.sh
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/bin/bash
-
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements. See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership. The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License. You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-
-${RANGER_SCRIPTS}/wait_for_keytab.sh testuser1.keytab
-${RANGER_SCRIPTS}/wait_for_keytab.sh testuser2.keytab
-${RANGER_SCRIPTS}/wait_for_keytab.sh testuser3.keytab