Re: [Bacula-users] HELP: Installation BACULA 11 on debian 10

2022-06-03 Thread Wanderlei Huttel
Hello Gina

The bacula.org web site is under maintence!

Em sex., 3 de jun. de 2022 10:50, gina.co...@uc.pt 
escreveu:

> Hi,
> I had installed a bacula server 11.0.5 in Debian 10. The installation
> procedure that I followed works fine until 3 weeks ago.
> I try today  to test the installation process and it failed
> I use de followup script in:
> https://www.bacula.lat/community/script-instalacao-bacula-community-9-x-pacotes-oficiais/
>
>
> **
> #!/bin/bash
> bacula_version="11.0.5"
> bacula_key="61cf096a918f8"
> linux_name="buster"
> export DEBIAN_FRONTEND=noninteractive
>
> 1.  Install necessary packages
> apt-get install -y zip wget bzip2 apt-transport-https gnupg2
>
> 2.  Download repository keys
> wget -c
> https://www.bacula.org/downloads/Bacula-4096-Distribution-Verification-key.asc
> -O /tmp/Bacula-4096-Distribution-Verification-key.asc
> apt-key add /tmp/Bacula-4096-Distribution-Verification-key.asc
>
> 3. Create bacula repo
> echo "# Bacula Community
> deb
> http://www.bacula.org/packages/${bacula_key}/debs/${bacula_version}/${linux_name}/amd64/
> ${linux_name} main" > /etc/apt/sources.list.d/bacula-community.list
>
> 4.  Install MySQL
> wget -c https://repo.mysql.com/RPM-GPG-KEY-mysql -O
> /tmp/RPM-GPG-KEY-mysql --no-check-certificate
> apt-key add /tmp/RPM-GPG-KEY-mysql
>
> echo "deb http://repo.mysql.com/apt/debian/ ${linux_name} mysql-apt-config
> deb http://repo.mysql.com/apt/debian/ ${linux_name} mysql-5.7
> deb http://repo.mysql.com/apt/debian/ ${linux_name} mysql-tools
> deb http://repo.mysql.com/apt/debian/ ${linux_name} mysql-tools-preview
> deb-src http://repo.mysql.com/apt/debian/ ${linux_name} mysql-5.7" >
> /etc/apt/sources.list.d/mysql.list
>
> apt-get update
> apt-get install -y mysql-community-server
> apt-get install -y bacula-mysql
>
> systemctl enable mysql
> systemctl start mysql
>
> 5. Create Database BACULA
> /opt/bacula/scripts/create_mysql_database
> /opt/bacula/scripts/make_mysql_tables
> /opt/bacula/scripts/grant_mysql_privileges
>
> CREATE USER  bacula@localhost IDENTIFIED BY 'bacula';
> GRANT ALL PRIVILEGES ON * . * TO 'bacula';
> FLUSH PRIVILEGES;
>
> usermod -aG tape bacula
> usermod -aG disk bacula
>
> 6. Start daemons
> systemctl start bacula-fd.service
> systemctl start bacula-sd.service
> systemctl start bacula-dir.service
>
> 7. Create shortcut in /usr/bin
> for i in `ls /opt/bacula/bin`; do
> ln -s /opt/bacula/bin/$i /usr/sbin/$i;
> done
>
> 8. Change address to localhost
> sed '/[Aa]ddress/s/=\s.*/= localhost/g' -i  /opt/bacula/etc/bconsole.conf
>
>
> **
>
> When I run de step 2 *(Download repository keys*)
> I received de following error
>
> *Resolving www.bacula.org  (www.bacula.org
> )... 94.103.98.87*
> *Connecting to www.bacula.org  (www.bacula.org
> )|94.103.98.87|:443... connected.*
> *HTTP request sent, awaiting response... 404 Not Found*
> *2022-06-03 14:40:32 ERROR 404: Not Found.*
>
> It seems that the link https://www.bacula.org/downloads/  no longer
> exists.
> So the next steps didn't work.
> Anyone can help me with this situation
>
> Gina Costa
>
>
> ___
> Bacula-users mailing list
> Bacula-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/bacula-users
>
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Beta Release 11.3.4

2022-06-03 Thread Josip Deanovic

On 2022-06-03 20:34, Bill Arlofski via Bacula-users wrote:

Hello Josip,

