diff options
author | phantom <phantom@FreeBSD.org> | 2001-10-02 19:37:42 +0000 |
---|---|---|
committer | phantom <phantom@FreeBSD.org> | 2001-10-02 19:37:42 +0000 |
commit | dec5076a0fefaec4b70267d9f61ff66fdb1faac1 (patch) | |
tree | fa34c667053c4a2aa096b7003778dd393d271e2c /devel/bugzilla/pkg-message | |
parent | 8958fe899ca96ea5c38c37bb1b049ba53a884957 (diff) | |
download | FreeBSD-ports-dec5076a0fefaec4b70267d9f61ff66fdb1faac1.zip FreeBSD-ports-dec5076a0fefaec4b70267d9f61ff66fdb1faac1.tar.gz |
* don't setup README.docs. It's developers resource.
* use ${INSTALL} directly instead of ${INSTALL_DATA} to preserve
exec permissions for scripts
* add post-install target to display pkg-message
* rewrite pkg-message to give minimal quick setup instructions
Diffstat (limited to 'devel/bugzilla/pkg-message')
-rw-r--r-- | devel/bugzilla/pkg-message | 26 |
1 files changed, 16 insertions, 10 deletions
diff --git a/devel/bugzilla/pkg-message b/devel/bugzilla/pkg-message index 2d96f15..08e022f 100644 --- a/devel/bugzilla/pkg-message +++ b/devel/bugzilla/pkg-message @@ -1,16 +1,22 @@ ========================================================================== + Bugzilla has now been installed. To quick setup you have to: - Bugzilla has now been installed. To get it up and running you have to: + 1. Create database user who has rights on bugs database manipulation + by following mysql commands: - 1. Create bugs database at your MySQL server. - 2. Run ${PREFIX}/www/data.default/checksetup.pl to create configuration - file (you need to do it at installation time only) - 3. Edit newly created ${PREFIX}/www/data.default/localconfig file - to customize Bugzilla setup for your system - 4. Run ${PREFIX}/www/data.default/checksetup.pl again to create required - Bugzilla data directories and fix files permissions. + GRANT SELECT,INSERT,UPDATE,DELETE,INDEX, ALTER,CREATE,DROP,REFERENCES \ + ON <database>.* TO <dbuser>@<host> IDENTIFIED BY '<password>'; + FLUSH PRIVILEGES; - For more complete instructions on installation, setup and security notes - read Bugzilla Guide in ${PREFIX}/share/doc/bugzilla (chapter 3: Installation) + where <database> is a bugs database name; <dbuser> is a bugs database + owner; <host> is a host there bugzilla is being setup; + <password> is a database owner's password; + 2. Change working directory to ${PREFIX}/www/data.default + 3. Run "./checksetup.pl" script as root user + 4. Read output carefully and follow all instructions + + For more complete database setup and post-installation instructions + and security tips/notes please read Bugzilla Guide in + ${PREFIX}/share/doc/bugzilla (chapter 3: Installation) ========================================================================== |