Author: bdubbs
Date: 2006-04-26 22:28:51 -0600 (Wed, 26 Apr 2006)
New Revision: 5950

Modified:
   trunk/BOOK/general.ent
   trunk/BOOK/introduction/welcome/changelog.xml
   trunk/BOOK/postlfs/editors/emacs.xml
   trunk/BOOK/server/major/vsftpd.xml
Log:
Update to vsftpd-2.0.4

Modified: trunk/BOOK/general.ent
===================================================================
--- trunk/BOOK/general.ent      2006-04-27 03:34:23 UTC (rev 5949)
+++ trunk/BOOK/general.ent      2006-04-27 04:28:51 UTC (rev 5950)
@@ -1,4 +1,4 @@
-<!ENTITY day          "26">                   <!-- Always 2 digits -->
+<!ENTITY day          "27">                   <!-- Always 2 digits -->
 <!ENTITY month        "04">                   <!-- Always 2 digits -->
 <!ENTITY year         "2006">
 <!ENTITY version      "svn-&year;&month;&day;">
@@ -318,7 +318,7 @@
 <!-- openssh (chapter 18) -->
 <!ENTITY proftpd-version              "1.2.10">
 <!-- samba3 (chapter 18) -->
-<!ENTITY vsftpd-version               "2.0.3">
+<!ENTITY vsftpd-version               "2.0.4">
 <!ENTITY xinetd-version               "2.3.14">
 
 <!-- Chapter 22 -->

Modified: trunk/BOOK/introduction/welcome/changelog.xml
===================================================================
--- trunk/BOOK/introduction/welcome/changelog.xml       2006-04-27 03:34:23 UTC 
(rev 5949)
+++ trunk/BOOK/introduction/welcome/changelog.xml       2006-04-27 04:28:51 UTC 
(rev 5950)
@@ -40,6 +40,14 @@
     </listitem>
 
 -->
+    <listitem>
+      <para>April 26th, 2006</para>
+      <itemizedlist>
+        <listitem>
+          <para>[bdubbs] - Updated to vsftpd-2.0.4</para>
+        </listitem>
+      </itemizedlist>
+    </listitem>
 
     <listitem>
       <para>April 26th, 2006</para>

Modified: trunk/BOOK/postlfs/editors/emacs.xml
===================================================================
--- trunk/BOOK/postlfs/editors/emacs.xml        2006-04-27 03:34:23 UTC (rev 
5949)
+++ trunk/BOOK/postlfs/editors/emacs.xml        2006-04-27 04:28:51 UTC (rev 
5950)
@@ -90,6 +90,14 @@
 
   </sect2>
 
+  <sect2 role="commands">
+    <title>Command Explanations</title>
+
+    <para><option>--libexecdir=/usr/lib</option>: Place library
+    executables in a Filesystem Hierarchy Standard (FHS) location.</para>
+
+  </sect2>
+
   <sect2 role="content">
     <title>Contents</title>
 

Modified: trunk/BOOK/server/major/vsftpd.xml
===================================================================
--- trunk/BOOK/server/major/vsftpd.xml  2006-04-27 03:34:23 UTC (rev 5949)
+++ trunk/BOOK/server/major/vsftpd.xml  2006-04-27 04:28:51 UTC (rev 5950)
@@ -6,13 +6,13 @@
 
   <!ENTITY vsftpd-download-http " ">
   <!ENTITY vsftpd-download-ftp  
"ftp://vsftpd.beasts.org/users/cevans/vsftpd-&vsftpd-version;.tar.gz";>
-  <!ENTITY vsftpd-md5sum        "74936cbd8e8251deb1cd99c5fb18b6f8">
-  <!ENTITY vsftpd-size          "150 KB">
+  <!ENTITY vsftpd-md5sum        "c0bf8c7b8e15ab15827172786fc56115">
+  <!ENTITY vsftpd-size          "152 KB">
   <!ENTITY vsftpd-buildsize     "1.4 MB">
   <!ENTITY vsftpd-time          "less than 0.1 SBU">
 ]>
 
