Changesets: bareos

master 2237247c

2015-04-11 00:23

mvwieringen

Ported: N/A

Details Diff
Updates needed for new libdroplet API.

This driver still doesn't work but at least it should compile again.
mod - src/stored/backends/object_store_device.c Diff File

master 974fdaac

2015-04-10 18:50

pstorz


Committer: mvwieringen

Ported: N/A

Details Diff
Windows installer is code-signed

We now use osslsigncode to sign the windows binaries.

The Windows Installer as well as the dlls and exes are
being signed.

For now only with a dummy certificate.

Also refactored the specfile a bit
mod - platforms/win32/winbareos-nsi.spec Diff File
mod - platforms/win32/winbareos32.spec Diff File
mod - platforms/win32/winbareos64.spec Diff File

bareos-14.2 3af0d895

2015-04-10 18:50

pstorz


Committer: mvwieringen

Ported: N/A

Details Diff
Windows installer is code-signed

We now use osslsigncode to sign the windows binaries.

The Windows Installer as well as the dlls and exes are
being signed.

For now only with a dummy certificate.

Also refactored the specfile a bit
mod - platforms/win32/winbareos-nsi.spec Diff File
mod - platforms/win32/winbareos32.spec Diff File
mod - platforms/win32/winbareos64.spec Diff File

master 4cdd92e8

2015-04-10 15:05

joergs

Ported: N/A

Details Diff
remove quotes to generate valid json output
mod - src/dird/dird_conf.c Diff File

master 894d61a1

2015-04-07 22:20

mvwieringen

Ported: N/A

Details Diff
First attempt at more robust database connectivity.

- Allow reconnect of database connection when no transaction is pending.
- Allow setting of database connection failure to be fatal e.g. end
program.
Affected Issues
0000426
mod - src/cats/bdb_dbi.h Diff File
mod - src/cats/bdb_ingres.h Diff File
mod - src/cats/bdb_mysql.h Diff File
mod - src/cats/bdb_postgresql.h Diff File
mod - src/cats/bdb_priv.h Diff File
mod - src/cats/bdb_sqlite.h Diff File
mod - src/cats/cats_backends.c Diff File
mod - src/cats/cats_backends.h Diff File
mod - src/cats/dbi.c Diff File
mod - src/cats/ingres.c Diff File
mod - src/cats/mysql.c Diff File
mod - src/cats/postgresql.c Diff File
mod - src/cats/protos.h Diff File
mod - src/cats/sql_glue.h Diff File
mod - src/cats/sql_pooling.c Diff File
mod - src/cats/sqlite.c Diff File
mod - src/dird/dird.c Diff File
mod - src/dird/dird_conf.c Diff File
mod - src/dird/dird_conf.h Diff File

master 9081d869

2015-04-07 14:59

pstorz

Ported: N/A

Details Diff
Also replace @bindir@ in windows config files
mod - platforms/win32/fillup.sed Diff File

bareos-14.2 eac795dd

2015-04-07 14:59

pstorz


Committer: mvwieringen

Ported: N/A

Details Diff
Also replace @bindir@ in windows config files
mod - platforms/win32/fillup.sed Diff File

master be8a917f

2015-04-03 17:38

mvwieringen

Ported: N/A

Details Diff
Statistics thread should lock resources.

As the statistics thread runs as a JT_SYSTEM thread it needs to lock the
resource tree while traversing it as it could be reloaded. So we now
keep track of the current store we are processing and lock things as
short as possible. On determining the next store to use we have now the
name of the previous one we processed in the current_store variable.
When current_store is set we lookup that name and determine the next
store, if for whatever reason that gets removed (by the reload) we just
start from the beginning again collecting stats from each storage
daemon. We also cache the storageid after connecting to the daemon and
use that info in the actual statistics retrieval. Connecting to the SD
is also limited to 2 retries and 1 second wait time. We want to quickly
probe the SDs and when they are not available they will get polled in a
next run for their statistics.
mod - src/dird/stats.c Diff File

