Package Details: bacula-client 13.0.4-1

Git Clone URL: https://aur.archlinux.org/bacula-client.git (read-only, click to copy)
Package Base: bacula-client
Description: Enterprise ready, network based backup program
Upstream URL: https://www.bacula.org
Licenses: AGPL3
Conflicts: bacula
Provides: bacula-fd
Submitter: None
Maintainer: iyanmv
Last Packager: iyanmv
Votes: 34
Popularity: 0.000000
First Submitted: 2008-01-25 15:17 (UTC)
Last Updated: 2024-02-17 15:44 (UTC)

Latest Comments

1 2 3 Next › Last »

Hi-Angel commented on 2024-05-20 08:12 (UTC)

Oh, actually, wait: the executable bit is only missing for "others". So it is "executable", it just can't be executed by anyone different from root. This may be by design, Idk. Sorry for the noise.

Hi-Angel commented on 2024-05-20 08:04 (UTC)

After bacula-client installation the following files are not executable:

/usr/bin/bacula /usr/bin/bacula-fd /usr/bin/bbconsjson /usr/bin/bfdjson /usr/bin/btraceback

iyanmv commented on 2021-04-22 21:02 (UTC)

I will update it next week. There are some important changes from 9.x to 11.x that I want to test first.

iyanmv commented on 2020-10-08 13:12 (UTC) (edited on 2020-10-08 13:12 (UTC) by iyanmv)

9.6.6 is available and also you should replace the signing key to the new one: 5235F5B668D81DB61704A82DC0BE2A5FE9DF3643

https://www.bacula.org/bacula-distribution-verification-public-keys/

sinnlos commented on 2017-11-29 23:58 (UTC)

This worked for me, too. Thank you very much!

andreas_baumann commented on 2017-11-05 12:21 (UTC)

Ok. You have to change PKGBUILD in the following way: CPPFLAGS=-I/usr/include/openssl-1.0/ \ LIBS=-L/usr/lib/openssl-1.0/ \ ./configure \ ... I can build this way. I also get: sudo ldd /usr/bin/bacula-fd: libssl.so.1.0.0 => /usr/lib/libssl.so.1.0.0 (0x00007f0e56da0000) libcrypto.so.1.0.0 => /usr/lib/libcrypto.so.1.0.0 (0x00007f0e5692b000) Can you try and report back if it worked for you?

andreas_baumann commented on 2017-11-05 12:04 (UTC)

/usr/lib/libcrypto.so points to the 1.1 version. /usr/lib/openssl-1.0/libcrypto.so points to ../libcrypto.so.1.0.0 So it's actually linking with -lcrypto to the wrong version.

andreas_baumann commented on 2017-11-05 11:58 (UTC) (edited on 2017-11-05 12:22 (UTC) by andreas_baumann)

Yep, this doesn't work: the OpenSSL check in autoconf checks for the CRYPTO_set_id_callback function in include <openssl/ssl.h> only. But it links directly to -lssl -lcrypto (whatever that is). The same applies most likely to all other bacula AUR packages..?

sinnlos commented on 2017-10-31 01:09 (UTC) (edited on 2017-10-31 13:56 (UTC) by sinnlos)

Unfortunately this package doesn't compile the OpenSSL part in bacula. When I replace the "-I" in PKGBUILD "CPPFLAGS=-I/usr/include/openssl-1.0/ ./configure \" with an "-L" it says during the install process that it enables the SSL Part, but actually doesn't get installed due to an error during the compiling. Does the SSL / PKI /TLS work in you setup?

keithw commented on 2017-04-27 20:15 (UTC)

No longer builds for me after the upgrade to openssl 1.1.0.e-1; this patch works for me with the openssl-1.0 package: --- PKGBUILD 2017-04-27 15:06:30.748735396 -0500 +++ PKGBUILD.kw 2017-04-27 15:09:01.730930174 -0500 @@ -8,7 +8,7 @@ pkgrel=1 pkgdesc='A network backup tool for Linux, Unix, Mac and Windows - client edition' conflicts=('bacula') -depends=('openssl') +depends=('openssl-1.0') provides=("bacula-fd=${pkgver}") arch=('i686' 'x86_64' 'arm' 'armv6h') url='http://www.bacula.org/' @@ -25,12 +25,12 @@ build() { cd bacula-${pkgver}/ - ./configure \ + env CPPFLAGS=-I/usr/include/openssl-1.0 ./configure \ --prefix=/usr \ --sbindir=/usr/bin \ --enable-client-only \ --with-systemd=/usr/lib/systemd/system/ \ - --with-openssl \ + --with-openssl=/usr/lib/openssl-1.0/ \ --sysconfdir=/etc/bacula \ --with-scriptdir=/etc/bacula/scripts