mirror of https://github.com/BOINC/boinc.git
Upgrade script: fix message text: default MySQL user is owner of server, not current user
This commit is contained in:
parent
444815fa23
commit
3b395872be
|
@ -110,7 +110,7 @@ function db_init_cli() {
|
||||||
$host = "localhost";
|
$host = "localhost";
|
||||||
}
|
}
|
||||||
$in = fopen("php://stdin","r");
|
$in = fopen("php://stdin","r");
|
||||||
print "Database username (if not current user): ";
|
print "Database username (default: owner of mysqld process): ";
|
||||||
$user = rtrim(fgets($in, 80));
|
$user = rtrim(fgets($in, 80));
|
||||||
print "Database password (if any): ";
|
print "Database password (if any): ";
|
||||||
$pass = rtrim(fgets($in, 80));
|
$pass = rtrim(fgets($in, 80));
|
||||||
|
|
Loading…
Reference in New Issue