summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorMonty <monty@mariadb.org>2022-01-27 14:51:16 +0200
committerMonty <monty@mariadb.org>2022-01-27 14:52:08 +0200
commit5acc79d03099568be42ddbc2faa506d2a5b69cf2 (patch)
treee8983b5369b3da68bb4aee7f5c98de5f494149f4 /scripts
parent93a5fb00252c54cad2844b385808a1c6ff0037eb (diff)
downloadmariadb-git-5acc79d03099568be42ddbc2faa506d2a5b69cf2.tar.gz
Remove --upgrade-info option from mysql_upgrade
Removed the option as it safe to always create the file when we have created the MariaDB data directories. This fixes this issue not only for debian but for all MariaDB users.
Diffstat (limited to 'scripts')
-rw-r--r--scripts/mysql_install_db.sh6
1 files changed, 0 insertions, 6 deletions
diff --git a/scripts/mysql_install_db.sh b/scripts/mysql_install_db.sh
index 2a23eb987b4..d1c0fc67baf 100644
--- a/scripts/mysql_install_db.sh
+++ b/scripts/mysql_install_db.sh
@@ -42,7 +42,6 @@ create database if not exists test;
use mysql;"
auth_root_authentication_method=normal
auth_root_socket_user='root'
-upgrade_info=0
dirname0=`dirname $0 2>/dev/null`
dirname0=`dirname $dirname0 2>/dev/null`
@@ -104,7 +103,6 @@ Usage: $0 [OPTIONS]
group. You must be root to use this option. By default
mysqld runs using your current group and files and
directories that it creates will be owned by you.
- --upgrade-info Store mysql_upgrade_info in the installed data directory.
All other options are passed to the mysqld program
@@ -160,7 +158,6 @@ parse_arguments()
--skip-name-resolve) ip_only=1 ;;
--verbose) verbose=1 ; silent_startup="" ;;
--rpm) in_rpm=1 ;;
- --upgrade-info) upgrade_info=1 ;;
--help) usage ;;
--no-defaults|--defaults-file=*|--defaults-extra-file=*)
defaults="$arg" ;;
@@ -528,10 +525,7 @@ SET @auth_root_socket='$auth_root_socket_user';" ;;
esac
if { echo "$install_params"; cat "$create_system_tables" "$create_system_tables2" "$fill_system_tables" "$fill_help_tables" "$maria_add_gis_sp"; } | eval "$filter_cmd_line" | mysqld_install_cmd_line > /dev/null
then
- if test "$upgrade_info" -eq 1
- then
printf "@VERSION@-MariaDB" > "$ldata/mysql_upgrade_info"
- fi
s_echo "OK"
else
echo