#!/bin/bash

# -------------------------------------------------------------------------- #
# Copyright 2002-2025, OpenNebula Project, OpenNebula Systems                #
#                                                                            #
# 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.                                             #
#--------------------------------------------------------------------------- #

#Arguments: hypervisor(0) ds_location(1) monitord_port(2) host_id(3) hostname(4)

source $(dirname $0)/../scripts_common.sh

export LANG=C

HYPERVISOR_DIR=$1.d
ARGUMENTS=$*
STDIN=`cat -`

SCRIPTS_DIR=`dirname $0`
cd $SCRIPTS_DIR

function run_dir {
    cd $1
    for i in `ls * | grep -E -v '\.(rpmnew|rpmsave|dpkg-\w+)$'`;do
        if [ -x "$i" ]; then
            result=$(echo ${STDIN} | ./$i ${ARGUMENTS} 2>&1)
            EXIT_CODE=$?

            if [ "x${EXIT_CODE}" != "x0" ]; then
                error_message "Error executing $i: ${result}"
                exit ${EXIT_CODE}
            fi

            echo ${result}
        fi
    done
}

data=$(
    if [ -d "$HYPERVISOR_DIR" ]; then
        run_dir "$HYPERVISOR_DIR"
    fi
)

EXIT_CODE=$?

echo "$data"

exit $EXIT_CODE