bareos-14.2 f99c722e

2015-04-03 17:38

mvwieringen

Ported: N/A

Details Diff
Statistics thread should lock resources.

As the statistics thread runs as a JT_SYSTEM thread it needs to lock the
resource tree while traversing it as it could be reloaded. So we now
keep track of the current store we are processing and lock things as
short as possible. On determining the next store to use we have now the
name of the previous one we processed in the current_store variable.
When current_store is set we lookup that name and determine the next
store, if for whatever reason that gets removed (by the reload) we just
start from the beginning again collecting stats from each storage
daemon. We also cache the storageid after connecting to the daemon and
use that info in the actual statistics retrieval. Connecting to the SD
is also limited to 2 retries and 1 second wait time. We want to quickly
probe the SDs and when they are not available they will get polled in a
next run for their statistics.
mod - src/dird/stats.c Diff File

master 666ffbe2

2015-04-02 12:44

mvwieringen

Ported: N/A

Details Diff
Add support for setting the dbg_timestamp flag via setdebug.

There was no way to enable the dbg_timestamp after starting the daemon
so added functionallity analog to setting the level and trace flag to
the generic set_debug cmd.
mod - src/dird/dird.h Diff File
mod - src/dird/ua_cmds.c Diff File
mod - src/filed/authenticate.c Diff File
mod - src/filed/dir_cmd.c Diff File
mod - src/lib/message.c Diff File
mod - src/lib/protos.h Diff File
mod - src/stored/dir_cmd.c Diff File

bareos-14.2 f16b6f5d

2015-04-02 12:44

mvwieringen

Ported: N/A

Details Diff
Add support for setting the dbg_timestamp flag via setdebug.

There was no way to enable the dbg_timestamp after starting the daemon
so added functionallity analog to setting the level and trace flag to
the generic set_debug cmd.
mod - src/dird/dird.h Diff File
mod - src/dird/ua_cmds.c Diff File
mod - src/filed/authenticate.c Diff File
mod - src/filed/dir_cmd.c Diff File
mod - src/lib/message.c Diff File
mod - src/lib/protos.h Diff File
mod - src/stored/dir_cmd.c Diff File

master ea3b114e

2015-03-31 16:11

mvwieringen

Ported: N/A

Details Diff
Use proper variable type for format attribute.

DeviceIoControl with flag FSCTL_SET_COMPRESSION expect the format to be
as unsigned short not integer which can be 32 or 64 bits depending on
the compile. Switched this variable to uint16_t which should be an
unsigned short.

Fixes 0000436: Restore crash file daemon
Affected Issues
0000436
mod - src/findlib/attribs.c Diff File

bareos-14.2 0cd4fe01

2015-03-31 16:11

mvwieringen

Ported: N/A

Details Diff
Use proper variable type for format attribute.

DeviceIoControl with flag FSCTL_SET_COMPRESSION expect the format to be
as unsigned short not integer which can be 32 or 64 bits depending on
the compile. Switched this variable to uint16_t which should be an
unsigned short.

Fixes 0000436: Restore crash file daemon
Affected Issues
0000436
mod - src/findlib/attribs.c Diff File

master 9f9a88d4

2015-03-30 13:56

frank


Committer: mvwieringen

Ported: N/A

Details Diff
Spelling error correction
mod - scripts/bareos-config-lib.sh.in Diff File
mod - src/cats/grant_bareos_privileges.in Diff File

bareos-14.2 19d075e9

2015-03-30 13:56

frank


Committer: mvwieringen

Ported: N/A

Details Diff
Spelling error correction
mod - scripts/bareos-config-lib.sh.in Diff File
mod - src/cats/grant_bareos_privileges.in Diff File

master 4ab4a709

2015-03-27 23:53

mvwieringen

Ported: N/A

Details Diff
Bump version date.
mod - src/include/version.h Diff File

master bd4f42fb

2015-03-27 21:01

mvwieringen

Ported: N/A

