ports/71161: [PATCH] Incorrect rights for setup devel/bugzilla

Dmitry Grigorovich odip at bionet.nsc.ru
Mon Aug 30 20:50:19 UTC 2004


The following reply was made to PR ports/71161; it has been noted by GNATS.

From: "Dmitry Grigorovich" <odip at bionet.nsc.ru>
To: <freebsd-gnats-submit at FreeBSD.org>, <odip at bionet.nsc.ru>
Cc:  
Subject: Re: ports/71161: [PATCH] Incorrect rights for setup devel/bugzilla
Date: Tue, 31 Aug 2004 03:42:11 +0700

 More correctly:
 
 If you are using MySQL 4.0 or newer, enter: 
 
 mysql> GRANT SELECT,INSERT,UPDATE,DELETE,INDEX, ALTER,CREATE,DROP,LOCK
 TABLES,CREATE TEMPORARY TABLES,REFERENCES ON bugs.* TO bugs at localhost
 IDENTIFIED BY '<bugs_password>';  
 mysql> FLUSH PRIVILEGES;  
 
 If you are using an older version of MySQL, the LOCK TABLES and CREATE
 TEMPORARY TABLES permissions need to be removed from the list: 
 
 mysql> GRANT SELECT,INSERT,UPDATE,DELETE,INDEX, ALTER,CREATE,DROP,REFERENCES
 ON bugs.* TO bugs at localhost IDENTIFIED BY '<bugs_password>';  
 mysql> FLUSH PRIVILEGES;  
 
 [ODiP] == Dmitry Grigorovich
 



More information about the freebsd-ports-bugs mailing list