Changesets: bareos
master 9ce0e6fe 2015-06-18 16:38 Ported: N/A Details Diff |
added Felix Geyer | ||
mod - AUTHORS | Diff File | ||
master c35b6b23 2015-06-18 16:36 Ported: N/A Details Diff |
Merge branch 'build-flags' of https://github.com/debfx/bareos into debfx-build-flags | ||
mod - autoconf/configure.in | Diff File | ||
mod - src/plugins/dird/Makefile.in | Diff File | ||
mod - src/plugins/filed/Makefile.in | Diff File | ||
mod - src/plugins/stored/Makefile.in | Diff File | ||
mod - src/tools/Makefile.in | Diff File | ||
master e5010829 2015-06-17 12:13 Ported: N/A Details Diff |
Updated README.md | ||
mod - README.md | Diff File | ||
master 25838bbe 2015-06-17 12:08 Ported: N/A Details Diff |
Updated README.md | ||
mod - README.md | Diff File | ||
master 65f9f732 2015-06-16 17:12 Ported: N/A Details Diff |
Add zfs to the list of filesystems Add zfs to the default fs list |
||
mod - src/defaultconfigs/diskonly/bareos-dir.conf.in | Diff File | ||
master 0946c55b 2015-06-13 16:06 Felix Geyer Ported: N/A Details Diff |
Pass $CXXFLAGS and $CPPFLAGS to all compiler invocations. In some cases they were missing. |
||
mod - src/plugins/dird/Makefile.in | Diff File | ||
mod - src/plugins/filed/Makefile.in | Diff File | ||
mod - src/plugins/stored/Makefile.in | Diff File | ||
mod - src/tools/Makefile.in | Diff File | ||
master 23ff0297 2015-06-13 16:06 Felix Geyer Ported: N/A Details Diff |
Pass build flags to qmake. qmake doesn't use $CPPFLAGS and $LDFLAGS from the environment so they need to be passed manually. |
||
mod - autoconf/configure.in | Diff File | ||
master 2993fbdc 2015-06-13 16:01 Felix Geyer Ported: N/A Details Diff |
Fix typos regarding CPPFLAGS. CPPFLAGS from the environment were overwritten in some cases. |
||
mod - autoconf/configure.in | Diff File | ||
master c868a14d 2015-06-10 18:22 Ported: N/A Details Diff |
Rebuild configure. | ||
mod - configure | Diff File | ||
master 3e587c09 2015-06-09 20:46 Ported: N/A Details Diff |
Sync lmdb. | ||
mod - src/lmdb/lmdb.h | Diff File | ||
mod - src/lmdb/mdb.c | Diff File | ||
master 64475ea6 2015-06-09 11:25 Ported: N/A Details Diff |
Tweak code to solve compiler warning. | ||
mod - src/dird/ua_status.c | Diff File | ||
master 55d87f7e 2015-06-07 00:42 Ported: N/A Details Diff |
Add FIFO device abstraction for Windows. | ||
mod - src/stored/backends/unix_fifo_device.h | Diff File | ||
mod - src/stored/dev.c | Diff File | ||
mod - src/win32/stored/Makefile | Diff File | ||
add - src/win32/stored/backends/win32_fifo_device.c | Diff File | ||
add - src/win32/stored/backends/win32_fifo_device.h | Diff File | ||
master 86a49824 2015-06-05 21:04 Committer: mvwieringen Ported: N/A Details Diff |
Debian: add systemd support Debian >= 8 and Ubuntu >= 15.04 do use systemd as primary init system. This change let Bareos use the already existing systemd service files. Limitations: - The systemd service files have the same name as the package (e.g. bareos-filedaemon.service instead of bareos-fd.service). However, the service files contain aliases to the short name and are therefore also usable with the short name. - During compile, the package dh-systemd must be installed. However, it is not added in the control/dsc files, as it is not available on older platforms. Other changes: - use ${datarootdir}/dbconfig-common/ instead of /usr/share/dbconfig-common/ to able able to manual build and install it as normal user. |
Affected Issues 0000432 |
|
mod - autoconf/configure.in | Diff File | ||
add - debian/bareos-director.service.in | Diff File | ||
add - debian/bareos-filedaemon.service.in | Diff File | ||
add - debian/bareos-storage.service.in | Diff File | ||
mod - debian/control.in | Diff File | ||
mod - debian/rules | Diff File | ||
mod - platforms/debian/Makefile.in | Diff File | ||
mod - platforms/systemd/bareos-dir.service.in | Diff File | ||
mod - platforms/systemd/bareos-fd.service.in | Diff File | ||
mod - platforms/systemd/bareos-sd.service.in | Diff File | ||
master abc88bd8 2015-06-05 17:51 Ported: N/A Details Diff |
Fix typo. | ||
mod - src/lib/output_formatter.c | Diff File | ||
master 51c39261 2015-06-01 18:10 Committer: mvwieringen Ported: N/A Details Diff |
Clear vss mutex when regex fails | ||
mod - src/filed/dir_cmd.c | Diff File | ||
bareos-14.2 6d73c763 2015-06-01 18:10 Committer: joergs Ported: N/A Details Diff |
Clear vss mutex when regex fails | ||
mod - src/filed/dir_cmd.c | Diff File | ||
master 4907f960 2015-05-31 23:45 Ported: N/A Details Diff |
Implement api mode 2 (JSON) for autochanger content | ||
mod - src/dird/ua_status.c | Diff File | ||
master ecd961f0 2015-05-30 14:01 Ported: N/A Details Diff |
Don't call PyCheckFile() When we have a inactive python-fd instance in a Job e.g. no option or file plugin definition in the fileset we are still called as part of the Checkfile method which calls each plugin loaded. This gives problems as we try to lookup the entry point into a non-existing python script and as such we have no dictonary at all which means the lookup will dereference a null pointer. Fixes 0000473: Incremental backup failure |
Affected Issues 0000473 |
|
mod - src/plugins/filed/python-fd.c | Diff File | ||
bareos-14.2 5b4afdd5 2015-05-30 14:01 Ported: N/A Details Diff |
Don't call PyCheckFile() When we have a inactive python-fd instance in a Job e.g. no option or file plugin definition in the fileset we are still called as part of the Checkfile method which calls each plugin loaded. This gives problems as we try to lookup the entry point into a non-existing python script and as such we have no dictonary at all which means the lookup will dereference a null pointer. Fixes 0000473: Incremental backup failure |
Affected Issues 0000473 |
|
mod - src/plugins/filed/python-fd.c | Diff File | ||
master 4dc244c9 2015-05-29 23:05 Ported: N/A Details Diff |
Fix python-fd incremental/differential backup handling. | ||
mod - src/plugins/filed/python-fd.c | Diff File | ||
bareos-14.2 f32adc72 2015-05-29 23:05 Ported: N/A Details Diff |
Fix python-fd incremental/differential backup handling. | ||
mod - src/plugins/filed/python-fd.c | Diff File | ||
master 8185b9c6 2015-05-29 15:44 Ported: N/A Details Diff |
switch to bareos-addon package We now have a bareos-addon rpm package that contains everything from the bareos-addons repo |
||
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 e2e32f4e 2015-05-29 15:44 Committer: joergs Ported: N/A Details Diff |
switch to bareos-addon package We now have a bareos-addon rpm package that contains everything from the bareos-addons repo |
||
mod - platforms/win32/winbareos-nsi.spec | Diff File | ||
mod - platforms/win32/winbareos32.spec | Diff File | ||
mod - platforms/win32/winbareos64.spec | Diff File | ||
master 044a81ef 2015-05-28 23:34 Ported: N/A Details Diff |
OpenSSL deprecated SSLv23_method so use TLS_method For OpenSSL version 1.1.0 and higher the SSLv23_method() is deprecated and one should use TLS_method() e.g. not TLSv1*_method as we did before. |
||
mod - src/lib/tls_openssl.c | Diff File | ||
bareos-14.2 91d9ffe5 2015-05-28 23:34 Ported: N/A Details Diff |
OpenSSL deprecated SSLv23_method so use TLS_method For OpenSSL version 1.1.0 and higher the SSLv23_method() is deprecated and one should use TLS_method() e.g. not TLSv1*_method as we did before. |
||
mod - src/lib/tls_openssl.c | Diff File |