Browse Source

lint: fix lint errors

pull/8373/head
Rohit T P 5 months ago
parent
commit
b11c92902e
  1. 31
      docker-compose/setup-script/noco.sh
  2. 4
      docker-compose/setup-script/tests/redis.bats
  3. 4
      docker-compose/setup-script/tests/setup.sh

31
docker-compose/setup-script/noco.sh

@ -140,7 +140,7 @@ show_menu() {
clear
check_if_docker_is_running
echo ""
echo $MSG
echo "$MSG"
echo -e "\t\t${BOLD}Service Management Menu${NC}"
echo -e " ${GREEN}1. Start Service"
echo -e " ${ORANGE}2. Stop Service"
@ -167,19 +167,19 @@ stop_service() {
show_logs_sub_menu() {
clear
echo "Select a replica for $1:"
for i in $(seq 1 $2); do
for i in $(seq 1 "$2"); do
echo "$i. $1 replica $i"
done
echo "A. All"
echo "0. Back to Logs Menu"
echo "Enter replica number: "
read replica_choice
read -r replica_choice
if [[ "$replica_choice" =~ ^[0-9]+$ ]] && [ "$replica_choice" -gt 0 ] && [ "$replica_choice" -le "$2" ]; then
container_id=$($DOCKER_COMMAND compose ps | grep "$1-$replica_choice" | cut -d " " -f 1)
$DOCKER_COMMAND logs -f "$container_id"
elif [ "$replica_choice" == "A" ] || [ "$replica_choice" == "a" ]; then
$DOCKER_COMMAND compose logs -f $1
$DOCKER_COMMAND compose logs -f "$1"
elif [ "$replica_choice" == "0" ]; then
show_logs
else
@ -205,7 +205,7 @@ show_logs() {
# For each service, count the number of running instances
for service in "${services[@]}"; do
# Count the number of lines that have the service name, which corresponds to the number of replicas
replicas=$($DOCKER_COMMAND compose ps $service | grep "$service" | wc -l)
replicas=$($DOCKER_COMMAND compose ps "$service" | grep -c "$service")
service_replicas["$count"]=$replicas
count=$((count + 1))
done
@ -220,7 +220,7 @@ show_logs() {
echo "A. All"
echo "0. Back to main menu"
echo "Enter your choice: "
read log_choice
read -r log_choice
echo
if [[ "$log_choice" =~ ^[0-9]+$ ]] && [ "$log_choice" -gt 0 ] && [ "$log_choice" -lt "$count" ]; then
@ -268,14 +268,14 @@ scale_service() {
current_scale=$($DOCKER_COMMAND compose ps -q nocodb | wc -l)
echo -e "\nCurrent number of instances: $current_scale"
echo "How many instances of NocoDB do you want to run (Maximum: ${num_cores}) ? (default: 1): "
scale_num=$(read_number_range 1 $num_cores)
scale_num=$(read_number_range 1 "$num_cores")
if [ $scale_num -eq $current_scale ]; then
if [ "$scale_num" -eq "$current_scale" ]; then
echo "Number of instances is already set to $scale_num. Returning to main menu."
return
fi
$DOCKER_COMMAND compose up -d --scale nocodb=$scale_num
$DOCKER_COMMAND compose up -d --scale nocodb="$scale_num"
}
# Function for basic monitoring
@ -292,7 +292,7 @@ management_menu() {
show_menu
echo "Enter your choice: "
read choice
read -r choice
case $choice in
1) start_service && MSG="NocoDB Started" ;;
2) stop_service && MSG="NocoDB Stopped" ;;
@ -344,7 +344,8 @@ if [ "$NOCO_FOUND" = true ]; then
read -r REINSTALL
if [ -f "$NOCO_HOME/.COMPOSE_PROJECT_NAME" ]; then
export COMPOSE_PROJECT_NAME=$(cat "$NOCO_HOME/.COMPOSE_PROJECT_NAME")
COMPOSE_PROJECT_NAME=$(cat "$NOCO_HOME/.COMPOSE_PROJECT_NAME")
export COMPOSE_PROJECT_NAME
fi
if [ "$REINSTALL" != "Y" ] && [ "$REINSTALL" != "y" ]; then
@ -355,7 +356,7 @@ if [ "$NOCO_FOUND" = true ]; then
$DOCKER_COMMAND compose down
unset COMPOSE_PROJECT_NAME
cd /tmp
cd /tmp || exit 1
rm -rf "$NOCO_HOME"
mkdir -p "$NOCO_HOME"
@ -375,7 +376,7 @@ REQUIRED_PORTS=(80 443)
echo "** Performing nocodb system check and setup. This step may require sudo permissions"
# pre install wget if not found
# pre-install wget if not found
if ! command_exists wget; then
echo "wget is not installed. Setting up for installation..."
install_package wget
@ -398,7 +399,7 @@ done
# f. Port mapping check
echo " | Checking port accessibility..."
for port in "${REQUIRED_PORTS[@]}"; do
if lsof -Pi :$port -sTCP:LISTEN -t >/dev/null; then
if lsof -Pi :"$port" -sTCP:LISTEN -t >/dev/null; then
echo " | WARNING: Port $port is in use. Please make sure it is free." >&2
else
echo " | Port $port is free."
@ -458,7 +459,7 @@ fi
if [ -n "$EDITION" ] && { [ "$EDITION" = "EE" ] || [ "$EDITION" = "ee" ]; }; then
echo "Enter the NocoDB license key: "
read LICENSE_KEY
read -r LICENSE_KEY
if [ -z "$LICENSE_KEY" ]; then
echo "License key is required for Enterprise Edition installation"
exit 1

4
docker-compose/setup-script/tests/redis.bats

@ -6,12 +6,12 @@ export NOCO_HOME
WORKING_DIR="$(pwd)"
setup() {
cd "${WORKING_DIR}"
cd "${WORKING_DIR}" || exit 1
./setup.sh
}
teardown() {
cd "${WORKING_DIR}"
cd "${WORKING_DIR}" || exit 1
./setup.sh
}

4
docker-compose/setup-script/tests/setup.sh

@ -5,8 +5,8 @@ if [ -z "$NOCO_HOME" ]; then
fi
if [ -d "$NOCO_HOME" ]; then
cd $NOCO_HOME
cd "$NOCO_HOME" || exit
docker compose down
fi
rm -rf $NOCO_HOME
rm -rf "$NOCO_HOME"

Loading…
Cancel
Save