]> git.sur5r.net Git - bacula/docs/commitdiff
ebl using /dev/null instead of extra scripting
authorEric Bollengier <eric@eb.homelinux.org>
Sat, 24 Feb 2007 22:51:23 +0000 (22:51 +0000)
committerEric Bollengier <eric@eb.homelinux.org>
Sat, 24 Feb 2007 22:51:23 +0000 (22:51 +0000)
docs/manual/faq.tex

index b884feb83f6f5827c8e71311d8bcaec7b28a727b..27417d8632fc66399af350397d0ff9a5f3413c62 100644 (file)
@@ -363,18 +363,22 @@ FAQ for how to do so.
 \label{testbackup}
 \section{Can i use Dummy device to test backup?}
    Yes, to have a {\sl Virtual} device which just drop data, you can use a 
-   Fifo Device (see \ilink{Stored configuration}{SetupFifo}), and you have to
-   run this script. It's useful to test backup.
+   Fifo Device (see \ilink{Stored configuration}{SetupFifo}).
+   It's useful to test backup.
 \footnotesize
 \begin{verbatim}
-#!/bin/sh
-
-[! -p /tmp/fifo ] && mkfifo /tmp/fifo
-
-while cat /tmp/fifo > /dev/null
-do 
-   true # do nothing
-done
+Device {
+  Name = NULL
+  Media Type = NULL
+  Device Type = Fifo
+  Archive Device = /dev/null
+  LabelMedia = yes
+  Random Access = no
+  AutomaticMount = no
+  RemovableMedia = no
+  MaximumOpenWait = 60
+  AlwaysOpen = no
+}
 \end{verbatim}
 \normalsize