]> git.sur5r.net Git - bacula/docs/commitdiff
Split Community and Enterprise new features
authorKern Sibbald <kern@sibbald.com>
Sat, 2 Apr 2011 12:49:41 +0000 (14:49 +0200)
committerKern Sibbald <kern@sibbald.com>
Sat, 2 Apr 2011 12:49:41 +0000 (14:49 +0200)
docs/manuals/en/main/main.tex
docs/manuals/en/main/newbsfeatures.tex [new file with mode: 0644]
docs/manuals/en/main/newfeatures.tex

index 82959fd417b152764612743e5790bd1c089af3aa..804881edae8ec6b1edc20071304e4c7a15c344c9 100644 (file)
@@ -50,6 +50,7 @@
 \markboth{Bacula Version \version}{Bacula Version \version}
 \pagenumbering{arabic}
 \include{general}
+\include{newbsfeatures}
 \include{newfeatures}
 \include{state}
 \include{requirements}
diff --git a/docs/manuals/en/main/newbsfeatures.tex b/docs/manuals/en/main/newbsfeatures.tex
new file mode 100644 (file)
index 0000000..8ad0309
--- /dev/null
@@ -0,0 +1,113 @@
+\chapter{Enterprise Bacula New Features}
+This chapter presents the new features that will be added to the
+current Enterprise version of Bacula that is under development. This version will be
+released at some later date, probably near the end of June 2011.  These
+features are available only with a Bacula Systems subscription.
+
+In addition to the features in this chapter, the Enterprise version
+will include the Community features described in the Community new Features
+chapter.
+
+\section{Support for MSSQL Block Level Backup}
+
+This project was funded by Bacula Systems and is available with the Bacula
+Enterprise Edition.
+
+\section{Support for NDMP protocol}
+
+The new \texttt{ndmp} Plugin is able to backup a NAS through NDMP protocol
+using \textbf{Filer to server} approach, where the Filer is backing up across
+the LAN to your Bacula server.
+
+Accurate option should be turned on in the Job resource.
+\begin{verbatim}
+Job {
+ Accurate = yes
+ FileSet = NDMPFS
+ ...
+}
+
+FileSet {
+ Name = NDMPFS
+ ...
+ Include {
+   Plugin = "ndmp:host=nasbox user=root pass=root file=/vol/vol1"
+ }
+}
+\end{verbatim}
+
+This project was funded by Bacula Systems and is available with the Bacula
+Enterprise Edition.
+
+\section{Incremental/Differential Block Level Difference Backup}
+
+The new \texttt{delta} Plugin is able to compute and apply signature-based file
+differences. It can be used to backup only changes in a big binary file like
+Outlook PST, VirtualBox/VmWare images or database files.
+
+It supports both Incremental and Differential backups and stores signatures
+database in the File Daemon working directory. This plugin is available on all
+plateform including Windows 32 and 64bit.
+
+Accurate option should be turned on in the Job resource.
+\begin{verbatim}
+Job {
+ Accurate = yes
+ FileSet = DeltaFS
+ ...
+}
+
+FileSet {
+ Name = DeltaFS
+ ...
+ Include {
+   Plugin = "delta:/home/eric/.VirtualBox/HardDisks/lenny-i386.vdi"
+ }
+}
+\end{verbatim}
+
+Note: the core code features to implement this functionality are included
+in the Community plugin interface as will as the core Community code.
+
+This project was funded by Bacula Systems and is available with the Bacula
+Enterprise Edition.
+
+\section{Include All Windows Drives in FileSet}
+
+The \texttt{alldrives} Windows Plugin allows you to include all local drives
+with a simple directive. This plugin is available for Windows 64 and 32 bit.
+
+\begin{verbatim}
+FileSet {
+ Name = EverythingFS
+ ...
+ Include {
+   Plugin = "alldrives"
+ }
+}
+\end{verbatim}
+
+You exclude some specific drives with the \texttt{exclude} option.
+
+\begin{verbatim}
+FileSet {
+ Name = EverythingFS
+ ...
+ Include {
+   Plugin = "alldrives: exclude=D,E"
+ }
+}
+\end{verbatim}
+
+
+This project was funded by Bacula Systems and is available with the Bacula
+Enterprise Edition.
+
+
+\section{ACL/Extended Attributes}
+
+We added support for NFSv4 ACLs on FreeBSD 8.1 and IRIX extended attributes.
+
+This project was funded by Marco van Wieringen.
+
+
index 47303e0e502b9b06583a26534664a06bcb96528f..954741903e135c9bec7180c8db4731eff2b0d670 100644 (file)
@@ -1,8 +1,12 @@
-\chapter{New Features in 5.1.x}
+\chapter{Community Bacula New Features in 5.1.x}
 This chapter presents the new features that have been added to the
