Changesets: bareos
|
master a3593f7f 2024-08-16 18:42 Ported: N/A Details Diff |
core: get client arg from command line | ||
| mod - core/src/dird/ua_output.cc | Diff File | ||
| mod - core/src/dird/ua_select.cc | Diff File | ||
| mod - core/src/dird/ua_select.h | Diff File | ||
|
master 3cd7c8ea 2024-08-16 17:41 Ported: N/A Details Diff |
systemtest python-bareos: add parameter tests | ||
| mod - systemtests/python-modules/bareos_unittest/json.py | Diff File | ||
| mod - systemtests/tests/python-bareos/test_list_command.py | Diff File | ||
|
master 7bd8ccf6 2024-08-16 16:05 Ported: N/A Details Diff |
systemtest: remove redundant files | ||
| rm - systemtests/tests/heartbeat-interval/test-setup | Diff File | ||
| rm - systemtests/tests/py3plug-fd-basic/test-setup | Diff File | ||
|
master 8d931e77 2024-08-15 16:19 Ported: N/A Details Diff |
core: handling list jobs options more clearly | ||
| mod - core/src/dird/ua_output.cc | Diff File | ||
|
master c441ff19 2024-08-15 15:44 Ported: N/A Details Diff |
core: use same code for 'list jobs' and 'list jobid=x' ... as the code for both has been nearly identical. |
||
| mod - core/src/dird/ua_output.cc | Diff File | ||
|
master 71914fda 2024-08-15 15:09 Ported: N/A Details Diff |
core: extract DoListJobsCmd as extra function | ||
| mod - core/src/dird/ua_output.cc | Diff File | ||
|
master 715e5d6a 2024-08-15 13:44 Bareos Bot Committer: GitHub Ported: N/A Details Diff |
Merge pull request #1903 Libcloud Accurate File Backup |
||
| mod - AUTHORS | Diff File | ||
| mod - CHANGELOG.md | Diff File | ||
| mod - core/src/plugins/filed/python/libcloud/BareosFdPluginLibcloud.py | Diff File | ||
| mod - core/src/plugins/filed/python/libcloud/bareos_libcloud_api/bucket_explorer.py | Diff File | ||
| mod - core/src/plugins/filed/python/libcloud/bareos_libcloud_api/worker.py | Diff File | ||
|
master 66a3a371 2024-08-15 13:44 Bareos Bot Ported: N/A Details Diff |
Update CHANGELOG.md | ||
| mod - CHANGELOG.md | Diff File | ||
|
master d993565e 2024-08-14 20:45 Ported: N/A Details Diff |
webui: allow restores from no longer exiting clients WIP |
||
| mod - webui/module/Client/src/Client/Model/ClientModel.php | Diff File | ||
| mod - webui/module/Restore/src/Restore/Controller/RestoreController.php | Diff File | ||
| mod - webui/module/Restore/src/Restore/Form/RestoreForm.php | Diff File | ||
| mod - webui/module/Restore/src/Restore/Model/RestoreModel.php | Diff File | ||
| mod - webui/module/Restore/view/restore/restore/index.phtml | Diff File | ||
| mod - webui/module/Restore/view/restore/restore/versions.phtml | Diff File | ||
| mod - webui/vendor/Bareos/library/Bareos/BSock/BareosBSock.php | Diff File | ||
|
master 50243024 2024-08-14 14:28 Committer: Bareos Bot Ported: N/A Details Diff |
cmake: cpm xxhash include | ||
| mod - cmake/BareosCpmPackages.cmake | Diff File | ||
| add - cmake/xxHash.cmake | Diff File | ||
|
master 3c2dcede 2024-08-14 12:46 Ported: N/A Details Diff |
webui: fix handling errors in restore browser | ||
| mod - webui/module/Restore/view/restore/restore/index.phtml | Diff File | ||
|
master d68fd2b5 2024-08-14 12:46 Ported: N/A Details Diff |
webui: fix doc typo | ||
| mod - webui/tests/selenium/README.md | Diff File | ||
|
master c866e9e9 2024-08-14 12:22 Bareos Bot Committer: GitHub Ported: N/A Details Diff |
Merge pull request #1917 python-bareos: fix backslash usage in regex |
||
| mod - CHANGELOG.md | Diff File | ||
| mod - python-bareos/bareos/bsock/lowlevel.py | Diff File | ||
|
master 0d1d45c2 2024-08-14 12:22 Bareos Bot Ported: N/A Details Diff |
Update CHANGELOG.md | ||
| mod - CHANGELOG.md | Diff File | ||
|
master 912a325a 2024-08-14 08:40 Sebastian Sura Committer: Bareos Bot Ported: N/A Details Diff |
dird-conf: deprecate "AllowHigherDuplicates" As this option is actually not used anywhere, we will deprecated it for now. |
||
| mod - core/src/dird/dird_conf.cc | Diff File | ||
| mod - docs/manuals/source/include/autogenerated/bareos-dir-config-schema.json | Diff File | ||
| mod - systemtests/tests/config-dump/etc/bareos/bareos-dir-full.conf.in | Diff File | ||
|
master 54775b44 2024-08-14 00:45 Committer: Bareos Bot Ported: N/A Details Diff |
Update AUTHORS | ||
| mod - AUTHORS | Diff File | ||
|
master 82d373e8 2024-08-13 20:31 Committer: Bareos Bot Ported: N/A Details Diff |
libcloud: fix copyright year | ||
| mod - core/src/plugins/filed/python/libcloud/BareosFdPluginLibcloud.py | Diff File | ||
| mod - core/src/plugins/filed/python/libcloud/bareos_libcloud_api/bucket_explorer.py | Diff File | ||
| mod - core/src/plugins/filed/python/libcloud/bareos_libcloud_api/worker.py | Diff File | ||
|
master 7cf357f4 2024-08-13 15:50 Ported: N/A Details Diff |
systemtest python-bareos: speed up tests by 25% The python-bareos systemtests do test a lot of functionality. As every test must be able to run indepently and in random order, the tests often ensured that test data is available by running a backup job. This change uses the recently introduced function get_backup_jobid to ensure the availability of test data in a more efficient way: if a job with the requested parameter already exists, it's jobid is returned. Otherwise the requested job is started. (cherry picked from commit e5b38b3d29e532635bd731611fb02604ccbf7cef) |
||
| mod - systemtests/python-modules/bareos_unittest/base.py | Diff File | ||
| mod - systemtests/python-modules/bareos_unittest/json.py | Diff File | ||
| mod - systemtests/tests/python-bareos/test_acl.py | Diff File | ||
| mod - systemtests/tests/python-bareos/test_bvfs.py | Diff File | ||
| mod - systemtests/tests/python-bareos/test_delete.py | Diff File | ||
| mod - systemtests/tests/python-bareos/test_list_command.py | Diff File | ||
| mod - systemtests/tests/python-bareos/test_python_fd_plugins.py | Diff File | ||
|
master b03d6d3f 2024-08-13 15:45 Ported: N/A Details Diff |
ua: allow Full/Differential/Incremental A joblevel at the "run" command must be specified as Full, Differential or Incremental, while the job level at the list command must be specified as F, D or I. This change allows the the job level atthe list command can also be used by its full names. (cherry picked from commit 8c1cbfb4ede50ab45942cca72a11ebcf6ec23c70) |
||
| mod - core/src/dird/ua_select.cc | Diff File | ||
|
master 611a40da 2024-08-13 15:11 Committer: Bareos Bot Ported: N/A Details Diff |
core: suppress unused third-party directory Signed-off-by: Bruno Friedmann <bruno.friedmann@bareos.com> |
||
| mod - CMakeLists.txt | Diff File | ||
| rm - third-party/CMakeLists.txt | Diff File | ||
| rm - third-party/README.md | Diff File | ||
|
master 1068b24f 2024-08-13 10:55 Sebastian Sura Committer: Bareos Bot Ported: N/A Details Diff |
message: remove more custom formatting | ||
| mod - core/src/dird/dird_conf.cc | Diff File | ||
| mod - core/src/include/baconfig.h | Diff File | ||
| mod - core/src/lib/edit.cc | Diff File | ||
| mod - core/src/lib/edit.h | Diff File | ||
| mod - core/src/lib/message.cc | Diff File | ||
| mod - core/src/tests/test_acl_entry_syntax.cc | Diff File | ||
|
master bdb86e83 2024-08-12 18:35 Bareos Bot Committer: GitHub Ported: N/A Details Diff |
Merge pull request #1919 plugins: adjust plugin info formatting |
||
| mod - CHANGELOG.md | Diff File | ||
| mod - core/src/lib/plugins.cc | Diff File | ||
|
master dbf19191 2024-08-12 18:35 Bareos Bot Ported: N/A Details Diff |
Update CHANGELOG.md | ||
| mod - CHANGELOG.md | Diff File | ||
|
master f9a37674 2024-08-12 10:46 Bareos Bot Committer: GitHub Ported: N/A Details Diff |
Merge pull request #1885 webui: fixing selenium tests |
||
| mod - CHANGELOG.md | Diff File | ||
| mod - systemtests/CMakeLists.txt | Diff File | ||
| mod - systemtests/environment.in | Diff File | ||
| mod - systemtests/tests/webui-common/etc/bareos/bareos-dir.d/messages/Daemon.conf.in | Diff File | ||
| mod - systemtests/tests/webui-common/etc/bareos/bareos-dir.d/messages/Standard.conf.in | Diff File | ||
| add - systemtests/tests/webui-common/etc/bareos/bconsole-admin.conf.in | Diff File | ||
| add - systemtests/tests/webui-common/etc/bareos/bconsole-readonly.conf.in | Diff File | ||
| mod - systemtests/tests/webui-common/etc/bareos/bconsole.conf.in | Diff File | ||
| mod - webui/module/Client/src/Client/Model/ClientModel.php | Diff File | ||
| mod - webui/tests/selenium/README.md | Diff File | ||
| mod - webui/tests/selenium/webui-selenium-test.py | Diff File | ||
|
master 4c07acba 2024-08-12 10:46 Bareos Bot Ported: N/A Details Diff |
Update CHANGELOG.md | ||
| mod - CHANGELOG.md | Diff File | ||