Changesets: bareos

master 585ade89

2024-08-01 14:10

Sebastian Sura


Committer: Bareos Bot

Ported: N/A

Details Diff
btraceback: add additional info

This info is helpful to debug problems without access to debug info.
mod - core/scripts/btraceback.gdb Diff File

master 5454edff

2024-08-01 13:54

Sebastian Sura


Committer: Bareos Bot

Ported: N/A

Details Diff
refactor: remove unused variable
mod - core/src/dird/jobq.cc Diff File
mod - core/src/dird/stats.cc Diff File
mod - core/src/lib/bsys.cc Diff File
mod - core/src/lib/cram_md5.cc Diff File
mod - core/src/lib/util.cc Diff File
mod - core/src/lib/watchdog.cc Diff File
mod - core/src/ndmp/ndml_log.c Diff File
mod - core/src/stored/backends/chunked_device.cc Diff File
mod - core/src/stored/backends/ordered_cbuf.cc Diff File
mod - core/src/stored/sd_stats.cc Diff File
mod - core/src/stored/wait.cc Diff File
mod - core/src/win32/compat/compat.cc Diff File

master b6194696

2024-08-01 13:47

Sebastian Sura


Committer: Bareos Bot

Ported: N/A

Details Diff
crypto-openssl: remove unused variable
mod - core/src/lib/crypto_openssl.cc Diff File

master 040a4140

2024-08-01 13:46

Sebastian Sura


Committer: Bareos Bot

Ported: N/A

Details Diff
channel: replace adhoc type definition
mod - core/src/lib/channel.h Diff File

master 3af491d2

2024-08-01 13:44

Sebastian Sura


Committer: Bareos Bot

Ported: N/A

Details Diff
scan: fix using unary - on unsigned value
mod - core/src/lib/scan.cc Diff File

master 303032d5

2024-08-01 13:44

Sebastian Sura


Committer: Bareos Bot

Ported: N/A

Details Diff
mem-pool: remove unreachable code
mod - core/src/lib/mem_pool.cc Diff File

master 13a33021

2024-08-01 13:33

Sebastian Sura


Committer: Bareos Bot

Ported: N/A

Details Diff
autoxflate: remove unused code
mod - core/src/plugins/stored/autoxflate/autoxflate-sd.cc Diff File

master ac54a5f7

2024-08-01 13:32

Sebastian Sura


Committer: Bareos Bot

Ported: N/A

Details Diff
util: print exception message
mod - core/src/lib/util.cc Diff File

master 512aefe1

2024-08-01 13:30

Sebastian Sura


Committer: Bareos Bot

Ported: N/A

Details Diff
device-resource: remove unreachable code
mod - core/src/stored/device_resource.cc Diff File

master 315c20dd

2024-08-01 13:30

Sebastian Sura


Committer: Bareos Bot

Ported: N/A

Details Diff
globals: remove unused global variable
mod - core/src/dird/dird_globals.h Diff File
mod - core/src/filed/filed_globals.h Diff File
mod - core/src/stored/status.cc Diff File
mod - core/src/stored/stored_globals.h Diff File

master 5577ee51

2024-08-01 13:29

Sebastian Sura


Committer: Bareos Bot

Ported: N/A

Details Diff
bsmtp: fix socket initialisation on windows
mod - core/src/tools/bsmtp.cc Diff File

master 42e70146

2024-08-01 13:20

Sebastian Sura


Committer: Bareos Bot

Ported: N/A

Details Diff
console-conf: remove useless switch
mod - core/src/console/console_conf.cc Diff File

master 06268b0b

2024-08-01 13:19

Sebastian Sura


Committer: Bareos Bot

Ported: N/A

Details Diff
console: remove unused code
mod - core/src/console/console.cc Diff File

master c87b1830

2024-08-01 13:05

Sebastian Sura


Committer: Bareos Bot

Ported: N/A

Details Diff
sql-create: remove dead code
mod - core/src/cats/sql_create.cc Diff File
mod - core/src/cats/sql_get.cc Diff File

