You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-12-20 01:42:27 +03:00
ColumnStore now uses standard bin/lib paths for pretty much everything. Data path is now hard-coded to /var/lib/columnstore. This patch also: * Removes v1 decompression * Removes a bunch of unneeded files * Removes COLUMNSTORE_INSTALL_DIR / $INSTALLDIR * Makes my.cnf.d work for all platforms (MCOL-3558) * Changes configcpp to use recursive mutex (fixes possible config write deadlock) * Fixes MCOL-3599 Fix regr functions, The library was installed in the wrong location * Fixes a bunch of Ubuntu packaging issues * Changes the binary names of several of the executables so as not to clash with potential executables from other packages
45 lines
1.2 KiB
Bash
45 lines
1.2 KiB
Bash
#!/bin/bash
|
|
#
|
|
# Determine the Linux distribution and version that is being run.
|
|
#
|
|
# Check for GNU/Linux distributions
|
|
if [ -f /etc/SuSE-release ]; then
|
|
DISTRIBUTION="suse"
|
|
elif [ -f /etc/UnitedLinux-release ]; then
|
|
DISTRIBUTION="united"
|
|
elif [ -f /etc/debian_version ]; then
|
|
DISTRIBUTION="debian"
|
|
elif [ -f /etc/lsb_version ]; then
|
|
DISTRIBUTION="ubuntu"
|
|
elif [ -f /etc/redhat-release ]; then
|
|
a=`grep -i 'red.*hat.*enterprise.*linux' /etc/redhat-release`
|
|
if test $? = 0; then
|
|
DISTRIBUTION=rhel
|
|
else
|
|
a=`grep -i 'red.*hat.*linux' /etc/redhat-release`
|
|
if test $? = 0; then
|
|
DISTRIBUTION=rh
|
|
else
|
|
a=`grep -i 'Fedora' /etc/redhat-release`
|
|
if test $? = 0; then
|
|
DISTRIBUTION=fedora
|
|
else
|
|
a=`grep -i 'cern.*e.*linux' /etc/redhat-release`
|
|
if test $? = 0; then
|
|
DISTRIBUTION=cel
|
|
else
|
|
a=`grep -i 'scientific linux cern' /etc/redhat-release`
|
|
if test $? = 0; then
|
|
DISTRIBUTION=slc
|
|
else
|
|
DISTRIBUTION="unknown"
|
|
fi
|
|
fi
|
|
fi
|
|
fi
|
|
fi
|
|
else
|
|
DISTRIBUTION="unknown"
|
|
fi
|
|
echo ${DISTRIBUTION}
|