Author: randy
Date: 2005-05-31 12:10:31 -0600 (Tue, 31 May 2005)
New Revision: 4531

Modified:
   trunk/BOOK/general.ent
   trunk/BOOK/gnome/add/gdm.xml
   trunk/BOOK/introduction/welcome/changelog.xml
   trunk/bootscripts/ChangeLog
   trunk/bootscripts/blfs/init.d/gdm
Log:
Removed explicit path from GDM bootscript commands; added a note to the GDM 
instructions to modify the bootscript if /opt/gnome-2.10 is non-standard; 
updated bootscripts version entity

Modified: trunk/BOOK/general.ent
===================================================================
--- trunk/BOOK/general.ent      2005-05-31 17:49:04 UTC (rev 4530)
+++ trunk/BOOK/general.ent      2005-05-31 18:10:31 UTC (rev 4531)
@@ -1,8 +1,8 @@
-<!ENTITY day          "30">
+<!ENTITY day          "31">
 <!ENTITY month        "05">
 <!ENTITY year         "2005">
 <!ENTITY version      "svn-&year;&month;&day;">
-<!ENTITY releasedate  "May &day;th, &year;">
+<!ENTITY releasedate  "May &day;st, &year;">
 <!ENTITY pubdate      "&year;-&month;-&day;"> <!-- metadata req. by TLDP -->
 <!ENTITY blfs-version "svn">                  <!-- svn|[release #] -->
 <!ENTITY lfs-version  "development">          <!-- 
version|stable|testing|unstable|development] -->
@@ -21,7 +21,7 @@
 <!ENTITY publisher      "Unknown">
 
 
-<!ENTITY blfs-bootscripts-version     "20050530">
+<!ENTITY blfs-bootscripts-version     "20050531">
 <!ENTITY blfs-bootscripts-download    
"&downloads-root;/blfs-bootscripts-&blfs-bootscripts-version;.tar.bz2">
 
 <!-- Part II -->

Modified: trunk/BOOK/gnome/add/gdm.xml
===================================================================
--- trunk/BOOK/gnome/add/gdm.xml        2005-05-31 17:49:04 UTC (rev 4530)
+++ trunk/BOOK/gnome/add/gdm.xml        2005-05-31 18:10:31 UTC (rev 4531)
@@ -188,7 +188,12 @@
 
       <para>To start a graphical login at boot, install the
       <filename>/etc/rc.d/init.d/gdm</filename> init script included in the
-      <xref linkend="intro-important-bootscripts"/> package.</para>
+      <xref linkend="intro-important-bootscripts"/> package. If your
+      <envar>GNOME_PREFIX</envar> environment variable is anything other than
+      <filename class='directory'>/usr</filename> or
+      <filename class='directory'>/opt/gnome-2.10</filename>, you will need to
+      modify the <envar>PATH</envar> statement in the script to include the 
+      path where you have <application>GNOME</application> installed.</para>
 
       <indexterm zone="gdm gdm-init">
         <primary sortas="f-gdm">gdm</primary>

Modified: trunk/BOOK/introduction/welcome/changelog.xml
===================================================================
--- trunk/BOOK/introduction/welcome/changelog.xml       2005-05-31 17:49:04 UTC 
(rev 4530)
+++ trunk/BOOK/introduction/welcome/changelog.xml       2005-05-31 18:10:31 UTC 
(rev 4531)
@@ -25,6 +25,13 @@
   <itemizedlist>
 
     <listitem>
+      <para>May 31st, 2005 [randy]: Removed the explicit path from the 
+      GDM bootscript commands and updated the GDM instructions to include a 
+      note to update the script if $GNOME_PREFIX is non-stardard; updated
+      bootscripts to version 20050531.</para>
+    </listitem>
+
+    <listitem>
       <para>May 30th, 2005 [randy]: Updated to GDM-2.6.0.9, GNOME Speech-0.3.7,
       Gnopernicus-0.10.9 and GOK-1.0.4; added new package libexif-0.6.12;
       moved libexif to a required dependency of Nautilus.</para>

Modified: trunk/bootscripts/ChangeLog
===================================================================
--- trunk/bootscripts/ChangeLog 2005-05-31 17:49:04 UTC (rev 4530)
+++ trunk/bootscripts/ChangeLog 2005-05-31 18:10:31 UTC (rev 4531)
@@ -1,3 +1,6 @@
+2005-05-31 Randy McMurchy <[EMAIL PROTECTED]>
+       * Removed explicit path from GDM script commands so that the commands
+       will work no matter where $GNOME_PREFIX is.
 
 2005-05-30 Randy McMurchy <[EMAIL PROTECTED]>
        * Updated GDM script to GNOME-2.10.

Modified: trunk/bootscripts/blfs/init.d/gdm
===================================================================
--- trunk/bootscripts/blfs/init.d/gdm   2005-05-31 17:49:04 UTC (rev 4530)
+++ trunk/bootscripts/blfs/init.d/gdm   2005-05-31 18:10:31 UTC (rev 4531)
@@ -15,24 +15,24 @@
 case "$1" in
        start)
                echo "Starting GDM..."
-               loadproc /usr/bin/gdm
+               loadproc gdm
                ;;
 
        stop)
                echo "Stopping GDM..."
                if [ -f /var/run/gdm.pid ]; then
-                       loadproc /usr/sbin/gdm-stop
+                       loadproc gdm-stop
                fi
                ;;
 
        reload)
                echo "Reloading GDM..."
-               loadproc /usr/sbin/gdm-safe-restart
+               loadproc gdm-safe-restart
                ;;
 
        restart)
                echo "Restarting GDM..."
-               loadproc /usr/sbin/gdm-restart
+               loadproc gdm-restart
                ;;
 
        *)

-- 
http://linuxfromscratch.org/mailman/listinfo/blfs-book
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page

Reply via email to