This new StorageGroup feature allows you to specify more than one
Storage in a Job or Pool.

For example:
8<
Job {
  Name = Test
  Storage = Storage_1, Storage_2, Storage_3, ...
  StorageGroupPolicy = (ListedOrder|LeastUsed)
  ...
}
8<

Then, when Bacula starts a job, if it cannot reach the first one for
some reason, or the first one rejects the job (ie: some
mis-configuration issue, or devices are disabled on it), then the next
one is tried, and so on until it finds one that works.

The `StorageGroupPolicy` setting allows you to tell Bacula what
criteria to use when selecting
the storage. The default is
`ListedOrder` and will be used if not specified.

The `LeastUsed` policy checks all of the specified Storages and
chooses the one with the least number of jobs currently
running on it.

I understand there are more `StorageGroupPolicy` options being planned.


Hope this helps,
Bill



This is very nice.

Bill, thank you for explaining it.


Regards!

--
Josip Deanovic


___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Beta Release 11.3.4

2022-06-03 Thread Bill Arlofski via Bacula-users

On 6/3/22 09:51, Josip Deanovic wrote:


Could you please say few words about "Job Storage group support"
feature.
What exactly is that?

I tried to search for it on the net, including the documentation but
couldn't find anything that would explain what Job Storage group support
might be.


Regards!

--
Josip Deanovic


Hello Josip,

This new StorageGroup feature allows you to specify more than one Storage in a 
Job or Pool.

For example:
8<
Job {
  Name = Test
  Storage = Storage_1, Storage_2, Storage_3, ...
  StorageGroupPolicy = (ListedOrder|LeastUsed)
  ...
}
8<

Then, when Bacula starts a job, if it cannot reach the first one for some 
reason, or the first one rejects the job (ie: some
mis-configuration issue, or devices are disabled on it), then the next one is 
tried, and so on until it finds one that works.

The `StorageGroupPolicy` setting allows you to tell Bacula what criteria to use 
when selecting
the storage. The default is
`ListedOrder` and will be used if not specified.

The `LeastUsed` policy checks all of the specified Storages and chooses the one 
with the least number of jobs currently
running on it.

I understand there are more `StorageGroupPolicy` options being planned.


Hope this helps,
Bill

--
Bill Arlofski
w...@protonmail.com


signature.asc
Description: OpenPGP digital signature
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Beta Release 11.3.4

2022-06-03 Thread Josip Deanovic

On 2022-06-03 15:00, Eric Bollengier via Bacula-users wrote:

Hello,

We are pleased to announce the new BETA release of the next major 
Bacula
version 11.3.4 to both the Bacula website (www.bacula.org) and to 
SourceForge.

Thanks for the valuable feedback.

[...]


New Features:
 - Job Storage group support



Hello Eric,

A lot of new features, useful fixes and changes. That's very nice.
Would it be possible to migrate from 9.6 to 13.x sometimes in the 
future?



Could you please say few words about "Job Storage group support" 
feature.

What exactly is that?

I tried to search for it on the net, including the documentation but
couldn't find anything that would explain what Job Storage group support
might be.


Regards!

--
Josip Deanovic


___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Beta Release 11.3.4

2022-06-03 Thread Eric Bollengier via Bacula-users

Hello Olivier,

On 6/3/22 15:51, OLIVIER DELESTRE (Personnel) wrote:

Hi,

What's the difference between 11.3.4 and 11.0.6 ? no, I would like to know if it 
is in beta for 11.0.6 ?


11.0.6 is the current *stable* version of Bacula.

11.3.4 is the last beta version of the next major release 13.0.0.

9.6.7 is the previous stable version of Bacula.

Hope it helps!

Best Regards,
Eric


I still with 9.6.7 in a production environnement.

Thanks for work.

Bye.

Le 03/06/2022 à 15:00, Eric Bollengier via Bacula-users a écrit :

Hello,

We are pleased to announce the new BETA release of the next major Bacula
version 11.3.4 to both the Bacula website (www.bacula.org) and to SourceForge.
Thanks for the valuable feedback.

https://www.bacula.org/downloads/Beta-Bacula-11.3.4

This is the last beta version of the new 13.0 major release with many new
features and a number of changes. Please take care to test this code carefully
before putting it into production.  Although the new features have been tested,
they have not run in a production environment.