Details Diff
Fix compiler warning.
mod - src/lib/bsock.h Diff File

master b30eb3ee

2015-03-27 20:37

mvwieringen

Ported: N/A

Details Diff
Some more hacking on usage() of traymonitor.
mod - src/qt-tray-monitor/tray-monitor.cpp Diff File

master b886b51b

2015-03-27 20:02

mvwieringen

Ported: N/A

Details Diff
Fix problems on Fedora 19 and 21.

Glusterfs on Fedora 19 seems to be old and as such does not allow us to
build the gfapi-fd plugin. As Fedora 19 is not supported anyway it makes
little sense to add a lot of work to make the gluster stuff work on that
platform.

On Fedora 21 it seems the compile flags are more strict which leads to
the following error:

tray-monitor.cpp:65:32: error: format not a string literal and no format
arguments [-Werror=format-security]
mod - platforms/packaging/bareos.spec Diff File
mod - src/qt-tray-monitor/tray-monitor.cpp Diff File

bareos-14.2 654edbb1

2015-03-27 20:02

mvwieringen


Committer: joergs

Ported: N/A

Details Diff
Fix problems on Fedora 19 and 21.

Glusterfs on Fedora 19 seems to be old and as such does not allow us to
build the gfapi-fd plugin. As Fedora 19 is not supported anyway it makes
little sense to add a lot of work to make the gluster stuff work on that
platform.

On Fedora 21 it seems the compile flags are more strict which leads to
the following error:

tray-monitor.cpp:65:32: error: format not a string literal and no format
arguments [-Werror=format-security]
mod - platforms/packaging/bareos.spec Diff File
mod - src/qt-tray-monitor/tray-monitor.cpp Diff File

master 2b0bb002

2015-03-27 19:46

mvwieringen

Ported: N/A

Details Diff
Fix problem found by coverity.

** CID 1291923: Memory - illegal accesses (UNINIT)
/src/plugins/filed/bpipe-fd.c: 780 in
parse_plugin_definition(bpContext *, void *)()

CID 1291923: Memory - illegal accesses (UNINIT)
Using uninitialized value "argument_value".
mod - src/plugins/filed/bpipe-fd.c Diff File

bareos-14.2 bb6beb10

2015-03-27 19:46

mvwieringen

Ported: N/A

Details Diff
Fix problem found by coverity.

** CID 1291923: Memory - illegal accesses (UNINIT)
/src/plugins/filed/bpipe-fd.c: 780 in
parse_plugin_definition(bpContext *, void *)()

CID 1291923: Memory - illegal accesses (UNINIT)
Using uninitialized value "argument_value".
mod - src/plugins/filed/bpipe-fd.c Diff File

master 1c435ae2

2015-03-27 16:50

pstorz

Ported: N/A

Details Diff
Refactor "prtit" to "printit"
mod - src/dird/protos.h Diff File
mod - src/dird/ua_output.c Diff File
mod - src/dird/ua_query.c Diff File
mod - src/dird/ua_restore.c Diff File
mod - src/dird/ua_select.c Diff File
mod - src/dird/ua_update.c Diff File

bareos-14.2 d179c1f0

2015-03-27 16:50

pstorz


Committer: mvwieringen

Ported: N/A

Details Diff
Refactor "prtit" to "printit"
mod - src/dird/protos.h Diff File
mod - src/dird/ua_output.c Diff File
mod - src/dird/ua_query.c Diff File
mod - src/dird/ua_restore.c Diff File
mod - src/dird/ua_select.c Diff File
mod - src/dird/ua_update.c Diff File

master 3f65364c

2015-03-26 15:02

joergs

Ported: N/A

Details Diff
Added descriptions to some config directives

These descriptions are used for automatically for the documentation.
mod - src/dird/dird_conf.c Diff File
 First  Prev  1 2 3 ... 60 ... 120 ... 180 ... 240 ... 300 ... 360 ... 420 ... 480 ... 530 531 532 533 534 535 536 ... 540 ... 600 ... 641 642 643  Next  Last