-current version of Bacula that is under development. This version will be
+current Community version of Bacula that is under development. This version will be
 released at some later date, probably near the end of April 2011.
 
+There are additional features (plugins) available in the Enterprise version
+that are described in another chapter. A subscription to Bacula Systems
+is required for the Enterprise version.
+
 \section{Restart Incomplete Job}
 
 
@@ -117,97 +121,6 @@ The \texttt{limit} parameter is in KB/s.
 This project was funded by Bacula Systems and is available in
 the Enterprise Edition and the Community Edition.
 
-\section{Support for MSSQL Block Level Backup}
-
-This project was funded by Bacula Systems and is available with the Bacula
-Enterprise Edition.
-
-\section{Support for NDMP protocol}
-
-The new \texttt{ndmp} Plugin is able to backup a NAS through NDMP protocol
-using \textbf{Filer to server} approach, where the Filer is backing up across
-the LAN to your Bacula server.
-
-Accurate option should be turned on in the Job resource.
-\begin{verbatim}
-Job {
- Accurate = yes
- FileSet = NDMPFS
- ...
-}
-
-FileSet {
- Name = NDMPFS
- ...
- Include {
-   Plugin = "ndmp:host=nasbox user=root pass=root file=/vol/vol1"
- }
-}
-\end{verbatim}
-
-This project was funded by Bacula Systems and is available with the Bacula
-Enterprise Edition.
-
-\section{Incremental/Differential Block Level Difference Backup}
-
-The new \texttt{delta} Plugin is able to compute and apply signature-based file
-differences. It can be used to backup only changes in a big binary file like
-Outlook PST, VirtualBox/VmWare images or database files.
-
-It supports both Incremental and Differential backups and stores signatures
-database in the File Daemon working directory. This plugin is available on all
-plateform including Windows 32 and 64bit.
-
-Accurate option should be turned on in the Job resource.
-\begin{verbatim}
-Job {
- Accurate = yes
- FileSet = DeltaFS
- ...
-}
-
-FileSet {
- Name = DeltaFS
- ...
- Include {
-   Plugin = "delta:/home/eric/.VirtualBox/HardDisks/lenny-i386.vdi"
- }
-}
-\end{verbatim}
-
-This project was funded by Bacula Systems and is available with the Bacula
-Enterprise Edition.
-
-\section{Include All Windows Drives in FileSet}
-
-The \texttt{alldrives} Windows Plugin allows you to include all local drives
-with a simple directive. This plugin is available for Windows 64 and 32 bit.
-
-\begin{verbatim}
-FileSet {
- Name = EverythingFS
- ...
- Include {
-   Plugin = "alldrives"
- }
-}
-\end{verbatim}
-
-You exclude some specific drives with the \texttt{exclude} option.
-
-\begin{verbatim}
-FileSet {
- Name = EverythingFS
- ...
- Include {
-   Plugin = "alldrives: exclude=D,E"
- }
-}
-\end{verbatim}
-
-
-This project was funded by Bacula Systems and is available with the Bacula
-Enterprise Edition.
 
 \section{SQL Catalog Enhancements}