We had a service outage this week and some of the bacula services are still not
fully recovered (cdash, wiki, packages). It should be resolved next week.

Compatibility:
--
As always, both the Director and Storage daemon(s) must be upgraded at
the same time. Any File daemon running on the same machine as a Director
or Storage daemon must be of the same version.

Older File Daemons should be compatible with the 11.3 Director and Storage
daemons.  There should be no need to upgrade older File Daemons.

New Catalog format in version 11.3.0 and greater


This release of Bacula uses a new catalog format.  We provide a set of scripts
that permit conversion from 9.x and earlier versions to the new 11.3 format
(1025).  Normally the conversion/upgrade is fast.

Keep in mind that there is a big change from 9.x to 11.0 that takes longer than
usual, the upgrade process will require about twice the disk space of the
actual database.

If you start from scratch, you don't need to run the update_bacula_tables
script because the create_bacula_tables script automatically creates the new
table format.  However, if you are using a version of Bacula older than 5.0.0
(e.g.  3.0.3) then you need to run the update_bacula_tables script that will be
found in the /src/cats directory after you run the ./configure command.

As mentioned above, before running this script, please backup your catalog
database, be sure to shutdown Bacula and be aware that running the script can
take some time depending on your database size.

Thanks for using Bacula!

Best Regards,
Eric



Changelog 11.3.4

 - Fix #9127 About incorrect handling of the new Accurate 'o' option with
  multiple incremental jobs. Add support for ACL updates
 - Fix #9116: copy job missuses the client->FdStorageAddress directive
 - Fix org#2658 About segfault with bsdjson with incorrect parameters
 - Skip storage daemon detection if the information is not available in the BSR

 - snapshot: Adapt for BTRFS 5.17
 - snapshot: Fix snapshot delete/prune command
 - snapshot: Fix #9143 About snapshot not properly stored in the catalog
 - snapshot: Add support for new LVM 2.03.15

 - Fix org#2659 Install dbcheck and bsmtp in 755
 - Fix org#2662 About SQLite migration script issue

 - Fix query SQL provided in sample-query.sql
 - Fix compilation on s3 driver
 - Fix ./configure error with test-cpp.c
 - win32: Update to OpenSSL 1.1.1o

 - baculum: Fix clearing OAuth2 properties after testing API connection on 
security page
 - baculum: Fix directing to default page after log in for users with 
non-admin roles

 - baculum: Fix #2667 keep original fileset options order
 - baculum: Add to install wizard pre-defined b*json tool paths for FreeBSD 
and older Debian/Ubuntu

 - baculum: Fix #2661 required parameter PHP error on PHP 8.0
 - baculum: Fix error calling method_exists() with non-objects on PHP 8

Bugs fixed/closed since last release:
2633 2658 2659 2661 2662 2667 9116 9125 9127 9143




New Features:
 - Job Storage group support
 - Kubernetes Plugin
 - New Accurate Option to Save Only File's Metadata
 - Windows CSV (Cluster Shared Volumes) support
 - Adding more logging for daemon<->daemon connection in job output
 - Tag support on catalog objects
 - Support for SHA256 and SHA512 signatures in FileSet
 - External LDAP Console Authentication

Misc Features:
 - Windows Installer Silent Mode options
 - Add PriorJob to llist job output
 - Check for IP SANs when verifying TLS certs
 - Clarify SD vbackup device error message
 - Add bconsole .jlist command to get JSON output from regular list command
 - Ensure that the DIR will reject catalog update from the FD
 - Add variable for PreviousJobId in mail messages
 - Respect the 'nodump' flag in more OSes than just BSD
 - 

Re: [Bacula-users] Beta Release 11.3.4

2022-06-03 Thread OLIVIER DELESTRE (Personnel)

Hi,

What's the difference between 11.3.4 and 11.0.6 ? no, I would like to 
know if it is in beta for 11.0.6 ?


I still with 9.6.7 in a production environnement.

Thanks for work.

Bye.

Le 03/06/2022 à 15:00, Eric Bollengier via Bacula-users a écrit :

Hello,

We are pleased to announce the new BETA release of the next major Bacula
version 11.3.4 to both the Bacula website (www.bacula.org) and to 
SourceForge.

Thanks for the valuable feedback.

https://www.bacula.org/downloads/Beta-Bacula-11.3.4

