blob: 812fa12ec247c101939a2b5b3aff8fe52fe33fb9 [file] [log] [blame]
#!/usr/bin/env 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.
bin=`dirname "$0"`
myhome=`cd "$bin/.."; pwd`
# the root of the Hive installation
if [[ -z $SENTRY_HOME ]] ; then
export SENTRY_HOME=$myhome
fi
_HIVE_CMD=hive
#check to see if the hive conf dir is given as an optional argument
while [ $# -gt 0 ]; do # Until you run out of parameters . . .
case "$1" in
--hive-config)
shift
confdir=$1
shift
export HIVE_CONF_DIR=$confdir
echo Using hive-conf-dir $HIVE_CONF_DIR
;;
--hive-home)
shift
homedir=$1
shift
export HIVE_HOME=$homedir
echo Using hive-home $HIVE_HOME
;;
--command)
shift
case "$1" in
config-tool)
shift
$myhome/bin/config-tool.sh "$@"
;;
*)
echo Unknown option $1
echo "Usage sentry --command <config-tool [config-tool-options]>"
break
;;
esac
break
;;
*)
echo "Usage sentry --command <config-tool [config-tool-options]>"
break
;;
esac
done