diff options
author | Monty <monty@mariadb.org> | 2022-01-27 14:51:16 +0200 |
---|---|---|
committer | Monty <monty@mariadb.org> | 2022-01-27 14:52:08 +0200 |
commit | 5acc79d03099568be42ddbc2faa506d2a5b69cf2 (patch) | |
tree | e8983b5369b3da68bb4aee7f5c98de5f494149f4 /debian | |
parent | 93a5fb00252c54cad2844b385808a1c6ff0037eb (diff) | |
download | mariadb-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 'debian')
-rw-r--r-- | debian/mariadb-server-10.2.postinst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/debian/mariadb-server-10.2.postinst b/debian/mariadb-server-10.2.postinst index 3fe5a04fbc3..14b2053b3a0 100644 --- a/debian/mariadb-server-10.2.postinst +++ b/debian/mariadb-server-10.2.postinst @@ -144,7 +144,7 @@ EOF # Debian: beware of the bashisms... # Debian: can safely run on upgrades with existing databases set +e - bash /usr/bin/mysql_install_db --rpm --cross-bootstrap --user=mysql --disable-log-bin --upgrade-info 2>&1 | $ERR_LOGGER + bash /usr/bin/mysql_install_db --rpm --cross-bootstrap --user=mysql --disable-log-bin 2>&1 | $ERR_LOGGER set -e ## On every reconfiguration the maintenance user is recreated. |