This is the last beta version of the new 13.0 major release with many new
features and a number of changes. Please take care to test this code 
carefully
before putting it into production.  Although the new features have 
been tested,

they have not run in a production environment.

We had a service outage this week and some of the bacula services are 
still not

fully recovered (cdash, wiki, packages). It should be resolved next week.

Compatibility:
--
As always, both the Director and Storage daemon(s) must be upgraded at
the same time. Any File daemon running on the same machine as a Director
or Storage daemon must be of the same version.

Older File Daemons should be compatible with the 11.3 Director and 
Storage

daemons.  There should be no need to upgrade older File Daemons.

New Catalog format in version 11.3.0 and greater


This release of Bacula uses a new catalog format.  We provide a set of 
scripts
that permit conversion from 9.x and earlier versions to the new 11.3 
format

(1025).  Normally the conversion/upgrade is fast.

Keep in mind that there is a big change from 9.x to 11.0 that takes 
longer than

usual, the upgrade process will require about twice the disk space of the
actual database.

If you start from scratch, you don't need to run the update_bacula_tables
script because the create_bacula_tables script automatically creates 
the new
table format.  However, if you are using a version of Bacula older 
than 5.0.0
(e.g.  3.0.3) then you need to run the update_bacula_tables script 
that will be
found in the /src/cats directory after you run the ./configure 
command.


As mentioned above, before running this script, please backup your 
catalog
database, be sure to shutdown Bacula and be aware that running the 
script can

take some time depending on your database size.

Thanks for using Bacula!

Best Regards,
Eric



Changelog 11.3.4

 - Fix #9127 About incorrect handling of the new Accurate 'o' option with
  multiple incremental jobs. Add support for ACL updates
 - Fix #9116: copy job missuses the client->FdStorageAddress directive
 - Fix org#2658 About segfault with bsdjson with incorrect parameters
 - Skip storage daemon detection if the information is not available 
in the BSR


 - snapshot: Adapt for BTRFS 5.17
 - snapshot: Fix snapshot delete/prune command
 - snapshot: Fix #9143 About snapshot not properly stored in the catalog
 - snapshot: Add support for new LVM 2.03.15

 - Fix org#2659 Install dbcheck and bsmtp in 755
 - Fix org#2662 About SQLite migration script issue

 - Fix query SQL provided in sample-query.sql
 - Fix compilation on s3 driver
 - Fix ./configure error with test-cpp.c
 - win32: Update to OpenSSL 1.1.1o

 - baculum: Fix clearing OAuth2 properties after testing API 
connection on security page
 - baculum: Fix directing to default page after log in for users with 
non-admin roles

 - baculum: Fix #2667 keep original fileset options order
 - baculum: Add to install wizard pre-defined b*json tool paths for 
FreeBSD and older Debian/Ubuntu

 - baculum: Fix #2661 required parameter PHP error on PHP 8.0
 - baculum: Fix error calling method_exists() with non-objects on PHP 8

Bugs fixed/closed since last release:
2633 2658 2659 2661 2662 2667 9116 9125 9127 9143




New Features:
 - Job Storage group support
 - Kubernetes Plugin
 - New Accurate Option to Save Only File's Metadata
 - Windows CSV (Cluster Shared Volumes) support
 - Adding more logging for daemon<->daemon connection in job output
 - Tag support on catalog objects
 - Support for SHA256 and SHA512 signatures in FileSet
 - External LDAP Console Authentication

Misc Features:
 - Windows Installer Silent Mode options
 - Add PriorJob to llist job output
 - Check for IP SANs when verifying TLS certs
 - Clarify SD vbackup device error message
 - Add bconsole .jlist command to get JSON output from regular list 
command

 - Ensure that the DIR will reject catalog update from the FD
 - Add variable for PreviousJobId in mail messages
 - Respect the 'nodump' flag in more OSes than just BSD
 - Add debug/trace/tags information to .status header
 - Handle lin_tape end of device with the new 'Use Lintape=yes' Device 
directive

 - Add MaximumJobErrorCount FileDaemon directive
 - bsmtp: Add the possibility to add emails separated with a 

[Bacula-users] HELP: Installation BACULA 11 on debian 10

