Changeset 6407476
- Timestamp:
- 01/10/2004 04:03:56 PM (20 years ago)
- Branches:
- 10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 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/inkscape-core-mods, krejzi/svn, lazarus, lxqt, nosym, perl-modules, plabs/python-mods, qt5new, systemd-11177, systemd-13485, trunk, upgradedb, v5_1, v5_1-pre1, xry111/intltool, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
- Children:
- cef1b608
- Parents:
- 1241597
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
content/databases/mysql/mysql-config.xml
r1241597 r6407476 77 77 start) 78 78 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 >/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 81 98 else 82 99 /usr/bin/mysqld_safe --user=mysql 2>&1 >/dev/null & -
index.xml
r1241597 r6407476 3 3 "/usr/share/docbook/docbookx.dtd" [ 4 4 5 <!ENTITY version "CVS-200401 08">6 <!ENTITY releasedate "January 8th, 2004">5 <!ENTITY version "CVS-20040110"> 6 <!ENTITY releasedate "January 10th, 2004"> 7 7 <!ENTITY blfs-version "cvs"> 8 8 -
introduction/welcome/changelog.xml
r1241597 r6407476 11 11 12 12 <itemizedlist> 13 14 <listitem><para>January 10th, 2004 [igor]: Completed the MySQL init 15 script fix as suggested by Alexander E. Patrakov.</para></listitem> 13 16 14 17 <listitem><para>January 8th, 2004 [igor]: Updated to
Note:
See TracChangeset
for help on using the changeset viewer.