Changeset 6407476


Ignore:
Timestamp:
01/10/2004 04:03:56 PM (20 years ago)
Author:
Igor Živković <igor@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 6.0, 6.1, 6.2, 6.2.0, 6.2.0-rc1, 6.2.0-rc2, 6.3, 6.3-rc1, 6.3-rc2, 6.3-rc3, 7.10, 7.4, 7.5, 7.6, 7.6-blfs, 7.6-systemd, 7.7, 7.8, 7.9, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, gnome, kde5-13430, kde5-14269, kde5-14686, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, krejzi/svn, lazarus, lxqt, nosym, perl-modules, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, systemd-11177, systemd-13485, trunk, upgradedb, v5_1, v5_1-pre1, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
cef1b608
Parents:
12415978
Message:

modified MySQL init script to remove stale pid files

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@1688 af4574ff-66df-0310-9fd7-8a98e5e911e0

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • content/databases/mysql/mysql-config.xml

    r12415978 r6407476  
    7777        start)
    7878                echo "Starting MySQL daemon..."
    79                 if test -s "$pid_file"
    80                 then print_status warning running
     79                failure=0
     80                if test -f "$pid_file"
     81                then
     82                    if /bin/ps p `cat $pid_file` | grep mysqld &gt;/dev/null
     83                    then
     84                        print_status warning running
     85                        exit 1
     86                    else
     87                        rm -f $pid_file
     88                        if test -f $pid_file
     89                        then
     90                            failure=1
     91                        fi
     92                    fi
     93                fi
     94                if [ $failure = 1 ]
     95                then
     96                    (exit $failure)
     97                    evaluate_retval
    8198                else
    8299                    /usr/bin/mysqld_safe --user=mysql 2&gt;&amp;1 &gt;/dev/null &amp;
  • index.xml

    r12415978 r6407476  
    33                        "/usr/share/docbook/docbookx.dtd" [
    44
    5 <!ENTITY version "CVS-20040108">
    6 <!ENTITY releasedate "January 8th, 2004">
     5<!ENTITY version "CVS-20040110">
     6<!ENTITY releasedate "January 10th, 2004">
    77<!ENTITY blfs-version "cvs">
    88
  • introduction/welcome/changelog.xml

    r12415978 r6407476  
    1111
    1212<itemizedlist>
     13
     14<listitem><para>January 10th, 2004 [igor]: Completed the MySQL init
     15script fix as suggested by Alexander E. Patrakov.</para></listitem>
    1316
    1417<listitem><para>January 8th, 2004 [igor]: Updated to
Note: See TracChangeset for help on using the changeset viewer.