Changesets: bareos

master 2f02eab2

2019-09-02 18:32

franku

Ported: N/A

Details Diff
dir: add new resource User to config

- previously used as a alias for Console
- separated struct user_acl contained in UserResource and ConsoleResource
- only refered to when using pam authentication
- corrected pam documentation
mod - core/src/dird/authenticate_console.cc Diff File
mod - core/src/dird/dird_conf.cc Diff File
mod - core/src/dird/dird_conf.h Diff File
mod - core/src/dird/ua.cc Diff File
mod - core/src/dird/ua.h Diff File
mod - core/src/dird/ua_acl.cc Diff File
mod - core/src/dird/ua_audit.cc Diff File
mod - core/src/dird/ua_cmds.cc Diff File
mod - docs/manuals/source/TasksAndConcepts/PAM.rst Diff File
mod - systemtests/tests/bconsole-pam/etc/bareos/bareos-dir.d/user/user1.conf Diff File

master 16bea07e

2019-09-02 17:45

franku

Ported: N/A

Details Diff
thread_list: use unique_ptr for pimpl of class ThreadList
mod - core/src/lib/thread_list.cc Diff File
mod - core/src/lib/thread_list.h Diff File

master 30e9c2b5

2019-09-02 17:45

franku

Ported: N/A

Details Diff
cleanup

- corrected typos
- removed or corrected log messages
- removed a unneeded variable
mod - core/src/lib/bnet_server_tcp.cc Diff File
mod - core/src/lib/thread_list.cc Diff File
mod - core/src/lib/thread_list.h Diff File
mod - core/src/stored/ndmp_tape.cc Diff File
mod - core/src/tests/thread_list.cc Diff File

master 870ed9dc

2019-09-02 17:17

franku

Ported: N/A

Details Diff
thread_list: use unique_ptr for ThreadListItem
mod - core/src/lib/thread_list.cc Diff File

master d66b7ac6

2019-09-02 17:01

franku

Ported: N/A

Details Diff
thread_list: use reference instead of raw pointer
mod - core/src/dird/socket_server.cc Diff File
mod - core/src/filed/socket_server.cc Diff File
mod - core/src/lib/bnet_server_tcp.cc Diff File
mod - core/src/lib/bnet_server_tcp.h Diff File
mod - core/src/stored/socket_server.cc Diff File

bareos-18.2 90dc1af5

2019-08-30 14:29

arogge


Committer: GitHub

Ported: N/A

Details Diff
Merge pull request 0000259 from arogge/fixmac-18.2

Backport of PR-252 to Bareos 18.2
mod - core/CMakeLists.txt Diff File
mod - core/cmake/BareosCheckIncludes.cmake Diff File
mod - core/cmake/BareosFindAllLibraries.cmake Diff File
mod - core/cmake/BareosSetVariableDefaults.cmake Diff File
mod - core/cmake/FindReadline.cmake Diff File
add - core/cmake/acltypes.cmake Diff File
mod - core/platforms/darwin/CMakeLists.txt Diff File
mod - core/platforms/darwin/resources/ReadMe.html.in Diff File
rm - core/platforms/darwin/resources/bareos-client.plist Diff File
mod - core/platforms/darwin/resources/postinstall.in Diff File
mod - core/platforms/darwin/resources/preinstall.in Diff File
add - core/platforms/darwin/resources/uninstall-bareos.in Diff File
rm - core/platforms/darwin/resources/uninstall.command Diff File
rm - core/platforms/darwin/resources/uninstall.command.in Diff File
mod - core/scripts/CMakeLists.txt Diff File
mod - core/src/console/CMakeLists.txt Diff File
mod - core/src/filed/CMakeLists.txt Diff File
mod - core/src/findlib/CMakeLists.txt Diff File
mod - core/src/plugins/filed/CMakeLists.txt Diff File
mod - webui/CMakeLists.txt Diff File

master 7cd50650

2019-08-30 14:29

arogge


Committer: GitHub

Ported: N/A

Details Diff
Merge pull request 0000252 from bareos/dev/arogge/master/fixmac

