diff options
author | unknown <lenz@mysql.com> | 2004-06-30 14:01:31 +0200 |
---|---|---|
committer | unknown <lenz@mysql.com> | 2004-06-30 14:01:31 +0200 |
commit | c2668e106bf0b67cda0881937c8f0ed9b8f1dc29 (patch) | |
tree | 9c992a115112cefd1cffda628e1dbafd28256f5c /support-files | |
parent | f90b266fa555d29f0606c641516f5192a1697555 (diff) | |
download | mariadb-git-c2668e106bf0b67cda0881937c8f0ed9b8f1dc29.tar.gz |
- fixed server RPM postinstall (mysql_install_db was called with the
wrong parameter)
Diffstat (limited to 'support-files')
-rw-r--r-- | support-files/mysql.spec.sh | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/support-files/mysql.spec.sh b/support-files/mysql.spec.sh index 0d6863d24cd..d5c43e61f9d 100644 --- a/support-files/mysql.spec.sh +++ b/support-files/mysql.spec.sh @@ -397,7 +397,7 @@ useradd -M -r -d $mysql_datadir -s /bin/bash -c "MySQL server" mysql 2> /dev/nul chown -R mysql $mysql_datadir # Initiate databases -mysql_install_db -IN-RPM --user=mysql +mysql_install_db --rpm --user=mysql # Change permissions again to fix any new files. chown -R mysql $mysql_datadir @@ -579,6 +579,11 @@ fi # The spec file changelog only includes changes made to the spec file # itself %changelog +* Wed Jun 30 2004 Lenz Grimmer <lenz@mysql.com> + +- fixed server postinstall (mysql_install_db was called with the wrong + parameter) + * Thu Jun 24 2004 Lenz Grimmer <lenz@mysql.com> - added mysql_tzinfo_to_sql to the server subpackage |