2022-06-03 Thread gina.co...@uc.pt
Hi,
I had installed a bacula server 11.0.5 in Debian 10. The installation procedure 
that I followed works fine until 3 weeks ago.
I try today  to test the installation process and it failed
I use de followup script in:  
https://www.bacula.lat/community/script-instalacao-bacula-community-9-x-pacotes-oficiais/

**
#!/bin/bash
bacula_version="11.0.5"
bacula_key="61cf096a918f8"
linux_name="buster"
export DEBIAN_FRONTEND=noninteractive

1.  Install necessary packages
apt-get install -y zip wget bzip2 apt-transport-https gnupg2

2.  Download repository keys
wget -c 
https://www.bacula.org/downloads/Bacula-4096-Distribution-Verification-key.asc 
-O /tmp/Bacula-4096-Distribution-Verification-key.asc
apt-key add /tmp/Bacula-4096-Distribution-Verification-key.asc

3. Create bacula repo
echo "# Bacula Community
deb 
http://www.bacula.org/packages/${bacula_key}/debs/${bacula_version}/${linux_name}/amd64/
 ${linux_name} main" > /etc/apt/sources.list.d/bacula-community.list

4.  Install MySQL
wget -c https://repo.mysql.com/RPM-GPG-KEY-mysql -O 
/tmp/RPM-GPG-KEY-mysql --no-check-certificate
apt-key add /tmp/RPM-GPG-KEY-mysql

echo "deb http://repo.mysql.com/apt/debian/ ${linux_name} 
mysql-apt-config
deb http://repo.mysql.com/apt/debian/ ${linux_name} mysql-5.7
deb http://repo.mysql.com/apt/debian/ ${linux_name} mysql-tools
deb http://repo.mysql.com/apt/debian/ ${linux_name} mysql-tools-preview
deb-src http://repo.mysql.com/apt/debian/ ${linux_name} mysql-5.7" > 
/etc/apt/sources.list.d/mysql.list

apt-get update
apt-get install -y mysql-community-server
apt-get install -y bacula-mysql

systemctl enable mysql
systemctl start mysql

5. Create Database BACULA
/opt/bacula/scripts/create_mysql_database
/opt/bacula/scripts/make_mysql_tables
/opt/bacula/scripts/grant_mysql_privileges

CREATE USER  bacula@localhost IDENTIFIED BY 'bacula';
GRANT ALL PRIVILEGES ON * . * TO 'bacula';
FLUSH PRIVILEGES;

usermod -aG tape bacula
usermod -aG disk bacula

6. Start daemons
systemctl start bacula-fd.service
systemctl start bacula-sd.service
systemctl start bacula-dir.service

7. Create shortcut in /usr/bin
for i in `ls /opt/bacula/bin`; do
 ln -s /opt/bacula/bin/$i /usr/sbin/$i;
done

8. Change address to localhost
sed '/[Aa]ddress/s/=\s.*/= localhost/g' -i  /opt/bacula/etc/bconsole.conf

**

When I run de step 2 (Download repository keys)
I received de following error

Resolving www.bacula.org (www.bacula.org)... 94.103.98.87
Connecting to www.bacula.org (www.bacula.org)|94.103.98.87|:443... connected.
HTTP request sent, awaiting response... 404 Not Found
2022-06-03 14:40:32 ERROR 404: Not Found.

It seems that the link https://www.bacula.org/downloads/  no longer exists.
So the next steps didn't work.
Anyone can help me with this situation

Gina Costa




smime.p7s
Description: S/MIME cryptographic signature
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


[Bacula-users] Beta Release 11.3.4

2022-06-03 Thread Eric Bollengier via Bacula-users

Hello,

We are pleased to announce the new BETA release of the next major Bacula
version 11.3.4 to both the Bacula website (www.bacula.org) and to SourceForge.
Thanks for the valuable feedback.

https://www.bacula.org/downloads/Beta-Bacula-11.3.4

This is the last beta version of the new 13.0 major release with many new
features and a number of changes. Please take care to test this code carefully
before putting it into production.  Although the new features have been tested,
they have not run in a production environment.

We had a service outage this week and some of the bacula services are still not
fully recovered (cdash, wiki, packages). It should be resolved next week.

Compatibility:
--
As always, both the Director and Storage daemon(s) must be upgraded at
the same time. Any File daemon running on the same machine as a Director
or Storage daemon must be of the same version.

