Changesets: bareos
master a6ebc104 2020-10-01 18:27 Ported: N/A Details Diff |
systemtest: when finding multiple psql binaries, select the first | ||
mod - systemtests/environment.in | Diff File | ||
master 15397ad7 2020-10-01 17:06 Committer: GitHub Ported: N/A Details Diff |
Merge pull request 0000616 from arogge/dev/arogge/master/TT4200696 Fix memory corruptions in SD |
||
mod - core/src/stored/backends/generic_tape_device.cc | Diff File | ||
mod - core/src/stored/label.cc | Diff File | ||
master 1a646baa 2020-10-01 15:49 Ported: N/A Details Diff |
devtools: add tool to add changelog releases | ||
mod - devtools/README.md | Diff File | ||
add - devtools/new-changelog-release.sh | Diff File | ||
master d42e4ccd 2020-10-01 15:23 Ported: N/A Details Diff |
devtools: add tool to generate links in changelog | ||
mod - devtools/README.md | Diff File | ||
add - devtools/update-changelog-links.sh | Diff File | ||
master ab2ba0e3 2020-10-01 15:01 Ported: N/A Details Diff |
devtools: introduce devtools directory * add a README.md * move prepare-release.sh to devtools dir |
||
add - devtools/README.md | Diff File | ||
master a7d8dce1 2020-10-01 14:55 Committer: GitHub Ported: N/A Details Diff |
Merge pull request 0000614 from bareos/dev/franku/master/bareos-test-sockets tests: call WSAStartup for windows socket tests |
||
mod - core/src/tests/bareos_test_sockets.cc | Diff File | ||
master c918b518 2020-10-01 12:41 Committer: franku Ported: N/A Details Diff |
docs: add files for TlsProtocol directive | ||
add - docs/manuals/source/manually_added_config_directive_descriptions/console-client-TlsProtocol.rst.inc | Diff File | ||
add - docs/manuals/source/manually_added_config_directive_descriptions/console-console-TlsProtocol.rst.inc | Diff File | ||
add - docs/manuals/source/manually_added_config_directive_descriptions/console-director-TlsProtocol.rst.inc | Diff File | ||
add - docs/manuals/source/manually_added_config_directive_descriptions/console-monitor-TlsProtocol.rst.inc | Diff File | ||
add - docs/manuals/source/manually_added_config_directive_descriptions/console-storage-TlsProtocol.rst.inc | Diff File | ||
add - docs/manuals/source/manually_added_config_directive_descriptions/dir-client-TlsProtocol.rst.inc | Diff File | ||
add - docs/manuals/source/manually_added_config_directive_descriptions/dir-console-TlsProtocol.rst.inc | Diff File | ||
add - docs/manuals/source/manually_added_config_directive_descriptions/dir-director-TlsProtocol.rst.inc | Diff File | ||
add - docs/manuals/source/manually_added_config_directive_descriptions/dir-storage-TlsProtocol.rst.inc | Diff File | ||
add - docs/manuals/source/manually_added_config_directive_descriptions/fd-client-TlsProtocol.rst.inc | Diff File | ||
add - docs/manuals/source/manually_added_config_directive_descriptions/fd-director-TlsProtocol.rst.inc | Diff File | ||
add - docs/manuals/source/manually_added_config_directive_descriptions/fd-filedaemon-TlsProtocol.rst.inc | Diff File | ||
add - docs/manuals/source/manually_added_config_directive_descriptions/sd-director-TlsProtocol.rst.inc | Diff File | ||
add - docs/manuals/source/manually_added_config_directive_descriptions/sd-storage-TlsProtocol.rst.inc | Diff File | ||
master 53e67001 2020-09-30 18:18 Ported: N/A Details Diff |
stored: always initialize struct mtop When running in valgrind the ioctl() call that consumes struct mtop is flagged as accessing uninitialized memory. This patch initializes every struct mtop. |
||
mod - core/src/stored/backends/generic_tape_device.cc | Diff File | ||
bareos-19.2 f8918d91 2020-09-30 18:18 Ported: N/A Details Diff |
stored: always initialize struct mtop When running in valgrind the ioctl() call that consumes struct mtop is flagged as accessing uninitialized memory. This patch initializes every struct mtop. (cherry picked from commit 53e6700179147c071f971a9d47f53c140a65e333) |
||
mod - core/src/stored/backends/generic_tape_device.cc | Diff File | ||
bareos-18.2 cd1591ec 2020-09-30 18:18 Ported: N/A Details Diff |
stored: always initialize struct mtop When running in valgrind the ioctl() call that consumes struct mtop is flagged as accessing uninitialized memory. This patch initializes every struct mtop. (cherry picked from commit 53e6700179147c071f971a9d47f53c140a65e333) |
||
mod - core/src/stored/backends/generic_tape_device.cc | Diff File | ||
master 2cf9db2d 2020-09-30 16:20 Ported: N/A Details Diff |
stored: fix memory corruption in label.cc pointer lifetime in WriteNewVolumeLabelToDev() Previously, in WriteNewVolumeLabelToDev() a copy of the pointer dcr->block was saved and then used as a parameter to EmptyBlock(). This pointer's lifetime ends in dev->SetLabelBlockSize() when the previously written device's block size was larger than the label block size. This patch removes the copy and uses dcr->block directly, so the updated pointer is used. |
||
mod - core/src/stored/label.cc | Diff File | ||
bareos-19.2 0086b852 2020-09-30 16:20 Ported: N/A Details Diff |
stored: fix memory corruption in label.cc pointer lifetime in WriteNewVolumeLabelToDev() Previously, in WriteNewVolumeLabelToDev() a copy of the pointer dcr->block was saved and then used as a parameter to EmptyBlock(). This pointer's lifetime ends in dev->SetLabelBlockSize() when the previously written device's block size was larger than the label block size. This patch removes the copy and uses dcr->block directly, so the updated pointer is used. (cherry picked from commit 2cf9db2ded05ea3f5c0bfea587dfbc7e9064417f) |
||
mod - core/src/stored/label.cc | Diff File | ||
bareos-18.2 dc6282b6 2020-09-30 16:20 Ported: N/A Details Diff |
stored: fix memory corruption in label.cc pointer lifetime in WriteNewVolumeLabelToDev() Previously, in WriteNewVolumeLabelToDev() a copy of the pointer dcr->block was saved and then used as a parameter to EmptyBlock(). This pointer's lifetime ends in dev->SetLabelBlockSize() when the previously written device's block size was larger than the label block size. This patch removes the copy and uses dcr->block directly, so the updated pointer is used. (cherry picked from commit 2cf9db2ded05ea3f5c0bfea587dfbc7e9064417f) |
||
mod - core/src/stored/label.cc | Diff File | ||
master 121a15f3 2020-09-30 13:06 Ported: N/A Details Diff |
tests: call WSAStartup for windows socket tests | ||
mod - core/src/tests/bareos_test_sockets.cc | Diff File | ||
master 0efed0c0 2020-09-29 22:54 Ported: N/A Details Diff |
RHEL7 | ||
mod - docs/pkglists/RHEL_7.x86_64 | Diff File | ||
master 8cfbde8e 2020-09-29 22:53 Ported: N/A Details Diff |
CentOS_7 | ||
mod - docs/pkglists/CentOS_7.x86_64 | Diff File | ||
master 6ce1321b 2020-09-29 20:48 Ported: N/A Details Diff |
sort of pkglists | ||
mod - docs/pkglists/CentOS_7.x86_64 | Diff File | ||
mod - docs/pkglists/CentOS_8.x86_64 | Diff File | ||
mod - docs/pkglists/Debian_10.x86_64 | Diff File | ||
mod - docs/pkglists/Debian_8.0.i586 | Diff File | ||
mod - docs/pkglists/Debian_8.0.x86_64 | Diff File | ||
mod - docs/pkglists/Debian_9.0.i586 | Diff File | ||
mod - docs/pkglists/Debian_9.0.x86_64 | Diff File | ||
mod - docs/pkglists/Fedora_29.x86_64 | Diff File | ||
mod - docs/pkglists/Fedora_30.x86_64 | Diff File | ||
mod - docs/pkglists/Fedora_31.x86_64 | Diff File | ||
mod - docs/pkglists/Fedora_32.x86_64 | Diff File | ||
mod - docs/pkglists/RHEL_7.x86_64 | Diff File | ||
mod - docs/pkglists/RHEL_8.x86_64 | Diff File | ||
mod - docs/pkglists/SLE_12_SP4.x86_64 | Diff File | ||
mod - docs/pkglists/SLE_15.x86_64 | Diff File | ||
mod - docs/pkglists/SLE_15_SP1.x86_64 | Diff File | ||
mod - docs/pkglists/Univention_4.3.x86_64 | Diff File | ||
mod - docs/pkglists/openSUSE_Leap_15.0.x86_64 | Diff File | ||
mod - docs/pkglists/openSUSE_Leap_15.1.x86_64 | Diff File | ||
mod - docs/pkglists/openSUSE_Leap_15.2.x86_64 | Diff File | ||
mod - docs/pkglists/xUbuntu_16.04.i586 | Diff File | ||
mod - docs/pkglists/xUbuntu_16.04.x86_64 | Diff File | ||
mod - docs/pkglists/xUbuntu_18.04.x86_64 | Diff File | ||
mod - docs/pkglists/xUbuntu_20.04.x86_64 | Diff File | ||
master c7576ced 2020-09-29 20:48 Ported: N/A Details Diff |
add missing : | ||
mod - debian/control.bareos-director-python2-plugin | Diff File | ||
master d9e9c29b 2020-09-29 17:28 Ported: N/A Details Diff |
BareosGenerateDebianInfo: python2 | ||
mod - core/cmake/BareosGenerateDebianInfo.cmake | Diff File | ||
master a3671eaa 2020-09-29 17:14 Ported: N/A Details Diff |
debuginfo package | ||
mod - docs/pkglists/CentOS_8.x86_64 | Diff File | ||
mod - docs/pkglists/Fedora_29.x86_64 | Diff File | ||
mod - docs/pkglists/Fedora_30.x86_64 | Diff File | ||
mod - docs/pkglists/Fedora_31.x86_64 | Diff File | ||
mod - docs/pkglists/Fedora_32.x86_64 | Diff File | ||
mod - docs/pkglists/RHEL_8.x86_64 | Diff File | ||
mod - docs/pkglists/SLE_12_SP4.x86_64 | Diff File | ||
mod - docs/pkglists/SLE_15.x86_64 | Diff File | ||
mod - docs/pkglists/SLE_15_SP1.x86_64 | Diff File | ||
mod - docs/pkglists/openSUSE_Leap_15.0.x86_64 | Diff File | ||
mod - docs/pkglists/openSUSE_Leap_15.1.x86_64 | Diff File | ||
mod - docs/pkglists/openSUSE_Leap_15.2.x86_64 | Diff File | ||
master c44bd155 2020-09-29 16:46 Ported: N/A Details Diff |
docs: fix pkglists | ||
mod - docs/pkglists/CentOS_6.x86_64 | Diff File | ||
mod - docs/pkglists/CentOS_7.x86_64 | Diff File | ||
mod - docs/pkglists/CentOS_8.x86_64 | Diff File | ||
mod - docs/pkglists/Debian_10.x86_64 | Diff File | ||
mod - docs/pkglists/Debian_8.0.i586 | Diff File | ||
mod - docs/pkglists/Debian_8.0.x86_64 | Diff File | ||
mod - docs/pkglists/Debian_9.0.i586 | Diff File | ||
mod - docs/pkglists/Debian_9.0.x86_64 | Diff File | ||
mod - docs/pkglists/Fedora_29.x86_64 | Diff File | ||
mod - docs/pkglists/Fedora_30.x86_64 | Diff File | ||
mod - docs/pkglists/Fedora_31.x86_64 | Diff File | ||
mod - docs/pkglists/Fedora_32.x86_64 | Diff File | ||
mod - docs/pkglists/RHEL_6.x86_64 | Diff File | ||
mod - docs/pkglists/RHEL_7.x86_64 | Diff File | ||
mod - docs/pkglists/RHEL_8.x86_64 | Diff File | ||
mod - docs/pkglists/SLE_12_SP4.x86_64 | Diff File | ||
mod - docs/pkglists/SLE_15.x86_64 | Diff File | ||
mod - docs/pkglists/SLE_15_SP1.x86_64 | Diff File | ||
mod - docs/pkglists/Univention_4.3.x86_64 | Diff File | ||
mod - docs/pkglists/openSUSE_Leap_15.0.x86_64 | Diff File | ||
mod - docs/pkglists/openSUSE_Leap_15.1.x86_64 | Diff File | ||
mod - docs/pkglists/openSUSE_Leap_15.2.x86_64 | Diff File | ||
mod - docs/pkglists/xUbuntu_16.04.i586 | Diff File | ||
mod - docs/pkglists/xUbuntu_16.04.x86_64 | Diff File | ||
mod - docs/pkglists/xUbuntu_18.04.x86_64 | Diff File | ||
mod - docs/pkglists/xUbuntu_20.04.x86_64 | Diff File | ||
master 34596408 2020-09-29 14:09 Ported: N/A Details Diff |
pkglists: package name is now [daemon]-python2-plugin | ||
mod - docs/pkglists/CentOS_6.x86_64 | Diff File | ||
mod - docs/pkglists/CentOS_7.x86_64 | Diff File | ||
mod - docs/pkglists/CentOS_8.x86_64 | Diff File | ||
mod - docs/pkglists/Debian_10.x86_64 | Diff File | ||
mod - docs/pkglists/Debian_8.0.i586 | Diff File | ||
mod - docs/pkglists/Debian_8.0.x86_64 | Diff File | ||
mod - docs/pkglists/Debian_9.0.i586 | Diff File | ||
mod - docs/pkglists/Debian_9.0.x86_64 | Diff File | ||
mod - docs/pkglists/Fedora_29.x86_64 | Diff File | ||
mod - docs/pkglists/Fedora_30.x86_64 | Diff File | ||
mod - docs/pkglists/Fedora_31.x86_64 | Diff File | ||
mod - docs/pkglists/Fedora_32.x86_64 | Diff File | ||
mod - docs/pkglists/RHEL_6.x86_64 | Diff File | ||
mod - docs/pkglists/RHEL_7.x86_64 | Diff File | ||
mod - docs/pkglists/RHEL_8.x86_64 | Diff File | ||
mod - docs/pkglists/SLE_12_SP4.x86_64 | Diff File | ||
mod - docs/pkglists/SLE_15.x86_64 | Diff File | ||
mod - docs/pkglists/SLE_15_SP1.x86_64 | Diff File | ||
mod - docs/pkglists/Univention_4.3.x86_64 | Diff File | ||
mod - docs/pkglists/openSUSE_Leap_15.0.x86_64 | Diff File | ||
mod - docs/pkglists/openSUSE_Leap_15.1.x86_64 | Diff File | ||
mod - docs/pkglists/openSUSE_Leap_15.2.x86_64 | Diff File | ||
mod - docs/pkglists/xUbuntu_16.04.i586 | Diff File | ||
mod - docs/pkglists/xUbuntu_16.04.x86_64 | Diff File | ||
mod - docs/pkglists/xUbuntu_18.04.x86_64 | Diff File | ||
mod - docs/pkglists/xUbuntu_20.04.x86_64 | Diff File | ||
master 3b955399 2020-09-29 14:08 Ported: N/A Details Diff |
python: ldap plugin: only works with python2 | ||
mod - debian/control.bareos-filedaemon-python2-plugin | Diff File | ||
master 91026343 2020-09-29 14:03 Ported: N/A Details Diff |
python plugins: use target_compile_definitions() | ||
mod - core/src/plugins/CMakeLists.txt | Diff File | ||
mod - core/src/plugins/dird/python/CMakeLists.txt | Diff File | ||
mod - core/src/plugins/filed/python/CMakeLists.txt | Diff File | ||
mod - core/src/plugins/stored/python/CMakeLists.txt | Diff File | ||
master 5df8d424 2020-09-29 13:57 Ported: N/A Details Diff |
bareos-root: add changelog file | ||
add - CHANGELOG.md | Diff File | ||
mod - docs/manuals/source/conf.py | Diff File |