Changesets: bareos
master 2310a00b 2019-07-03 14:18 Ported: N/A Details Diff |
systemtest: add bconsole-pam | ||
mod - core/cmake/BareosFindAllLibraries.cmake | Diff File | ||
mod - systemtests/CMakeLists.txt | Diff File | ||
mod - systemtests/environment.in | Diff File | ||
add - systemtests/tests/bconsole-pam/bin/check_pam_exec_available.sh | Diff File | ||
add - systemtests/tests/bconsole-pam/bin/pam_exec_check.sh | Diff File | ||
add - systemtests/tests/bconsole-pam/etc/bareos/bareos-dir.d/catalog/MyCatalog.conf.in | Diff File | ||
add - systemtests/tests/bconsole-pam/etc/bareos/bareos-dir.d/client/bareos-fd.conf.in | Diff File | ||
add - systemtests/tests/bconsole-pam/etc/bareos/bareos-dir.d/console/pam.conf | Diff File | ||
add - systemtests/tests/bconsole-pam/etc/bareos/bareos-dir.d/director/bareos-dir.conf.in | Diff File | ||
add - systemtests/tests/bconsole-pam/etc/bareos/bareos-dir.d/fileset/Catalog.conf.in | Diff File | ||
add - systemtests/tests/bconsole-pam/etc/bareos/bareos-dir.d/fileset/SelfTest.conf.in | Diff File | ||
add - systemtests/tests/bconsole-pam/etc/bareos/bareos-dir.d/job/RestoreFiles.conf.in | Diff File | ||
add - systemtests/tests/bconsole-pam/etc/bareos/bareos-dir.d/job/backup-bareos-fd.conf.in | Diff File | ||
add - systemtests/tests/bconsole-pam/etc/bareos/bareos-dir.d/jobdefs/DefaultJob.conf.in | Diff File | ||
add - systemtests/tests/bconsole-pam/etc/bareos/bareos-dir.d/messages/Daemon.conf.in | Diff File | ||
add - systemtests/tests/bconsole-pam/etc/bareos/bareos-dir.d/messages/Standard.conf.in | Diff File | ||
add - systemtests/tests/bconsole-pam/etc/bareos/bareos-dir.d/pool/Differential.conf | Diff File | ||
add - systemtests/tests/bconsole-pam/etc/bareos/bareos-dir.d/pool/Full.conf | Diff File | ||
add - systemtests/tests/bconsole-pam/etc/bareos/bareos-dir.d/pool/Incremental.conf | Diff File | ||
add - systemtests/tests/bconsole-pam/etc/bareos/bareos-dir.d/pool/Scratch.conf | Diff File | ||
add - systemtests/tests/bconsole-pam/etc/bareos/bareos-dir.d/profile/operator.conf | Diff File | ||
add - systemtests/tests/bconsole-pam/etc/bareos/bareos-dir.d/storage/File.conf.in | Diff File | ||
add - systemtests/tests/bconsole-pam/etc/bareos/bareos-dir.d/user/user1.conf | Diff File | ||
add - systemtests/tests/bconsole-pam/etc/bareos/bconsole-default.conf.in | Diff File | ||
add - systemtests/tests/bconsole-pam/etc/bareos/bconsole.conf.in | Diff File | ||
add - systemtests/tests/bconsole-pam/etc/pam.d/bareos.in | Diff File | ||
add - systemtests/tests/bconsole-pam/etc/user1.cred | Diff File | ||
add - systemtests/tests/bconsole-pam/etc/user2.cred | Diff File | ||
add - systemtests/tests/bconsole-pam/testrunner | Diff File | ||
master 85bf9625 2019-07-03 13:56 Tobias Plum Ported: N/A Details Diff |
webui: Updated bootstrap-table from 1.11.1 to 1.15.2 Fixes 0001049: Translation in German webUI Files taken from: https://github.com/wenzhixin/bootstrap-table/releases/tag/1.15.2 |
Affected Issues 0001049 |
|
mod - webui/public/css/bootstrap-table.css | Diff File | ||
mod - webui/public/css/bootstrap-table.min.css | Diff File | ||
mod - webui/public/js/bootstrap-table-cookie.js | Diff File | ||
mod - webui/public/js/bootstrap-table-cookie.min.js | Diff File | ||
mod - webui/public/js/bootstrap-table-locale-all.js | Diff File | ||
mod - webui/public/js/bootstrap-table-locale-all.min.js | Diff File | ||
mod - webui/public/js/bootstrap-table.js | Diff File | ||
mod - webui/public/js/bootstrap-table.min.js | Diff File | ||
master 8eb53679 2019-07-03 13:30 Ported: N/A Details Diff |
dird: add correct range instead of all files CreateRestoreBootstrapFile() should add all files from its related job (by number) and not [1,INT32_MAX]. |
||
mod - core/src/dird/job.cc | Diff File | ||
master 2506fd12 2019-07-03 12:58 Ported: N/A Details Diff |
bconsole: show error messages when connecting to the Director fails. | ||
mod - core/src/console/console.cc | Diff File | ||
bareos-18.2 da364183 2019-07-03 12:58 Ported: N/A Details Diff |
bconsole: show error messages when connecting to the Director fails. | ||
mod - core/src/console/console.cc | Diff File | ||
master bb5b0d3b 2019-07-03 12:35 Committer: GitHub Ported: N/A Details Diff |
Merge pull request 0000199 from bareos/dev/arogge/master/fileindex Add gtest tests for AddFindex() and write_findex() |
||
mod - core/src/dird/bsr.cc | Diff File | ||
mod - core/src/dird/bsr.h | Diff File | ||
mod - core/src/tests/CMakeLists.txt | Diff File | ||
add - core/src/tests/test_fileindex_list.cc | Diff File | ||
master 39cfe8dd 2019-07-03 12:21 Ported: N/A Details Diff |
dird: improve write_findex() performance Previously write_findex() used Bsnprintf() in each loop iteration. This patch now uses std::string and only appends the whole text to the buffer after the loop has finished. |
||
mod - core/src/dird/bsr.cc | Diff File | ||
master 247ae2df 2019-07-03 11:55 Ported: N/A Details Diff |
core: replace RestoreBootstrapRecordFileIndex The previous implementation of RestoreBootstrapRecordFileIndex with a linked-list performed badly for a list of files with many gaps. This patch replaces the linked-list with a std::vector and makes the overall runtime performance much more predictable and overall better. |
||
mod - core/src/dird/bsr.cc | Diff File | ||
mod - core/src/dird/bsr.h | Diff File | ||
mod - core/src/dird/job.cc | Diff File | ||
mod - core/src/dird/ua.h | Diff File | ||
mod - core/src/dird/ua_restore.cc | Diff File | ||
mod - core/src/dird/vbackup.cc | Diff File | ||
mod - core/src/tests/test_fileindex_list.cc | Diff File | ||
master e0d3ef0c 2019-07-02 21:59 Ported: N/A Details Diff |
cleanup: removed remainders of conio |
Affected Issues 0001076 |
|
mod - core/CMakeLists.txt | Diff File | ||
mod - core/cmake/BareosSetVariableDefaults.cmake | Diff File | ||
mod - core/debian/rules | Diff File | ||
mod - core/manpages/bconsole.1 | Diff File | ||
mod - core/platforms/freebsd/bareos-freebsd/bareos.com-common/BareosCommonMakefile | Diff File | ||
mod - core/platforms/packaging/bareos.spec | Diff File | ||
mod - core/po/POTFILES.in | Diff File | ||
mod - core/po/fr.po | Diff File | ||
mod - core/src/include/config.h.in | Diff File | ||
mod - regress/scripts/regress-config.in | Diff File | ||
bareos-18.2 6742ff53 2019-07-02 21:59 Ported: N/A Details Diff |
cleanup: removed remainders of conio | ||
mod - core/CMakeLists.txt | Diff File | ||
mod - core/cmake/BareosSetVariableDefaults.cmake | Diff File | ||
mod - core/debian/rules | Diff File | ||
mod - core/manpages/bconsole.1 | Diff File | ||
mod - core/platforms/freebsd/bareos-freebsd/bareos.com-common/BareosCommonMakefile | Diff File | ||
mod - core/platforms/packaging/bareos.spec | Diff File | ||
mod - core/po/POTFILES.in | Diff File | ||
mod - core/po/fr.po | Diff File | ||
mod - core/src/include/config.h.in | Diff File | ||
mod - regress/scripts/regress-config.in | Diff File | ||
master a7e73180 2019-07-02 18:52 Ported: N/A Details Diff |
tests: adapt fileindex test to coding standards | ||
mod - core/src/tests/test_fileindex_list.cc | Diff File | ||
master 60e98276 2019-07-02 18:39 Ported: N/A Details Diff |
license: added license text for backtrace.cc | ||
mod - core/LICENSE | Diff File | ||
master b6126290 2019-07-02 17:52 Committer: GitHub Ported: N/A Details Diff |
Merge pull request 0000198 from bareos/dev/fbergkemper/master/update-authors Update AUTHORS |
||
mod - AUTHORS | Diff File | ||
master 245db11b 2019-07-02 11:20 Ported: N/A Details Diff |
dir: make write_findex() accessible for testing This patch allows to call write_findex() from another compile unit. |
||
mod - core/src/dird/bsr.cc | Diff File | ||
mod - core/src/dird/bsr.h | Diff File | ||
master bb4d21f5 2019-07-01 23:24 Nick Gregory Ported: N/A Details Diff |
pass a IPv6 capable sized struct to accept - broken on x64_win32 | ||
mod - core/src/lib/bnet_server_tcp.cc | Diff File | ||
master acc99fdb 2019-07-01 19:57 Ported: N/A Details Diff |
tests: add tests for AddFindex() and write_findex() This adds functional tests for AddFindex() and write_findex() that also account the time spent for each operation. |
||
mod - core/src/tests/test_fileindex_list.cc | Diff File | ||
master e97ae8c5 2019-07-01 18:46 Ported: N/A Details Diff |
Update AUTHORS | ||
mod - AUTHORS | Diff File | ||
master cf7b2b1f 2019-07-01 18:42 Committer: GitHub Ported: N/A Details Diff |
Merge pull request 0000196 from astoorangi/webui webui: action button changes |
||
mod - webui/module/Job/view/job/job/details.phtml | Diff File | ||
mod - webui/module/Job/view/job/job/index.phtml | Diff File | ||
master 45f654b6 2019-07-01 18:03 Ported: N/A Details Diff |
cleanup: pullrequest review - removed unneccessary includes - refactored some code |
||
mod - core/src/console/connect_to_director.cc | Diff File | ||
mod - core/src/dird/dird.cc | Diff File | ||
mod - core/src/dird/dird_conf.cc | Diff File | ||
mod - core/src/lib/backtrace.cc | Diff File | ||
mod - core/src/lib/bnet_network_dump_private.cc | Diff File | ||
mod - core/src/lib/bnet_network_dump_private.h | Diff File | ||
mod - core/src/lib/bsock_tcp.cc | Diff File | ||
mod - core/src/lib/util.cc | Diff File | ||
mod - core/src/stored/socket_server.cc | Diff File | ||
bareos-18.2 13666883 2019-07-01 16:44 Committer: GitHub Ported: N/A Details Diff |
Merge pull request 0000197 from bareos/dev/franku/bareos-18.2/docs-update Update Doku |
||
mod - docs/manuals/source/DeveloperGuide/netprotocol.rst | Diff File | ||
mod - docs/manuals/source/DeveloperGuide/tls-techdoc.rst | Diff File | ||
mod - docs/manuals/source/DocumentationStyleGuide/RestOverview.rst | Diff File | ||
mod - docs/manuals/source/TasksAndConcepts/NetworkSetup.rst | Diff File | ||
master 6fef61b4 2019-07-01 16:35 Committer: GitHub Ported: N/A Details Diff |
Merge pull request 0000195 from bareos/dev/franku/master/docs-update Update Doku |
||
mod - docs/manuals/source/DeveloperGuide/netprotocol.rst | Diff File | ||
mod - docs/manuals/source/DeveloperGuide/tls-techdoc.rst | Diff File | ||
mod - docs/manuals/source/DocumentationStyleGuide/RestOverview.rst | Diff File | ||
mod - docs/manuals/source/TasksAndConcepts/NetworkSetup.rst | Diff File | ||
master acaf19b7 2019-07-01 15:30 Tobias Plum Ported: N/A Details Diff |
webui: Add "Restore" action to detail page The "Restore" action is now also available on the Job Details page. |
||
mod - webui/module/Job/view/job/job/details.phtml | Diff File | ||
master 4417cd37 2019-07-01 15:25 Ported: N/A Details Diff |
docs: added chapter "Network startup activity" to the Developer Guide | ||
mod - docs/manuals/source/DeveloperGuide/netprotocol.rst | Diff File | ||
mod - docs/manuals/source/DeveloperGuide/tls-techdoc.rst | Diff File | ||
mod - docs/manuals/source/TasksAndConcepts/NetworkSetup.rst | Diff File | ||
bareos-18.2 d452080e 2019-07-01 15:25 Ported: N/A Details Diff |
docs: added chapter "Network startup activity" to the Developer Guide | ||
mod - docs/manuals/source/DeveloperGuide/netprotocol.rst | Diff File | ||
mod - docs/manuals/source/DeveloperGuide/tls-techdoc.rst | Diff File | ||
mod - docs/manuals/source/TasksAndConcepts/NetworkSetup.rst | Diff File | ||
master b811c29a 2019-07-01 15:23 Ported: N/A Details Diff |
docs: rewrite chapter "Cross-linking markup" - mention the underscore at the beginning of labels - use the same label in all examples |
||
mod - docs/manuals/source/DocumentationStyleGuide/RestOverview.rst | Diff File |