Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 21 - 30 of 400 for echo (0.04 seconds)

  1. buildscripts/multipart-quorum-test.sh

    if [ ! -x "$PWD/minio" ]; then
    	echo "minio executable binary not found in current directory"
    	exit 1
    fi
    
    if [ ! -x "$PWD/minio" ]; then
    	echo "minio executable binary not found in current directory"
    	exit 1
    fi
    
    trap 'catch $LINENO' ERR
    
    function purge() {
    	rm -rf "$1"
    }
    
    # shellcheck disable=SC2120
    catch() {
    	if [ $# -ne 0 ]; then
    		echo "error on line $1"
    	fi
    
    Created: 2026-04-05 19:28
    - Last Modified: 2024-09-06 10:51
    - 2.9K bytes
    - Click Count (0)
  2. docs/bucket/replication/test_del_marker_proxying.sh

    exit_1() {
    	cleanup
    
    	for site in sitea siteb; do
    		echo "$site server logs ========="
    		cat "/tmp/${site}_1.log"
    		echo "==========================="
    		cat "/tmp/${site}_2.log"
    	done
    
    	exit 1
    }
    
    cleanup() {
    	echo -n "Cleaning up instances of MinIO ..."
    	pkill -9 minio || sudo pkill -9 minio
    	rm -rf /tmp/sitea
    	rm -rf /tmp/siteb
    	echo "done"
    }
    
    cleanup
    
    export MINIO_CI_CD=1
    Created: 2026-04-05 19:28
    - Last Modified: 2024-09-29 22:40
    - 2.2K bytes
    - Click Count (0)
  3. docs/resiliency/resiliency-verify-script.sh

    #!/usr/bin/env bash
    
    echo "script failed" >resiliency-verify.log # assume initial state
    
    ALIAS_NAME=myminio
    BUCKET="test-bucket"
    SRC_DIR="/tmp/data"
    DEST_DIR="/tmp/dest"
    
    ./mc admin config set "$ALIAS_NAME" api requests_max=400
    
    OBJ_COUNT_AFTER_STOP=$(./mc ls "${ALIAS_NAME}"/"${BUCKET}"/initial-data/ | wc -l)
    # Count should match the initial count of 10
    if [ "${OBJ_COUNT_AFTER_STOP}" -ne 10 ]; then
    Created: 2026-04-05 19:28
    - Last Modified: 2024-12-21 04:24
    - 1.5K bytes
    - Click Count (0)
  4. docs/resiliency/resiliency-tests.sh

    	echo
    	echo -e "${GREEN}Running test_resiliency_success_with_server_down ...${NC}"
    	# Stop one node
    	docker stop resiliency-minio1-1
    	sleep 10
    
    	verify_resiliency "${FUNCNAME[0]}"
    
    	# Finally restart the node
    	docker start resiliency-minio1-1
    
    	./mc ready myminio
    }
    
    function test_resiliency_failure_with_server_down_and_single_disk_offline() {
    	echo
    Created: 2026-04-05 19:28
    - Last Modified: 2024-12-21 04:24
    - 20.5K bytes
    - Click Count (0)
  5. src/test/resources/thumbnail/test_generate_thumbnail.sh

    else
        echo -e "${RED}FAILED${NC}"
        ((TESTS_FAILED++))
    fi
    
    echo ""
    echo "=========================================="
    echo "Test Summary"
    echo "=========================================="
    echo -e "Passed: ${GREEN}${TESTS_PASSED}${NC}"
    echo -e "Failed: ${RED}${TESTS_FAILED}${NC}"
    echo ""
    
    if [[ ${TESTS_FAILED} -eq 0 ]]; then
        echo -e "${GREEN}All tests passed!${NC}"
        exit 0
    else
    Created: 2026-03-31 13:07
    - Last Modified: 2025-12-04 08:02
    - 7.9K bytes
    - Click Count (0)
  6. docs/distributed/decom-encrypted-sse-s3.sh

    if [ $user_count -ne $expanded_user_count ]; then
    	echo "BUG: original user count differs from expanded setup"
    	exit 1
    fi
    
    if [ $policy_count -ne $expanded_policy_count ]; then
    	echo "BUG: original policy count  differs from expanded setup"
    	exit 1
    fi
    
    ./mc version info myminio/versioned | grep -q "versioning is enabled"
    ret=$?
    if [ $ret -ne 0 ]; then
    	echo "expected versioning enabled after expansion"
    	exit 1
    fi
    
    Created: 2026-04-05 19:28
    - Last Modified: 2024-05-27 19:17
    - 4.5K bytes
    - Click Count (0)
  7. .teamcity/mvnw

          JAVACMD="$JAVA_HOME/bin/java"
        fi
      else
        JAVACMD="`which java`"
      fi
    fi
    
    if [ ! -x "$JAVACMD" ] ; then
      echo "Error: JAVA_HOME is not defined correctly." >&2
      echo "  We cannot execute $JAVACMD" >&2
      exit 1
    fi
    
    if [ -z "$JAVA_HOME" ] ; then
      echo "Warning: JAVA_HOME environment variable is not set."
    fi
    
    CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher
    
    Created: 2026-04-01 11:36
    - Last Modified: 2020-02-26 01:48
    - 9.8K bytes
    - Click Count (0)
  8. ci/official/utilities/setup.sh

      done
      set -u
      echo '==TFCI==: Evaluated the following TFCI variables from $TFCI:'
      export -p | grep TFCI
    
      # Load those stored pre-existing TFCI_ vars, if any
      if [[ -s "$FROM_ENV" ]]; then
        echo '==TFCI==: NOTE: Loading the following env parameters, which were'
        echo 'already set in the shell environment. If you want to disable this'
        echo 'behavior, create a new shell.'
        cat "$FROM_ENV"
    Created: 2026-04-07 12:39
    - Last Modified: 2025-01-09 18:37
    - 6.2K bytes
    - Click Count (0)
  9. ci/official/utilities/rename_and_verify_wheels.sh

    cd "$TFCI_OUTPUT_DIR"
    
    # Move extra wheel files somewhere out of the way. This script
    # expects just one wheel file to exist.
    if [[ "$(ls *.whl | wc -l | tr -d ' ')" != "1" ]]; then
      echo "More than one wheel file is present: moving the oldest to"
      echo "$TFCI_OUTPUT_DIR/extra_wheels."
      # List all .whl files by their modification time (ls -t) and move anything
      # other than the most recently-modified one (the newest one).
    Created: 2026-04-07 12:39
    - Last Modified: 2025-09-22 21:39
    - 4.4K bytes
    - Click Count (0)
  10. docs/resiliency/resiliency-verify-healing-script.sh

    fi
    
    GOT=$(./mc admin heal --json ${SCAN_DEEP} ${ALIAS_NAME}/${BUCKET}/${DIR}/${FILE})
    GOT=$(echo $GOT | jq "${JQUERY}")
    
    if [ "$(echo "$GOT" | jq -S .)" = "$(echo "$WANT" | jq -S .)" ]; then
    	echo "script passed" >resiliency-verify-healing.log
    else
    	echo "Error during healing:"
    	echo "----GOT: "$GOT
    	echo "---WANT: "$WANT
    Created: 2026-04-05 19:28
    - Last Modified: 2024-12-21 04:24
    - 996 bytes
    - Click Count (0)
Back to Top