Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 34600 | Differences between
and this patch

Collapse All | Expand All

(-)mysql-4.1.0-alpha/scripts/mysql_install_db.sh.orig (-16 / +2 lines)
Lines 380-395 Link Here
380
         --basedir=$basedir --datadir=$ldata --skip-innodb --skip-bdb $args" 
380
         --basedir=$basedir --datadir=$ldata --skip-innodb --skip-bdb $args" 
381
then
381
then
382
  echo ""
382
  echo ""
383
  if test "$in_rpm" -eq 0 || "$windows" -eq 0
384
  then
385
    echo "To start mysqld at boot time you have to copy support-files/mysql.server"
386
    echo "to the right place for your system"
387
    echo
388
  fi
389
  echo "PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER !"
383
  echo "PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER !"
390
  echo "This is done with:"
384
  echo "This is done with:"
391
  echo "$bindir/mysqladmin -u root password 'new-password'"
385
  echo "/etc/init.d/mysql start (you have to start the server first!)"
392
  echo "$bindir/mysqladmin -u root -h $hostname password 'new-password'"
386
  echo "$bindir/mysqladmin -u root -h $hostname password 'new-password'"
387
  echo "$bindir/mysqladmin -u root password 'new-password'"
393
  echo "See the manual for more instructions."
388
  echo "See the manual for more instructions."
394
  #
389
  #
395
  # Print message about upgrading unless we have created a new db table.
390
  # Print message about upgrading unless we have created a new db table.
Lines 401-415 Link Here
401
    echo "able to use the new GRANT command!"
396
    echo "able to use the new GRANT command!"
402
  fi
397
  fi
403
  echo
398
  echo
404
  if test "$in_rpm" -eq 0 -a "$windows" -eq 0
405
  then
406
    echo "You can start the MySQL daemon with:"
407
    echo "cd @prefix@ ; $bindir/mysqld_safe &"
408
    echo
409
    echo "You can test the MySQL daemon with the benchmarks in the 'sql-bench' directory:"
410
    echo "cd sql-bench ; perl run-all-tests"
411
    echo
412
  fi
413
  echo "Please report any problems with the @scriptdir@/mysqlbug script!"
399
  echo "Please report any problems with the @scriptdir@/mysqlbug script!"
414
  echo
400
  echo
415
  echo "The latest information about MySQL is available on the web at"
401
  echo "The latest information about MySQL is available on the web at"

Return to bug 34600