Skip to content

Commit

Permalink
Update install.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
midoks committed Dec 19, 2024
1 parent 5d830ae commit 6ac78d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/mysql-community/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -64,11 +64,11 @@ VERSION_ID=`cat /etc/*-release | grep VERSION_ID | awk -F = '{print $2}' | awk -
if [ "$OSNAME" == "ubuntu" ] && [ "$VERSION_ID" ~ "24" ];then
cur_dir=`pwd`
cd /usr/lib/x86_64-linux-gnu
if [ -f libaio.so.1 ];then
if [ ! -f libaio.so.1 ];then
ln -s libaio.so.1t64.0.2 libaio.so.1
fi

if [ -f libncurses.so.6 ];then
if [ ! -f libncurses.so.6 ];then
ln -s libncursesw.so.6.4 libncurses.so.6
fi
cd $cur_dir
Expand Down

0 comments on commit 6ac78d9

Please sign in to comment.