[Clfs-commits] [Cross-LFS]Cross-LFS Book branch, master, updated. clfs-3.0.0-rc1-systemd-83-g56155f9

git git at cross-lfs.org
Fri Sep 5 07:45:23 PDT 2014


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Cross-LFS Book".

The branch, master has been updated
       via  56155f9f31439b1b9200ef124dd30373376a1579 (commit)
       via  d38577ac5fe72c62cdda2df8875acfc261f276ae (commit)
       via  119a034ba49e2cd947fafbf13622102e52948a4f (commit)
      from  81fb0e7d7287158be4983b761ae11b73a76dd7bb (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 56155f9f31439b1b9200ef124dd30373376a1579
Author: Chris Staub <chris at beaker67.com>
Date:   Fri Sep 5 10:45:16 2014 -0400

    Text update

diff --git a/BOOK/system-config/common/profile.xml b/BOOK/system-config/common/profile.xml
index 6a1fc31..5d8e080 100644
--- a/BOOK/system-config/common/profile.xml
+++ b/BOOK/system-config/common/profile.xml
@@ -38,10 +38,11 @@
   <para>The files <filename>/etc/profile</filename> and
   <filename>~/.bash_profile</filename> are read when the shell is
   invoked as an interactive login shell. Create a base
-  <filename>/etc/profile</filename> that will setup locale information and load
-  any bash auto completion files that may be on the system. This script also
+  <filename>/etc/profile</filename> that will read locale information from
+  <filename>/etc/locale.conf</filename> and load
+  any Bash auto completion files that may be on the system. This script also
   sets the <envar>INPUTRC</envar> environment variable that makes Bash and
-  Readline use <filename>/etc/inputrc</filename>.</para>
+  Readline use <filename>/etc/inputrc</filename>:</para>
 
 <screen><userinput>cat > /etc/profile << "EOF"
 <literal># Begin /etc/profile

commit d38577ac5fe72c62cdda2df8875acfc261f276ae
Author: Chris Staub <chris at beaker67.com>
Date:   Thu Sep 4 16:22:33 2014 -0400

    Prevent file not found error from bash

diff --git a/BOOK/system-config/common/profile.xml b/BOOK/system-config/common/profile.xml
index 082294e..6a1fc31 100644
--- a/BOOK/system-config/common/profile.xml
+++ b/BOOK/system-config/common/profile.xml
@@ -47,7 +47,13 @@
 <literal># Begin /etc/profile
 
 source /etc/locale.conf
-for f in /etc/bash_completion.d/*.sh; do source $f; done; unset f
+
+for f in /etc/bash_completion.d/*
+do
+  if [ -e ${f} ]; then source ${f}; fi
+done
+unset f
+
 export INPUTRC=/etc/inputrc
 
 # End /etc/profile</literal>

commit 119a034ba49e2cd947fafbf13622102e52948a4f
Author: Chris Staub <chris at beaker67.com>
Date:   Thu Sep 4 16:16:56 2014 -0400

    Updated date

diff --git a/BOOK/general.ent b/BOOK/general.ent
index 8fcf0d2..14cff61 100644
--- a/BOOK/general.ent
+++ b/BOOK/general.ent
@@ -1,8 +1,8 @@
 <?xml version="1.0" encoding="ISO-8859-1"?>
 
-<!ENTITY month "08"> <!-- Use two digits -->
-<!ENTITY month_name "August">
-<!ENTITY day "29"> <!-- Use two digits -->
+<!ENTITY month "09"> <!-- Use two digits -->
+<!ENTITY month_name "September">
+<!ENTITY day "04"> <!-- Use two digits -->
 <!ENTITY year "2014"> <!-- Use four digits -->
 
 <!ENTITY releasedate "&month_name; &day;, &year;">

-----------------------------------------------------------------------

Summary of changes:
 BOOK/general.ent                      |    6 +++---
 BOOK/system-config/common/profile.xml |   15 +++++++++++----
 2 files changed, 14 insertions(+), 7 deletions(-)


hooks/post-receive
-- 
Cross-LFS Book



More information about the Clfs-commits mailing list