]> git.pld-linux.org Git - packages/mysql.git/commitdiff
- removed hashed line (not used),
authorkloczek <kloczek@pld-linux.org>
Fri, 25 Feb 2000 11:55:50 +0000 (11:55 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
- fixed typo on creating mysql database directory (in init).

Changed files:
    mysql.init -> 1.8

mysql.init

index ca8ce79ef5938b15ed27e900748ff94081461abe..aa0da54f678b9843ed685087b3fc6e94487f2c0f 100644 (file)
@@ -41,7 +41,6 @@ case "$1" in
        if [ ! -f /var/lock/subsys/mysql ]; then
                show Starting mysql
                busy
-#              cd $MYSQL_DATA_DIR
                /usr/sbin/mysqld -u $MYSQL_USER --datadir=$MYSQL_DATA_DIR >>/var/log/mysql.log 2>&1 &
                deltext
                ok
@@ -87,7 +86,7 @@ case "$1" in
 
                # Create database directories mysql & test
                if test ! -d $MYSQL_DATA_DIR/mysql; then 
-                       install -d -m700 -o #MYSQL_USER $MYSQL_DATA_DIR/mysql;  
+                       install -d -m700 -o $MYSQL_USER $MYSQL_DATA_DIR/mysql;  
                fi
 
                #mysqld --bootstrap need whole (and only one) sql command in one line
This page took 0.037163 seconds and 4 git commands to generate.