]> git.sur5r.net Git - bacula/bacula/blobdiff - gui/bweb/lib/Bconsole.pm
ebl fix volstatus in display_media
[bacula/bacula] / gui / bweb / lib / Bconsole.pm
index d671ea631be1e976fb0e5422f8dc17c94beeb17d..9379657ce9969feced4f940eb6cae6641fe13c39 100644 (file)
@@ -2,22 +2,34 @@ use strict;
 
 =head1 LICENSE
 
-    Copyright (C) 2006 Eric Bollengier
-        All rights reserved.
+   Bweb - A Bacula web interface
+   Bacula® - The Network Backup Solution
 
-    This program is free software; you can redistribute it and/or modify
-    it under the terms of the GNU General Public License as published by
-    the Free Software Foundation; either version 2 of the License, or
-    any later version.
+   Copyright (C) 2000-2006 Free Software Foundation Europe e.V.
 
-    This program is distributed in the hope that it will be useful,
-    but WITHOUT ANY WARRANTY; without even the implied warranty of
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-    GNU General Public License for more details.
+   The main author of Bweb is Eric Bollengier.
+   The main author of Bacula is Kern Sibbald, with contributions from
+   many others, a complete list can be found in the file AUTHORS.
 
-    You should have received a copy of the GNU General Public License
-    along with this program; if not, write to the Free Software
-    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+   This program is Free Software; you can redistribute it and/or
+   modify it under the terms of version two of the GNU General Public
+   License as published by the Free Software Foundation plus additions
+   that are listed in the file LICENSE.
+
+   This program is distributed in the hope that it will be useful, but
+   WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+   General Public License for more details.
+
+   You should have received a copy of the GNU General Public License
+   along with this program; if not, write to the Free Software
+   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+   02110-1301, USA.
+
+   Bacula® is a registered trademark of John Walker.
+   The licensor of Bacula is the Free Software Foundation Europe
+   (FSFE), Fiduciary Program, Sumatrastrasse 25, 8006 Zurich,
+   Switzerland, email:ftf@fsfeurope.org.
 
 =head1 VERSION
 
@@ -65,8 +77,7 @@ sub run
        return 0;
     }
 
-    print "=> $cmd yes\n";
-
+    print STDERR "===> $cmd yes\n";
     $self->{bconsole}->clear_accum();
     $self->send("$cmd yes\n");
     $self->expect_it('-re',qr/^[*]/);
@@ -78,6 +89,12 @@ sub run
     }
 }
 
+# for brestore.pl::BwebConsole
+sub prepare
+{
+    # do nothing
+}
+
 sub send
 {
     my ($self, $what) = @_;
@@ -361,7 +378,7 @@ sub prune_volume
     my $sel = $self->_get_volume(@volume);
     my $ret;
     if ($sel) {
-       $ret = $self->send_cmd_yes("prune $sel");
+       $ret = $self->send_cmd("prune $sel yes");
     } else {
        $ret = $self->{error};
     }