-<sect1 id="vsftpd" xreflabel="vsFTPD-&vsftpd-version;">
+<sect1 id="vsftpd" xreflabel="vsftpd-&vsftpd-version;">
   <?dbhtml filename="vsftpd.html"?>
 
   <sect1info>
@@ -24,16 +24,16 @@
     </keywordset>
   </sect1info>
 
-  <title>vsFTPD-&vsftpd-version;</title>
+  <title>vsftpd-&vsftpd-version;</title>
 
   <indexterm zone="vsftpd">
-    <primary sortas="a-vsFTPD">vsFTPD</primary>
+    <primary sortas="a-vsftpd">vsftpd</primary>
   </indexterm>
 
   <sect2 role="package">
-    <title>Introduction to vsFTPD</title>
+    <title>Introduction to vsftpd</title>
 
-    <para>The <application>vsFTPD</application> package contains a very
+    <para>The <application>vsftpd</application> package contains a very
     secure and very small FTP daemon. This is useful for serving files
     over a network.</para>
 
@@ -59,7 +59,7 @@
       </listitem>
     </itemizedlist>
 
-    <bridgehead renderas="sect3">vsFTPD Dependencies</bridgehead>
+    <bridgehead renderas="sect3">vsftpd Dependencies</bridgehead>
 
     <bridgehead renderas="sect4">Optional</bridgehead>
     <para role="optional"><xref linkend="linux-pam"/>,
@@ -72,9 +72,9 @@
   </sect2>
 
   <sect2 role="installation">
-    <title>Installation of vsFTPD</title>
+    <title>Installation of vsftpd</title>
 
-    <para>For security reasons, running <application>vsFTPD</application>
+    <para>For security reasons, running <application>vsftpd</application>
     as an unprivileged user and group is encouraged. Also, a user should be
     created to map anonymous users. As the <systemitem
     class="username">root</systemitem> user, create the needed directories,
@@ -83,18 +83,18 @@
 <screen role="root"><userinput>install -v -d -m 0755 /var/ftp/empty &amp;&amp;
 install -v -d -m 0755 /home/ftp &amp;&amp;
 groupadd -g 47 vsftpd &amp;&amp;
-useradd -d /dev/null -c "vsFTPD User" -g vsftpd -s /bin/false \
+useradd -d /dev/null -c "vsftpd User" -g vsftpd -s /bin/false \
         -u 47 vsftpd &amp;&amp;
 groupadd -g 45 ftp &amp;&amp;
 useradd -c anonymous_user -d /home/ftp -g ftp -s /bin/false -u 45 
ftp</userinput></screen>
 
-    <para>Build <application>vsFTPD</application> as an unprivileged user
+    <para>Build <application>vsftpd</application> as an unprivileged user
     using the following command:</para>
 
 <screen><userinput>make</userinput></screen>
 
     <para>Once again, become the <systemitem class="username">root</systemitem>
-    user and install <application>vsFTPD</application> with the following
+    user and install <application>vsftpd</application> with the following
     commands:</para>
 
 <screen><userinput>install -v -m 755 vsftpd /usr/sbin/vsftpd &amp;&amp;
@@ -135,7 +135,7 @@
   </sect2>
 
   <sect2 role="configuration">
-    <title>Configuring vsFTPD</title>
+    <title>Configuring vsftpd</title>
 
     <sect3 id="vsftpd-config">
       <title>Config Files</title>
@@ -151,7 +151,7 @@
     <sect3>
       <title>Configuration Information</title>
 
-      <para><application>vsFTPD</application> comes with a basic
+      <para><application>vsftpd</application> comes with a basic
       anonymous-only configuration file that was copied to
       <filename class='directory'>/etc</filename> above. While still as
       <systemitem class="username">root</systemitem>, this file should be

-- 
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