#!/bin/bash # Copyright (c) 2023 Habana Labs, Ltd. an Intel Company.Licensed 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. SOURCE_DIR="$(cd "$(dirname "$0")" && pwd)" source $SOURCE_DIR/config.properties export PDSH_RCMD_TYPE=ssh HOSTFILE="${HOSTFILE:-$SOURCE_DIR/hostfile}"; BASE_PDSH_CMD="pdsh -w ^$HOSTFILE" BASE_DIR="$SOURCE_DIR/utilities" if [ -z "$(dpkg -l | awk "/^ii pdsh/")" ]; then echo "!!!! ERROR: pdsh is not installed in your system. Please install pdsh before proceeding !!!!" exit 1 fi show_help() { cat <&2; exit 0 ;; *) show_help >&2; exit 0 ;; esac done