mirror of
git://slackware.nl/current.git
synced 2024-12-27 09:59:16 +01:00
0665074a8c
ap/mariadb-11.4.4-x86_64-3.txz: Rebuilt. Moved default options (--skip-networking --disable-ssl) into /etc/default/mariadb. Thanks to y0g1. rc.mysqld: use options from /etc/default/mariadb. Change db installation example from mysql_install_db to mariadb-install-db. Change mysqld to mariadbd in various places. Edit the text that's printed after mariadb-install-db to show how to start at boot time with chmod +x /etc/rc.d/rc.mysqld. kde/kid3-3.9.6-x86_64-1.txz: Upgraded. l/python-wheel-0.45.0-x86_64-1.txz: Upgraded. l/sof-firmware-2024.09.1-noarch-1.txz: Upgraded. x/ibus-1.5.31-x86_64-1.txz: Upgraded.
28 lines
1.1 KiB
Diff
28 lines
1.1 KiB
Diff
--- ./scripts/mysql_install_db.sh.orig 2024-10-30 09:38:15.000000000 -0500
|
|
+++ ./scripts/mysql_install_db.sh 2024-11-09 13:56:45.234179859 -0600
|
|
@@ -653,13 +653,14 @@
|
|
if test "$cross_bootstrap" -eq 0 && test -z "$srcdir"
|
|
then
|
|
s_echo
|
|
- s_echo "To start mariadbd at boot time you have to copy"
|
|
- s_echo "support-files/mariadb.service to the right place for your system"
|
|
+ s_echo "To start mariadbd at boot time make sure that /etc/rc.d/rc.mysqld"
|
|
+ s_echo "is executable:"
|
|
+ s_echo
|
|
+ s_echo "chmod +x /etc/rc.d/rc.mysqld"
|
|
|
|
if test "$auth_root_authentication_method" = normal
|
|
then
|
|
echo
|
|
- echo
|
|
echo "PLEASE REMEMBER TO SET A PASSWORD FOR THE MariaDB root USER !"
|
|
echo "To do so, start the server, then issue the following command:"
|
|
echo
|
|
@@ -670,7 +671,6 @@
|
|
echo "strongly recommended for production servers."
|
|
else
|
|
echo
|
|
- echo
|
|
echo "Two all-privilege accounts were created."
|
|
echo "One is root@localhost, it has no password, but you need to"
|
|
echo "be system 'root' user to connect. Use, for example, sudo mysql"
|