HEX
Server: Apache/2.4.41 (Amazon) OpenSSL/1.0.2k-fips PHP/5.6.40
System: Linux ip-172-31-40-18 4.14.146-93.123.amzn1.x86_64 #1 SMP Tue Sep 24 00:45:23 UTC 2019 x86_64
User: apache (48)
PHP: 5.6.40
Disabled: NONE
Upload Files
File: //etc/alternatives/mysql_config
#! /bin/sh
#
# Wrapper script for mysql_config to support multilib
#
# This command respects setarch

bits=$(rpm --eval %__isa_bits)

case $bits in
    32|64) status=known ;;
        *) status=unknown ;;
esac

if [ "$status" = "unknown" ] ; then
    echo "$0: error: command 'rpm --eval %__isa_bits' returned unknown value: $bits"
    exit 1
fi


if [ -x /usr/libexec/mysql57/mysql_config-$bits ] ; then
    /usr/libexec/mysql57/mysql_config-$bits "$@"
else
    echo "$0: error: needed binary: /usr/libexec/mysql57/mysql_config-$bits is missing"
    exit 1
fi