]> git.sur5r.net Git - bacula/docs/commitdiff
Updates
authorKern Sibbald <kern@sibbald.com>
Fri, 12 Aug 2005 12:13:31 +0000 (12:13 +0000)
committerKern Sibbald <kern@sibbald.com>
Fri, 12 Aug 2005 12:13:31 +0000 (12:13 +0000)
docs/home-page/pages/professional.php
docs/manual/dirdconf.tex
docs/manual/filedconf.tex
docs/manual/recycling.tex
docs/manual/storedconf.tex

index ff18c97faa0906770bb75edba83a6c68f437b4cb..40918c0e9d11b93411ec9565f6eddfa743d2dfba 100644 (file)
       <tr> <td colspan="3"><img src="images/spacer.gif" width="50px" height="25px"></td> </tr>
       <tr> <td colspan="3"><hr></td>
       <tr> <td colspan="3"><img src="images/spacer.gif" width="50px" height="25px"></td> </tr>
+      <tr>
+              <td style="font-weight: bold">
+                     raptus ag
+              </td>
+              <td><img src="images/spacer.gif" width="50px" height="1px"></td>
+              <td>
+                 <a href="mailto:infoNOSPAM@raptus.com">raptus ag</a><br>
+                 moderne kommunikation<br>
+                 burgweg 1<br>
+                 2563 ipsach -- switzerland<br>
+                 <br>
+                 Telephone +41 (0)32 332 9200<br>
+                 Fax +41 (0)32 332 9201<br>
+                 <br>
+                 <br>
+                 Modern communications, Internet projects and IT services since 1996!
+                 Specialized in heterogenous networks (linux, mac, windows) and open 
+                 source solutions.
+                 <br>
+                 <a href="http://www.raptus.com">http://www.raptus.com</a><br>
+              </td>
+      </tr>
+      <tr> <td colspan="3"><img src="images/spacer.gif" width="50px" height="25px"></td> </tr>
+      <tr> <td colspan="3"><hr></td>
+      <tr> <td colspan="3"><img src="images/spacer.gif" width="50px" height="25px"></td> </tr>
       <tr>
               <td style="font-weight: bold">
                       Sine Nomine Associates
index bd1852907f72491eebca847bac6215bcb70f1615..e45adae760016128979174e1e19e7a519fbd0f5f 100644 (file)
@@ -114,10 +114,15 @@ directive is required.
 \item [Working Directory = \lt{}Directory\gt{}]
    \index[dir]{Working Directory  }
    This directive  is mandatory and specifies a directory in which the Director 
-may put its status files. This directory should be used only  by Bacula but
-may be shared by other Bacula daemons.  Standard shell expansion of the {\bf
-Directory}  is done when the configuration file is read so that values such 
-as {\bf \$HOME} will be properly expanded. This directive is required.  
+   may put its status files. This directory should be used only  by Bacula but
+   may be shared by other Bacula daemons. However, please note, if this
+   directory is shared with other Bacula daemons (the File daemon and Storage
+   daemon), you must ensure that the {\bf Name} given to each daemon is
+   unique so that the temporary filenames used do not collide.  By default
+   the Bacula configure process creates unique daemon names by postfixing them
+   with -dir, -fd, and -sd. Standard shell expansion of the {\bf
+   Directory}  is done when the configuration file is read so that values such 
+   as {\bf \$HOME} will be properly expanded. This directive is required.
 
 \item [Pid Directory = \lt{}Directory\gt{}]
    \index[dir]{Pid Directory  }
index ffce325605c36eacc3a16f6be1ebfca340766a96..a3583858cbf354694a4721622c68f20be0ebf43e 100644 (file)
@@ -54,15 +54,17 @@ client program.
 \item [Name = \lt{}name\gt{}]
    \index[fd]{Name  }
    The client name that must be used  by the Director when connecting. Generally,
