diff options
author | lukem <lukem@pkgsrc.org> | 2003-01-21 06:02:41 +0000 |
---|---|---|
committer | lukem <lukem@pkgsrc.org> | 2003-01-21 06:02:41 +0000 |
commit | 399ea1cba45e8962841c038ee6221e5f7e7f4319 (patch) | |
tree | 7894285fd6926c5faabfd34aaa2a39d799510e1f /databases/mysql-server/INSTALL | |
parent | 4592e34b41a58e153460255411025c137a8c8473 (diff) | |
download | pkgsrc-399ea1cba45e8962841c038ee6221e5f7e7f4319.tar.gz |
- add rc.d script; based on [pkg/19055], with rework by me.
- add support for MYSQL_USER and MYSQL_GROUP (user & group to run database as)
- change ownership of $MYSQL_DATADIR to ${MYSQL_USER}:${MYSQL_GROUP} 700
- fix safe_mysqld to send all output to the error log and to NOT output
random messages to the tty it was started on.
- display a MESSAGE reminding people to change the password of the
mysql 'root' user.
- bump PKGREVISION (to 3.23.49nb2)
Diffstat (limited to 'databases/mysql-server/INSTALL')
-rw-r--r-- | databases/mysql-server/INSTALL | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/databases/mysql-server/INSTALL b/databases/mysql-server/INSTALL index 4bccf0baac2..7a7d8ac0dfe 100644 --- a/databases/mysql-server/INSTALL +++ b/databases/mysql-server/INSTALL @@ -1,9 +1,9 @@ #!/bin/sh # -# $NetBSD: INSTALL,v 1.1 2001/11/01 00:11:53 zuntum Exp $ +# $NetBSD: INSTALL,v 1.2 2003/01/21 06:02:41 lukem Exp $ -PKGNAME=$1 -STAGE=$2 +: ${PKGNAME:=$1} +: ${STAGE:=$2} case ${STAGE} in PRE-INSTALL) |