From: Eric Bollengier Date: Tue, 12 May 2020 17:07:23 +0000 (+0200) Subject: BEE Backport bacula/src/stored/org_libsd_quota.c X-Git-Tag: Release-11.3.2~1639 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bb1da8fefd68af612eca397feaa3ae42c393cb2e;p=thirdparty%2Fbacula.git BEE Backport bacula/src/stored/org_libsd_quota.c This commit is the result of the squash of the following main commits: Author: Eric Bollengier Date: Fri Mar 6 16:25:13 2020 +0100 Move MaxPoolBytes checks in bee files --- diff --git a/bacula/src/stored/org_libsd_quota.c b/bacula/src/stored/org_libsd_quota.c new file mode 100644 index 0000000000..25b836554b --- /dev/null +++ b/bacula/src/stored/org_libsd_quota.c @@ -0,0 +1,31 @@ +/* + Bacula(R) - The Network Backup Solution + + Copyright (C) 2000-2020 Kern Sibbald + + The original author of Bacula is Kern Sibbald, with contributions + from many others, a complete list can be found in the file AUTHORS. + + You may use this file and others of this release according to the + license defined in the LICENSE file, which includes the Affero General + Public License, v3.0 ("AGPLv3") and some additional permissions and + terms pursuant to its AGPLv3 Section 7. + + This notice must be preserved when any source code is + conveyed and/or propagated. + + Bacula(R) is a registered trademark of Kern Sibbald. +*/ + +#include "bacula.h" +#include "stored.h" + +bool dir_get_pool_info(DCR *dcr, VOLUME_CAT_INFO *volcatinfo) +{ + return true; +} + +bool is_pool_size_reached(DCR *dcr, bool quiet) +{ + return false; +}