cmake: improve building on mac
mod - core/CMakeLists.txt Diff File
mod - core/cmake/BareosCheckIncludes.cmake Diff File
mod - core/cmake/BareosFindAllLibraries.cmake Diff File
mod - core/cmake/BareosSetVariableDefaults.cmake Diff File
mod - core/cmake/FindReadline.cmake Diff File
add - core/cmake/acltypes.cmake Diff File
mod - core/platforms/darwin/CMakeLists.txt Diff File
mod - core/platforms/darwin/resources/ReadMe.html.in Diff File
rm - core/platforms/darwin/resources/bareos-client.plist Diff File
mod - core/platforms/darwin/resources/postinstall.in Diff File
mod - core/platforms/darwin/resources/preinstall.in Diff File
add - core/platforms/darwin/resources/uninstall-bareos.in Diff File
rm - core/platforms/darwin/resources/uninstall.command Diff File
rm - core/platforms/darwin/resources/uninstall.command.in Diff File
mod - core/scripts/CMakeLists.txt Diff File
mod - core/src/console/CMakeLists.txt Diff File
mod - core/src/filed/CMakeLists.txt Diff File
mod - core/src/findlib/CMakeLists.txt Diff File
mod - core/src/plugins/filed/CMakeLists.txt Diff File

master 16425cf5

2019-08-29 20:57

arogge

Ported: N/A

Details Diff
cmake: fix regression of acl detection

Since the migration to cmake, the following cmake-variables have not been
set at all:
- HAVE_ACL_TYPE_DEFAULT_DIR
- HAVE_ACL_TYPE_EXTENDED
- HAVE_ACL_TYPE_NFS4

Also the detection of sys/acl.h requires inclusion of sys/types.h (at
least on MacOS, maybe others) which has been missing, too.

This lead to a regression where at least the MacOS client has not been
built with working ACL support.

This patch fixes the detection of ACL support (at least on MacOS) and
restores the cmake-variables.
mod - core/CMakeLists.txt Diff File
mod - core/cmake/BareosCheckIncludes.cmake Diff File
add - core/cmake/acltypes.cmake Diff File

bareos-18.2 c84b0904

2019-08-29 20:57

arogge

Ported: N/A

Details Diff
cmake: fix regression of acl detection

Since the migration to cmake, the following cmake-variables have not been
set at all:
- HAVE_ACL_TYPE_DEFAULT_DIR
- HAVE_ACL_TYPE_EXTENDED
- HAVE_ACL_TYPE_NFS4

Also the detection of sys/acl.h requires inclusion of sys/types.h (at
least on MacOS, maybe others) which has been missing, too.

This lead to a regression where at least the MacOS client has not been
built with working ACL support.

This patch fixes the detection of ACL support (at least on MacOS) and
restores the cmake-variables.
mod - core/CMakeLists.txt Diff File
mod - core/cmake/BareosCheckIncludes.cmake Diff File
add - core/cmake/acltypes.cmake Diff File

master 22c69f83

2019-08-29 19:15

joergs


Committer: franku

Ported: N/A

Details Diff
systemtests: run python-fd-plugin-local-fileset-test only if python-fd is build

- the dependency on PYTHONLIBS_FOUND is too general, the python-fd test
should only be run if the target python-fd was built
mod - systemtests/CMakeLists.txt Diff File

master 61a9068c

2019-08-29 19:13

Jörg Steffens


Committer: GitHub

Ported: N/A

Details Diff
Merge pull request 0000258 from bareos/dev/franku/master/python-plugin-test

systemtests: add test only if pyhton-devel available
mod - systemtests/CMakeLists.txt Diff File

master 2cdd3954

2019-08-29 18:15

arogge

Ported: N/A

Details Diff
cpack: rename component client to filedaemon
mod - core/platforms/darwin/CMakeLists.txt Diff File
mod - core/platforms/darwin/resources/uninstall-bareos.in Diff File
mod - core/scripts/CMakeLists.txt Diff File
mod - core/src/filed/CMakeLists.txt Diff File
mod - core/src/findlib/CMakeLists.txt Diff File
mod - core/src/plugins/filed/CMakeLists.txt Diff File

bareos-18.2 fe549745

2019-08-29 18:15

arogge

Ported: N/A

Details Diff
cpack: rename component client to filedaemon

(cherry picked from commit 2cdd3954acc111a8900c51e547f8ed9f2537bf0f)
mod - core/platforms/darwin/CMakeLists.txt Diff File
mod - core/platforms/darwin/resources/uninstall-bareos.in Diff File
mod - core/scripts/CMakeLists.txt Diff File
mod - core/src/filed/CMakeLists.txt Diff File
mod - core/src/findlib/CMakeLists.txt Diff File
mod - core/src/plugins/filed/CMakeLists.txt Diff File

