Search
j0ke.net Open Build Service
>
Projects
>
oldschool
>
mysql
> mysql-3.23.41.dif
Sign Up
|
Log In
Username
Password
Cancel
Overview
Repositories
Revisions
Requests
Users
Advanced
Attributes
Meta
File mysql-3.23.41.dif of Package mysql
--- scripts/mysql_install_db.sh +++ scripts/mysql_install_db.sh 2001/07/27 13:24:45 @@ -309,12 +309,13 @@ END_OF_DATA then echo "" - if test "$IN_RPM" -eq 0 - then - echo "To start mysqld at boot time you have to copy support-files/mysql.server" - echo "to the right place for your system" - echo - fi + # Output disabled, since the SuSE RPM comes with an init script installed + # if test "$IN_RPM" -eq 0 + # then + # echo "To start mysqld at boot time you have to copy support-files/mysql.server" + # echo "to the right place for your system" + # echo + # fi echo "PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER !" echo "This is done with:" echo "$bindir/mysqladmin -u root -p password 'new-password'" @@ -332,8 +333,12 @@ echo if test "$IN_RPM" -eq 0 then - echo "You can start the MySQL daemon with:" - echo "cd @prefix@ ; $bindir/safe_mysqld &" + # Disabled the following message, since it is recommended to use the + # init script instead, which takes care using the correct user id etc. + # Start it with "rcmysql start" instead. + # + # echo "You can start the MySQL daemon with:" + # echo "cd @prefix@ ; $bindir/safe_mysqld &" echo echo "You can test the MySQL daemon with the benchmarks in the 'sql-bench' directory:" echo "cd sql-bench ; run-all-tests"