Added mysql-5.1.14 build template.

--HG--
extra : convert_revision : 7414719ac4625fd2f8805d18fbd71096cba41eb6
This commit is contained in:
Juan RP
2010-03-04 13:50:13 +01:00
parent 03b853851a
commit 1534f5be21
21 changed files with 488 additions and 0 deletions

33
srcpkgs/mysql/INSTALL Normal file
View File

@@ -0,0 +1,33 @@
# *-*-shell-*-*
#
case ${ACTION} in
post)
cat << _EOF
==========================================================================
PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER
To do so, start the server with:
$ /etc/init.d/mysqld start
and then issue the following commands:
$ mysqladmin -u root password 'new-password'
$ mysqladmin -u root -h $hostname password 'new-password'
Alternatively you can run:
$ mysql_secure_installation
which will also give you the option of removing the test
databases and anonymous user created by default. This is
strongly recommended for production servers.
Don't forget that you should also tweak /etc/mysql/my.cnf
for server settings. Additional configuration files are available
in the /usr/share/mysql/my-*.cnf files.
==========================================================================
_EOF
;;
esac