Changesets: bareos
master ed86ede8 2015-10-16 18:35 Marco van Wieringen Ported: N/A Details Diff |
Add "accurate" support to VMWARE plugin. As we want all files to be restored in the same order that the backups are taken of the VM we have to fool the accurate code to think that all previous "virtual files" are also found again. We can fake this by returning bRC_Seen on each question to the check_file method of the plugin which gets invoked for each file on the accurate Seen bitmap when building the so called deleted files list. |
||
mod - vmware_plugin/BareosFdPluginVMware.py | Diff File | ||
master d390b13a 2015-10-16 16:01 Committer: mvwieringen Ported: N/A Details Diff |
bcommand: list jobs count: fix sql query | ||
mod - src/cats/sql_cmds.c | Diff File | ||
master 5b254e83 2015-10-14 22:43 Ported: N/A Details Diff |
Merge branch 'bareos-15.2' | ||
mod - src/stored/bscan.c | Diff File | ||
bareos-15.2 2e59a17b 2015-10-14 22:43 Ported: N/A Details Diff |
STREAM_NDMP_SEPERATOR was already handled by bscan. | ||
mod - src/stored/bscan.c | Diff File | ||
bareos-14.2 53a9ae5e 2015-10-14 22:43 Ported: N/A Details Diff |
STREAM_NDMP_SEPERATOR was already handled by bscan. | ||
mod - src/stored/bscan.c | Diff File | ||
master 1eb5a6ac 2015-10-14 22:23 Ported: N/A Details Diff |
Add support to reload now that OUTPUT_FORMATTER has bool type | ||
mod - src/dird/ua_cmds.c | Diff File | ||
master 2ba886eb 2015-10-14 22:23 Ported: N/A Details Diff |
Merge branch 'bareos-15.2' | ||
mod - src/dird/ua_cmds.c | Diff File | ||
mod - src/lib/output_formatter.c | Diff File | ||
mod - src/lib/output_formatter.h | Diff File | ||
mod - src/stored/bscan.c | Diff File | ||
bareos-15.2 128ecf84 2015-10-14 21:25 Ported: N/A Details Diff |
Add filtering in bscan for some new stream types. | ||
mod - src/stored/bscan.c | Diff File | ||
bareos-14.2 8668e012 2015-10-14 21:25 Ported: N/A Details Diff |
Add filtering in bscan for some new stream types. | ||
mod - src/stored/bscan.c | Diff File | ||
bareos-13.2 f106d2ce 2015-10-14 21:25 Ported: N/A Details Diff |
Add filtering in bscan for some new stream types. | ||
mod - src/stored/bscan.c | Diff File | ||
bareos-12.4 5f5e25c8 2015-10-14 21:25 Ported: N/A Details Diff |
Add filtering in bscan for some new stream types. | ||
mod - src/stored/bscan.c | Diff File | ||
master 468b84fc 2015-10-14 19:16 Ported: N/A Details Diff |
Fix compiler warning. | ||
mod - src/dird/dird_conf.c | Diff File | ||
master dd0a3213 2015-10-14 18:43 Ported: N/A Details Diff |
Merge branch 'bareos-15.2' | ||
mod - src/cats/sql_cmds.c | Diff File | ||
mod - src/dird/ua_output.c | Diff File | ||
bareos-15.2 5b1f6f56 2015-10-14 16:06 Ported: N/A Details Diff |
bcommand: fix duplicates in "[l]list jobs" A job can be stored on multiple volumes. Without this patch, it is than shown multiple times in the "list jobs" output. This patch fixes this problem. Drawback: the recently introduced volumename field is no longer shown in "llist jobs". However "[l]list jobs volume=<volume>" still works as expected. |
||
mod - src/cats/sql_cmds.c | Diff File | ||
bareos-15.2 f20b7f2f 2015-10-14 13:51 Committer: mvwieringen Ported: N/A Details Diff |
bcommand: fixes a problem in the output format Bareos has different methods to generate output for consoles: * messages * send_msg, error_msg, warning_msg, info_msg Strings from the print method are first stored into a text buffer and only send to the console on request or at the end of the bcommand. Messages are send directly to the console. Some methods use both types to generate output. To show them in the correct order, this change first flushes the text buffer to the console before sending a message. |
||
mod - src/dird/ua_output.c | Diff File | ||
master b594f3b2 2015-10-14 13:04 Marco van Wieringen Ported: N/A Details Diff |
Update copyright. | ||
mod - vadp_dumper/bareos_vadp_dumper.cpp | Diff File | ||
master 9dc12d50 2015-10-13 19:24 Frank Bergkemper Ported: N/A Details Diff |
jQuery plugin library DataTables added Signed-off-by: Frank Bergkemper <frank.bergkemper@dass-it.de> |
||
add - public/css/dataTables.bootstrap.css | Diff File | ||
add - public/css/dataTables.bootstrap.min.css | Diff File | ||
add - public/js/dataTables.bootstrap.js | Diff File | ||
add - public/js/dataTables.bootstrap.min.js | Diff File | ||
add - public/js/jquery.dataTables.js | Diff File | ||
add - public/js/jquery.dataTables.min.js | Diff File | ||
master aaaadc3f 2015-10-13 16:43 Ported: N/A Details Diff |
Merge branch 'bareos-15.2' | ||
mod - src/cats/protos.h | Diff File | ||
mod - src/cats/sql_cmds.c | Diff File | ||
mod - src/cats/sql_cmds.h | Diff File | ||
mod - src/cats/sql_list.c | Diff File | ||
mod - src/dird/ua_cmds.c | Diff File | ||
mod - src/dird/ua_output.c | Diff File | ||
mod - src/dird/ua_select.c | Diff File | ||
master f0778944 2015-10-12 20:02 Committer: mvwieringen Ported: N/A Details Diff |
do_a_command: handle also dot cmds The functions do_a_dot_command() and do_a_command() have been identical, except for cosmetical things. This patch gets rid of do_a_dot_command(), handling of all bcommands is now done via do_a_command. This means, that all known commands are now defined in one central place. We don't show dot commands on "help" and ".help all" (used for bconsole tab completion). They will still be shown on ".help" (without arguments), "help <cmd>" and ".help item=<cmd>". We also split off some code from ua_cmds.c to ua_db.c |
||
mod - src/dird/Makefile.in | Diff File | ||
mod - src/dird/job.c | Diff File | ||
mod - src/dird/protos.h | Diff File | ||
mod - src/dird/ua_cmds.c | Diff File | ||
add - src/dird/ua_db.c | Diff File | ||
mod - src/dird/ua_dotcmds.c | Diff File | ||
mod - src/dird/ua_output.c | Diff File | ||
mod - src/dird/ua_server.c | Diff File | ||
mod - src/dird/ua_status.c | Diff File | ||
master b423c6e0 2015-10-12 13:45 Evgeni Golov Ported: N/A Details Diff |
improve package descriptions * allign the first sentence of the metapackage description with the others * indent Desciption of bareos-common as the other descriptions |
||
mod - debian/control | Diff File | ||
mod - debian/control.bareos-filedaemon-ceph-plugin | Diff File | ||
mod - debian/control.bareos-storage-ceph | Diff File | ||
mod - debian/control.bareos-traymonitor | Diff File | ||
mod - debian/control.in | Diff File | ||
master cc5d1e73 2015-10-12 13:20 Evgeni Golov Ported: N/A Details Diff |
define PATH_MAX if it is not present on the current OS | ||
mod - src/tools/bpluginfo.c | Diff File | ||
bareos-15.2 ddbcadc0 2015-10-12 12:17 Ported: N/A Details Diff |
Tweak layout use switches instead of multiple ifs. | ||
mod - src/dird/dird_conf.c | Diff File | ||
bareos-15.2 a8f56247 2015-10-11 21:21 Ported: N/A Details Diff |
Merge branch 'bareos-15.2' of https://github.com/monotek/bareos into bareos-15.2 | ||
master a7508f7e 2015-10-11 17:44 Evgeni Golov Committer: joergs Ported: N/A Details Diff |
try to compile on GNU/Hurd too | ||
mod - debian/control | Diff File | ||
mod - debian/control.in | Diff File | ||
mod - debian/rules | Diff File | ||
bareos-15.2 4921ce2d 2015-10-09 21:23 Committer: mvwieringen Ported: N/A Details Diff |
bcommand: list jobs: check client parameter | ||
mod - src/dird/ua_output.c | Diff File |