This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
galaxy-deployment-ansible-d…/Apache HBase/2.2.3/hbase/role/templates/startsql.sh.j2

24 lines
312 B
Plaintext
Raw Normal View History

#!/bin/bash
source /etc/profile
BASE_DIR=$(cd $(dirname $0); pwd)
{% for dev_info in groups.zookeeper -%}
{% if loop.last -%}
{{dev_info}}
{% elif loop.first %}
ZK_SERVER={{dev_info}},
{%- else %}
{{dev_info}},
{%- endif %}
{%- endfor %}
cd $BASE_DIR
exec python sqlline.py $ZK_SERVER <<EOF
!quit
EOF