Changesets: bareos2015
bareos-14.2 f5eb37de 2013-11-15 22:43 Ported: N/A Details Diff |
Some filesystems violate against the POSIX rules. when backing up a filesystem mounted to a linux host via ntfs, we get an assertion error: backup-sd-fd: bfile.c:1031-0 open file /bacula-mounts/INEZ/part2/Users/<username>/AppData/Local/Packages/WinStore_cw5n1h2txyewy/AC/Microsoft/Windows Store/Cache/0/0-Featured-httpsâºâ¯â¯next-services.apps.microsoft.comâ¯browseâ¯6.2.9200-1â¯667â¯câ¯DEâ¯Featuredâ¯10895826.dat backup-sd-fd: backup.c:983-0 Send data to SD len=6552 backup-sd-fd: find_one.c:756-0 Failed ASSERT: name_max+1 > (int)sizeof(struct dirent) + (int)NAMELEN(entry) Fixes 250: bareos-fd asserts when reading a file from ntfs volume mounted on linux |
||
mod - src/findlib/find_one.c | Diff File | ||
bareos-13.2 a586203b 2013-11-15 22:43 Ported: N/A Details Diff |
Some filesystems violate against the POSIX rules. when backing up a filesystem mounted to a linux host via ntfs, we get an assertion error: backup-sd-fd: bfile.c:1031-0 open file /bacula-mounts/INEZ/part2/Users/<username>/AppData/Local/Packages/WinStore_cw5n1h2txyewy/AC/Microsoft/Windows Store/Cache/0/0-Featured-httpsâºâ¯â¯next-services.apps.microsoft.comâ¯browseâ¯6.2.9200-1â¯667â¯câ¯DEâ¯Featuredâ¯10895826.dat backup-sd-fd: backup.c:983-0 Send data to SD len=6552 backup-sd-fd: find_one.c:756-0 Failed ASSERT: name_max+1 > (int)sizeof(struct dirent) + (int)NAMELEN(entry) Fixes 0000250: bareos-fd asserts when reading a file from ntfs volume mounted on linux |
Affected Issues 0000250 |
|
mod - src/findlib/find_one.c | Diff File | ||
bareos-12.4 cdebbb5c 2013-11-15 22:43 Ported: N/A Details Diff |
Some filesystems violate against the POSIX rules. when backing up a filesystem mounted to a linux host via ntfs, we get an assertion error: backup-sd-fd: bfile.c:1031-0 open file /bacula-mounts/INEZ/part2/Users/<username>/AppData/Local/Packages/WinStore_cw5n1h2txyewy/AC/Microsoft/Windows Store/Cache/0/0-Featured-httpsâºâ¯â¯next-services.apps.microsoft.comâ¯browseâ¯6.2.9200-1â¯667â¯câ¯DEâ¯Featuredâ¯10895826.dat backup-sd-fd: backup.c:983-0 Send data to SD len=6552 backup-sd-fd: find_one.c:756-0 Failed ASSERT: name_max+1 > (int)sizeof(struct dirent) + (int)NAMELEN(entry) Fixes 0000250: bareos-fd asserts when reading a file from ntfs volume mounted on linux |
Affected Issues 0000250 |
|
mod - src/findlib/find_one.c | Diff File | ||
bareos-14.2 d49d3d23 2013-11-15 18:21 Committer: mvwieringen Ported: N/A Details Diff |
cleanup database population remove scripts for testdatabase. These have not been used for a long time, and probably do not work anymore anyway. mysql: grant access to different localhost settings (localhost, 127.0.0.1, ::1). Better database password support. Signed-off-by: Marco van Wieringen <marco.van.wieringen@bareos.com> |
||
rm - src/cats/create_test_database | Diff File | ||
rm - src/cats/drop_test_tables | Diff File | ||
mod - src/cats/grant_mysql_privileges.in | Diff File | ||
mod - src/cats/grant_postgresql_privileges.in | Diff File | ||
rm - src/cats/make_test_tables | Diff File | ||
bareos-13.2 035e04d1 2013-11-15 18:21 Committer: mvwieringen Ported: N/A Details Diff |
cleanup database population remove scripts for testdatabase. These have not been used for a long time, and probably do not work anymore anyway. mysql: grant access to different localhost settings (localhost, 127.0.0.1, ::1). Better database password support. Signed-off-by: Marco van Wieringen <marco.van.wieringen@bareos.com> |
||
rm - src/cats/create_test_database | Diff File | ||
rm - src/cats/drop_test_tables | Diff File | ||
mod - src/cats/grant_mysql_privileges.in | Diff File | ||
mod - src/cats/grant_postgresql_privileges.in | Diff File | ||
rm - src/cats/make_test_tables | Diff File | ||
bareos-12.4 fc9ebd6d 2013-11-15 18:21 Committer: mvwieringen Ported: N/A Details Diff |
cleanup database population remove scripts for testdatabase. These have not been used for a long time, and probably do not work anymore anyway. mysql: grant access to different localhost settings (localhost, 127.0.0.1, ::1). Better database password support. Signed-off-by: Marco van Wieringen <marco.van.wieringen@bareos.com> |
||
rm - src/cats/create_test_database | Diff File | ||
rm - src/cats/drop_test_tables | Diff File | ||
mod - src/cats/grant_mysql_privileges.in | Diff File | ||
mod - src/cats/grant_postgresql_privileges.in | Diff File | ||
rm - src/cats/make_test_tables | Diff File | ||
bareos-14.2 a183d79c 2013-11-13 21:26 Ported: N/A Details Diff |
Fix missing break | ||
mod - src/dird/ua_label.c | Diff File | ||
bareos-14.2 da3ca7c1 2013-11-13 18:27 Andre Noll Committer: mvwieringen Ported: N/A Details Diff |
Fix compilation on RHEL4. These (very old) systems ship with openssl-0.9.7a which defines EVP_MAX_MD_SIZE to 36, a smaller constant than bareos' CRYPTO_DIGEST_MAX_SIZE (64). This mismatch results in the following error on attempt to compile crypto_openssl.c: crypto_openssl.c:58:2: #error "EVP_MAX_MD_SIZE != CRYPTO_DIGEST_MAX_SIZE, please update src/lib/crypto.h" The purpose of the preprocessor sanity check that causes this error is to make sure that various arrays of length CRYPTO_DIGEST_MAX_SIZE are large enough for all message digests. So all we actually need to check for is that EVP_MAX_MD_SIZE is no larger than CRYPTO_DIGEST_MAX_SIZE. Weakening the condition of the above check from "!=" to ">" turned out to be enough to compile bareos on Red Hat Enterprise Linux 4 (using --client-only though). The resulting executable worked with no problems. This patch also adds a comment that explains the purpose of the check. Signed-off-by: Marco van Wieringen <marco.van.wieringen@bareos.com> |
||
mod - src/lib/crypto_openssl.c | Diff File | ||
bareos-13.2 05aeb118 2013-11-13 18:27 Andre Noll Committer: mvwieringen Ported: N/A Details Diff |
Fix compilation on RHEL4. These (very old) systems ship with openssl-0.9.7a which defines EVP_MAX_MD_SIZE to 36, a smaller constant than bareos' CRYPTO_DIGEST_MAX_SIZE (64). This mismatch results in the following error on attempt to compile crypto_openssl.c: crypto_openssl.c:58:2: #error "EVP_MAX_MD_SIZE != CRYPTO_DIGEST_MAX_SIZE, please update src/lib/crypto.h" The purpose of the preprocessor sanity check that causes this error is to make sure that various arrays of length CRYPTO_DIGEST_MAX_SIZE are large enough for all message digests. So all we actually need to check for is that EVP_MAX_MD_SIZE is no larger than CRYPTO_DIGEST_MAX_SIZE. Weakening the condition of the above check from "!=" to ">" turned out to be enough to compile bareos on Red Hat Enterprise Linux 4 (using --client-only though). The resulting executable worked with no problems. This patch also adds a comment that explains the purpose of the check. Signed-off-by: Marco van Wieringen <marco.van.wieringen@bareos.com> |
||
mod - src/lib/crypto_openssl.c | Diff File | ||
bareos-12.4 f2579d08 2013-11-13 18:27 Andre Noll Committer: mvwieringen Ported: N/A Details Diff |
Fix compilation on RHEL4. These (very old) systems ship with openssl-0.9.7a which defines EVP_MAX_MD_SIZE to 36, a smaller constant than bareos' CRYPTO_DIGEST_MAX_SIZE (64). This mismatch results in the following error on attempt to compile crypto_openssl.c: crypto_openssl.c:58:2: #error "EVP_MAX_MD_SIZE != CRYPTO_DIGEST_MAX_SIZE, please update src/lib/crypto.h" The purpose of the preprocessor sanity check that causes this error is to make sure that various arrays of length CRYPTO_DIGEST_MAX_SIZE are large enough for all message digests. So all we actually need to check for is that EVP_MAX_MD_SIZE is no larger than CRYPTO_DIGEST_MAX_SIZE. Weakening the condition of the above check from "!=" to ">" turned out to be enough to compile bareos on Red Hat Enterprise Linux 4 (using --client-only though). The resulting executable worked with no problems. This patch also adds a comment that explains the purpose of the check. Signed-off-by: Marco van Wieringen <marco.van.wieringen@bareos.com> |
||
mod - src/lib/crypto.c | Diff File | ||
bareos-13.2 71694b66 2013-11-13 11:41 Committer: mvwieringen Ported: N/A Details Diff |
Fix cherry-pick error | ||
mod - platforms/win32/winbareos-nsi.spec | Diff File | ||
bareos-14.2 baac35fe 2013-11-13 11:37 Committer: mvwieringen Ported: N/A Details Diff |
Fixed cherry-picking error | ||
mod - platforms/win32/winbareos-nsi.spec | Diff File | ||
bareos-14.2 d8df1788 2013-11-12 23:23 Committer: mvwieringen Ported: N/A Details Diff |
support for openssl version 1 on windows before, we only supported openssl version 0.98 |
||
mod - platforms/win32/winbareos-nsi.spec | Diff File | ||
mod - platforms/win32/winbareos.nsi | Diff File | ||
bareos-13.2 113bda2e 2013-11-12 23:23 Committer: mvwieringen Ported: N/A Details Diff |
support for openssl version 1 on windows before, we only supported openssl version 0.98 |
||
mod - platforms/win32/winbareos-nsi.spec | Diff File | ||
mod - platforms/win32/winbareos.nsi | Diff File | ||
bareos-12.4 3957c968 2013-11-12 23:23 Committer: mvwieringen Ported: N/A Details Diff |
support for openssl version 1 on windows before, we only supported openssl version 0.98 |
||
mod - platforms/win32/winbareos-nsi.spec | Diff File | ||
mod - platforms/win32/winbareos.nsi | Diff File | ||
bareos-12.4 d21b2ebb 2013-11-12 15:37 Committer: mvwieringen Ported: N/A Details Diff |
switched version to 12.4.6 | ||
mod - configure | Diff File | ||
mod - platforms/packaging/bareos-Debian_6.0.dsc | Diff File | ||
mod - platforms/packaging/bareos-Debian_7.0.dsc | Diff File | ||
mod - platforms/packaging/bareos-Univention_3.1.dsc | Diff File | ||
mod - platforms/packaging/bareos-xUbuntu_10.04.dsc | Diff File | ||
mod - platforms/packaging/bareos-xUbuntu_12.04.dsc | Diff File | ||
mod - platforms/packaging/bareos.changes | Diff File | ||
mod - platforms/packaging/bareos.spec | Diff File | ||
mod - platforms/win32/winbareos-nsi.spec | Diff File | ||
mod - platforms/win32/winbareos32.spec | Diff File | ||
mod - platforms/win32/winbareos64.spec | Diff File | ||
mod - po/bareos.pot | Diff File | ||
mod - po/de.po | Diff File | ||
mod - po/es.po | Diff File | ||
mod - po/fr.po | Diff File | ||
mod - po/it.po | Diff File | ||
mod - po/nl.po | Diff File | ||
mod - po/sv.po | Diff File | ||
mod - po/uk.po | Diff File | ||
mod - src/include/version.h | Diff File | ||
bareos-13.2 1ec84cb9 2013-11-12 12:48 Committer: mvwieringen Ported: N/A Details Diff |
switched version to 13.2.2 | ||
mod - configure | Diff File | ||
mod - platforms/packaging/bareos-Debian_6.0.dsc | Diff File | ||
mod - platforms/packaging/bareos-Debian_7.0.dsc | Diff File | ||
mod - platforms/packaging/bareos-Univention_3.1.dsc | Diff File | ||
mod - platforms/packaging/bareos-xUbuntu_10.04.dsc | Diff File | ||
mod - platforms/packaging/bareos-xUbuntu_12.04.dsc | Diff File | ||
mod - platforms/packaging/bareos.changes | Diff File | ||
mod - platforms/packaging/bareos.spec | Diff File | ||
mod - platforms/win32/winbareos-nsi.spec | Diff File | ||
mod - platforms/win32/winbareos32.spec | Diff File | ||
mod - platforms/win32/winbareos64.spec | Diff File | ||
mod - po/POTFILES.in | Diff File | ||
mod - po/bareos.pot | Diff File | ||
mod - po/de.po | Diff File | ||
mod - po/es.po | Diff File | ||
mod - po/fr.po | Diff File | ||
mod - po/it.po | Diff File | ||
mod - po/nl.po | Diff File | ||
mod - po/sv.po | Diff File | ||
mod - po/uk.po | Diff File | ||
mod - src/include/version.h | Diff File | ||
bareos-14.2 18f03004 2013-11-11 16:35 Committer: mvwieringen Ported: N/A Details Diff |
Fixed merge mistake Signed-off-by: Marco van Wieringen <marco.van.wieringen@bareos.com> |
||
mod - platforms/win32/winbareos.nsi | Diff File | ||
bareos-14.2 c3b49c46 2013-11-11 14:54 Committer: mvwieringen Ported: N/A Details Diff |
compatible mode can now be set during install Now during install the setting of compatible can be chosen in a checkbox and on the cmdline for silent install. compatible is still enabled by default, but it can be disabled during install. fixes 0000235: offer setting of compatible setting of client during install Signed-off-by: Marco van Wieringen <marco.van.wieringen@bareos.com> |
Affected Issues 0000235 |
|
mod - platforms/win32/clientdialog.ini | Diff File | ||
mod - platforms/win32/winbareos.nsi | Diff File | ||
bareos-13.2 84ed893a 2013-11-11 14:54 Committer: mvwieringen Ported: N/A Details Diff |
compatible mode can now be set during install Now during install the setting of compatible can be chosen in a checkbox and on the cmdline for silent install. compatible is still enabled by default, but it can be disabled during install. fixes 0000235: offer setting of compatible setting of client during install Signed-off-by: Marco van Wieringen <marco.van.wieringen@bareos.com> |
Affected Issues 0000235 |
|
mod - platforms/win32/clientdialog.ini | Diff File | ||
mod - platforms/win32/winbareos.nsi | Diff File | ||
bareos-12.4 3ce946ac 2013-11-11 14:54 Committer: mvwieringen Ported: N/A Details Diff |
compatible mode can now be set during install Now during install the setting of compatible can be chosen in a checkbox and on the cmdline for silent install. compatible is still enabled by default, but it can be disabled during install. fixes 0000235: offer setting of compatible setting of client during install Signed-off-by: Marco van Wieringen <marco.van.wieringen@bareos.com> |
Affected Issues 0000235 |
|
mod - platforms/win32/clientdialog.ini | Diff File | ||
mod - platforms/win32/winbareos.nsi | Diff File | ||
bareos-14.2 f8f80435 2013-11-06 19:15 Committer: mvwieringen Ported: N/A Details Diff |
replaced documentation URL Signed-off-by: Marco van Wieringen <marco.van.wieringen@bareos.com> |
||
mod - po/de.po | Diff File | ||
mod - po/es.po | Diff File | ||
mod - po/fr.po | Diff File | ||
mod - po/uk.po | Diff File | ||
bareos-14.2 79f52208 2013-11-06 19:11 Committer: mvwieringen Ported: N/A Details Diff |
set MANUAL_AUTH_URL to Bareos documentation the provides URL has been wrong. Replaced to working documenation URL. Signed-off-by: Marco van Wieringen <marco.van.wieringen@bareos.com> |
||
mod - src/include/baconfig.h | Diff File | ||
bareos-13.2 e59884f5 2013-11-06 19:11 Committer: mvwieringen Ported: N/A Details Diff |
set MANUAL_AUTH_URL to Bareos documentation the provides URL has been wrong. Replaced to working documenation URL. Signed-off-by: Marco van Wieringen <marco.van.wieringen@bareos.com> |
||
mod - src/include/baconfig.h | Diff File | ||
bareos-12.4 0e4d98e8 2013-11-06 19:11 Committer: mvwieringen Ported: N/A Details Diff |
set MANUAL_AUTH_URL to Bareos documentation the provides URL has been wrong. Replaced to working documenation URL. Signed-off-by: Marco van Wieringen <marco.van.wieringen@bareos.com> |
||
mod - src/include/baconfig.h | Diff File |