-it is a good idea  to use a name related to the machine so that error messages
-can be easily identified if you have multiple Clients.  This record is
-required.  
+   it is a good idea  to use a name related to the machine so that error messages
+   can be easily identified if you have multiple Clients.  This directive is
+   required.  
 
 \item [Working Directory = \lt{}Directory\gt{}]
    \index[fd]{Working Directory  }
    This directive  is mandatory and specifies a directory in which the File
    daemon  may put its status files. This directory should be used only  by {\bf
-   Bacula}, but may be shared by other Bacula daemons. This record is required. 
+   Bacula}, but may be shared by other Bacula daemons provided the daemon
+   names on the {\bf Name} definition are unique for each daemon. This directive
+   is required. 
 
    On Win32 systems, in some circumstances you may need to specify a drive
    letter in the specified working directory path.  Also, please be sure
index b09ada2bf1b1097ce84407342d322156084e8524..26938eaa0b2a79fa7d520ad41d9a111060dde8d5 100644 (file)
@@ -216,19 +216,22 @@ The full recycling algorithm that Bacula uses when it needs a new Volume is:
 \item Search the Pool for a Volume with VolStatus=Recycle (if there is  more
    than one, the Volume with the oldest date last written is  chosen. If two have
    the same date then the one with  the lowest MediaId is chosen). 
+\item Try recycling any purged Volumes.
 \item Prune volumes applying Volume retention period (Volumes with VolStatus 
    Full, Used, or Append are pruned). 
 \item Search the Pool for a Volume with VolStatus=Purged 
 \item Attempt to create a new Volume if automatic labeling enabled 
+\item If a Pool named "Scratch" exists, search for a Volume and if found
+   move it to the current Pool for the Job and use it.
 \item Prune the oldest Volume if RecycleOldestVolume=yes (the Volume  with the
    oldest LastWritten date and VolStatus equal to  Full, Recycle, Purged, Used,
    or Append is chosen). This  record ensures that all retention periods are
-properly  respected. 
+   properly  respected. 
 \item Purge the oldest Volume if PurgeOldestVolume=yes (the Volume  with the
    oldest LastWritten date and VolStatus equal to  Full, Recycle, Purged, Used,
    or Append is chosen). We strongly  recommend against the use of {\bf
-PurgeOldestVolume} as it  can quite easily lead to loss of current backup
-data. 
+   PurgeOldestVolume} as it  can quite easily lead to loss of current backup
+   data. 
 \item Give up and ask operator. 
    \end{itemize}
 
index 105693b6f8bf501b998529141ac2eef0716adfe9..ead368b9e00bb987ef0a75611ebe4083d33c21df 100644 (file)
@@ -64,7 +64,8 @@ have one and only one Storage resource definition.
    \index[sd]{Working Directory  }
    This directive  is mandatory and specifies a directory in which the Storage
    daemon  may put its status files. This directory should be used only  by {\bf
-   Bacula}, but may be shared by other Bacula daemons. This  directive is
+   Bacula}, but may be shared by other Bacula daemons provided the names
+   given to each daemon are unique. This  directive is
    required  
 
 \item [Pid Directory = \lt{}Directory\gt{}]
@@ -94,7 +95,7 @@ have one and only one Storage resource definition.
    in a broken pipe error message.
 
 \item [Maximum Concurrent Jobs = \lt{}number\gt{}]
-   \index[sd]{Maximum Concurrent Jobs  }
+   \index[sd]{Maximum Concurrent Jobs}
    where \lt{}number\gt{} is the maximum number of Jobs that should run
    concurrently.  The default is set to 10, but you may set it to a larger
    number.  Each contact from the Director (e.g.  status request, job start
@@ -108,7 +109,7 @@ have one and only one Storage resource definition.
    those in the Job and Client resources.
 
 \item [SDAddresses = \lt{}IP-address-specification\gt{}]
-   \index[sd]{SDAddresses  }
+   \index[sd]{SDAddresses}
    Specify the ports and addresses on which the Storage daemon will listen
    for Director connections.  Normally, the default is sufficient and you
    do not need to specify this directive.  Probably the simplest way to