bareos-18.2 74c2cf2c

2019-08-29 16:11

frank

Ported: N/A

Details Diff
Remove Saucelabs status from README.md
mod - README.md Diff File

master b0e62a19

2019-08-29 15:03

frank

Ported: N/A

Details Diff
Remove Saucelabs status from README.md
mod - README.md Diff File

master 1f7eb007

2019-08-29 12:49

franku

Ported: N/A

Details Diff
tests: replace all @year@ patterns in add_new_unit_test.sh
mod - core/src/tests/add_new_unit_test.sh Diff File

master b926f6a1

2019-08-28 21:04

joergs

Ported: N/A

Details Diff
python-bareos: improve Exception handling

* Raise a SignalReceivedException when a Bareos network signal is received
(length of the message is set to a negative value).
* Raise a JsonRpcErrorReceivedException when a JSON-RPC error message is received.
* Raise a JsonRpcInvalidJsonReceivedException (inherited from JsonRpcErrorReceivedException)
when an invalid JSON-RPC message is received (e.g. data is not a valid JSON structure).
* Remove a Python >= 3.4 deprecation warnung.
mod - python-bareos/bareos/bsock/directorconsolejson.py Diff File
mod - python-bareos/bareos/bsock/lowlevel.py Diff File
mod - python-bareos/bareos/exceptions.py Diff File

master 725532e6

2019-08-28 21:02

joergs

Ported: N/A

Details Diff
dird: whoami command: support JSON output
mod - core/src/dird/ua_cmds.cc Diff File

master e861ae32

2019-08-28 20:19

franku

Ported: N/A

Details Diff
systemtests: add test only if pyhton-devel available

- python-fd-plugin-local-fileset-test can only be run if
the python plugins are built using python-devel, therefore
enable the test if python-devel is available or disable
the test otherwise
mod - systemtests/CMakeLists.txt Diff File

master ec3fda40

2019-08-28 19:40

Jörg Steffens


Committer: GitHub

Ported: N/A

Details Diff
Merge pull request 0000254 from joergsteffens/dev/joergs/master/bareos-console-commands-cleanup

docs: Bareos Console Commands: cleanup
mod - docs/manuals/source/TasksAndConcepts/BareosConsole.rst Diff File

master 63d495d6

2019-08-28 18:24

arogge

Ported: N/A

Details Diff
macos: set package version in filename correctly

previously the version number in the package filename was just based
on major/minor/patch. Now we just add the full version so we will see
the full version number.
mod - core/platforms/darwin/CMakeLists.txt Diff File

bareos-18.2 dc07ed76

2019-08-28 18:24

arogge

Ported: N/A

Details Diff
macos: set package version in filename correctly

previously the version number in the package filename was just based
on major/minor/patch. Now we just add the full version so we will see
the full version number.
mod - core/platforms/darwin/CMakeLists.txt Diff File

master 32d76c67

2019-08-28 17:58

arogge

Ported: N/A

Details Diff
cmake: link liblzo2 statically on macos

on macos liblzo2 is available through homebrew only.
To remove a dependency on homebrew we link against this
library statically now.
mod - core/cmake/BareosFindAllLibraries.cmake Diff File

bareos-18.2 32c7b11b

2019-08-28 17:58

arogge

Ported: N/A

Details Diff
cmake: link liblzo2 statically on macos

on macos liblzo2 is available through homebrew only.
To remove a dependency on homebrew we link against this
library statically now.
mod - core/cmake/BareosFindAllLibraries.cmake Diff File

bareos-18.2 335f262a

2019-08-28 16:53

franku


Committer: GitHub

Ported: N/A

Details Diff
Merge pull request 0000257 from fbergkemper/dev/fbergkemper/bareos-18.2/story-31-37-backport

webui: Fix overflowing top navigation bar content
mod - webui/module/Application/view/layout/layout.phtml.in Diff File
 First  Prev  1 2 3 ... 70 ... 140 ... 210 ... 280 ... 347 348 349 350 351 352 353 ... 420 ... 490 ... 560 ... 630 ... 674 675 676  Next  Last