Older File Daemons should be compatible with the 11.3 Director and Storage
daemons.  There should be no need to upgrade older File Daemons.

New Catalog format in version 11.3.0 and greater


This release of Bacula uses a new catalog format.  We provide a set of scripts
that permit conversion from 9.x and earlier versions to the new 11.3 format
(1025).  Normally the conversion/upgrade is fast.

Keep in mind that there is a big change from 9.x to 11.0 that takes longer than
usual, the upgrade process will require about twice the disk space of the
actual database.

If you start from scratch, you don't need to run the update_bacula_tables
script because the create_bacula_tables script automatically creates the new
table format.  However, if you are using a version of Bacula older than 5.0.0
(e.g.  3.0.3) then you need to run the update_bacula_tables script that will be
found in the /src/cats directory after you run the ./configure command.

As mentioned above, before running this script, please backup your catalog
database, be sure to shutdown Bacula and be aware that running the script can
take some time depending on your database size.

Thanks for using Bacula!

Best Regards,
Eric



Changelog 11.3.4

 - Fix #9127 About incorrect handling of the new Accurate 'o' option with
  multiple incremental jobs. Add support for ACL updates
 - Fix #9116: copy job missuses the client->FdStorageAddress directive
 - Fix org#2658 About segfault with bsdjson with incorrect parameters
 - Skip storage daemon detection if the information is not available in the BSR

 - snapshot: Adapt for BTRFS 5.17
 - snapshot: Fix snapshot delete/prune command
 - snapshot: Fix #9143 About snapshot not properly stored in the catalog
 - snapshot: Add support for new LVM 2.03.15

 - Fix org#2659 Install dbcheck and bsmtp in 755
 - Fix org#2662 About SQLite migration script issue

 - Fix query SQL provided in sample-query.sql
 - Fix compilation on s3 driver
 - Fix ./configure error with test-cpp.c
 - win32: Update to OpenSSL 1.1.1o

 - baculum: Fix clearing OAuth2 properties after testing API connection on 
security page
 - baculum: Fix directing to default page after log in for users with non-admin 
roles

 - baculum: Fix #2667 keep original fileset options order
 - baculum: Add to install wizard pre-defined b*json tool paths for FreeBSD and 
older Debian/Ubuntu

 - baculum: Fix #2661 required parameter PHP error on PHP 8.0
 - baculum: Fix error calling method_exists() with non-objects on PHP 8

Bugs fixed/closed since last release:
2633 2658 2659 2661 2662 2667 9116 9125 9127 9143




New Features:
 - Job Storage group support
 - Kubernetes Plugin
 - New Accurate Option to Save Only File's Metadata
 - Windows CSV (Cluster Shared Volumes) support
 - Adding more logging for daemon<->daemon connection in job output
 - Tag support on catalog objects
 - Support for SHA256 and SHA512 signatures in FileSet
 - External LDAP Console Authentication

Misc Features:
 - Windows Installer Silent Mode options
 - Add PriorJob to llist job output
 - Check for IP SANs when verifying TLS certs
 - Clarify SD vbackup device error message
 - Add bconsole .jlist command to get JSON output from regular list command
 - Ensure that the DIR will reject catalog update from the FD
 - Add variable for PreviousJobId in mail messages
 - Respect the 'nodump' flag in more OSes than just BSD
 - Add debug/trace/tags information to .status header
 - Handle lin_tape end of device with the new 'Use Lintape=yes' Device directive
 - Add MaximumJobErrorCount FileDaemon directive
 - bsmtp: Add the possibility to add emails separated with a comma as recipient 
list

 - SDPacketCheck FileDaemon used to control the network flow
 - Add .bvfs_ls_all_files command

Main Fixes:
 - The presence of FileSet and Pool directives in the Job. Bug #2188
 - Fix Director crash for client intiated backup
 - Fix Director crash for Migration 

Re: [Bacula-users] binary repositories offline

2022-06-03 Thread OLIVIER DELESTRE (Personnel)

Hi,

Thanks for your Work.

I would wait for the return to move to branch 11 (Production Environment)

Bye

Le 03/06/2022 à 00:15, Bill Arlofski via Bacula-users a écrit :

On 6/2/22 15:51, D. wrote:


The community binary repositories (deb and rpm) are offline!



This is being worked on.


--
Bill Arlofski
w...@protonmail.com


___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users