master 9f416f36

2024-08-01 13:04

Sebastian Sura


Committer: Bareos Bot

Ported: N/A

Details Diff
scheduler: fix conversion error
mod - core/src/tests/scheduler.cc Diff File

master b5375893

2024-08-01 09:59

Sebastian Sura


Committer: Bareos Bot

Ported: N/A

Details Diff
compat: fix bad ssize_t
mod - core/src/win32/compat/include/compat.h Diff File

master 1fc1a23a

2024-07-31 15:21

Sebastian Sura

Ported: N/A

Details Diff
sd-reservation: fix not waiting long enough

If we do not wait long enough, then the number of `send()`s changes.
mod - core/src/tests/sd_reservation.cc Diff File

master f99fdead

2024-07-31 14:00

Sebastian Sura


Committer: Bareos Bot

Ported: N/A

Details Diff
bareos-vadp-dumper: fix out of bounds read
mod - core/src/vmware/vadp_dumper/bareos_vadp_dumper.cc Diff File

master ba96c621

2024-07-31 09:41

bruno-at-bareos

Ported: N/A

Details Diff
fix fileset name called during restore
mod - systemtests/tests/py3plug-fd-mariabackup/testrunner-default Diff File

master 2be10c60

2024-07-31 08:41

Sebastian Sura

Ported: N/A

Details Diff
bareos-test-sockets: change api

We were always trying to find an unused port, and then we try to bind
that port. This is not a good way to do it as there is
no guarantee that the port will still be free when we actually try to
bind the port, especially if there are a lot of concurrent tests
running.

Now we do it the opposite way: First we bind a random os-provided
free port and only then do we find out which port it actually is.
That should make sure that no two unit tests should ever try to bind
the same port.

There may still be conflicts between unittest ports and
system test ports, but that can be fixed in a different way (e.g. just
do not run that at the same time).
mod - core/src/tests/bareos_test_sockets.cc Diff File
mod - core/src/tests/bareos_test_sockets.h Diff File
mod - core/src/tests/test_bsock.cc Diff File

master 10da7e0e

2024-07-31 08:35

Sebastian Sura

Ported: N/A

Details Diff
tls-openssl: fix bad assert

(socket-) fds are allowed to be zero, so we should instead be checking
for '< 0' to detect bad socket fds.
mod - core/src/lib/tls_openssl_private.cc Diff File
mod - core/src/lib/tls_openssl_private.h Diff File

master f1cdfff1

2024-07-31 08:34

Sebastian Sura

Ported: N/A

Details Diff
create-resource: fix setting unused ports

This is in preparation of removing `create_unique_socket_number()`.
As these configuration values are not currently used in the tests, it
makes sense to just set them to 0 for now.
mod - core/src/tests/create_resource.cc Diff File

master 56e9ae6e

2024-07-30 07:34

Sebastian Sura


Committer: Bareos Bot

Ported: N/A

Details Diff
vadp-dumper: add some debug checks
mod - core/src/vmware/vadp_dumper/bareos_vadp_dumper.cc Diff File
mod - core/src/vmware/vadp_dumper/copy_thread.cc Diff File

master b2b9ca22

2024-07-29 21:33

Bareos Bot


Committer: GitHub

Ported: N/A

Details Diff
Merge pull request #1876

VMware Plugin: Add option restore_allow_disks_mismatch
mod - CHANGELOG.md Diff File
mod - core/src/plugins/filed/python/vmware/bareos-fd-vmware.py Diff File
mod - docs/manuals/source/TasksAndConcepts/Plugins/FileDaemonPlugins/VMwarePlugin.rst.inc Diff File

master fa2fe8d3

2024-07-29 21:33

Bareos Bot

Ported: N/A

Details Diff
Update CHANGELOG.md
mod - CHANGELOG.md Diff File
 First  Prev  1 2 3 ... 54 55 56 57 58 59 60 ... 70 ... 140 ... 210 ... 280 ... 350 ... 420 ... 490 ... 560 ... 630 ... 688 689 690  Next  Last