From af12097a1651478a1595800a532dcf24ff6a7541 Mon Sep 17 00:00:00 2001 From: Eric Bollengier Date: Thu, 28 Aug 2008 13:50:22 +0000 Subject: [PATCH] ebl Add patch to use 64bit FileId field git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@7518 91ce42f0-d328-0410-95d8-f526ca767f89 --- bacula/patches/testing/fileid64.patch | 104 ++++++++++++++++++++++++++ 1 file changed, 104 insertions(+) create mode 100644 bacula/patches/testing/fileid64.patch diff --git a/bacula/patches/testing/fileid64.patch b/bacula/patches/testing/fileid64.patch new file mode 100644 index 0000000000..44466d583f --- /dev/null +++ b/bacula/patches/testing/fileid64.patch @@ -0,0 +1,104 @@ +This patch change the FileId type from 32 to 64 bits. The 2.4.x (and previous) default type +don't permit to backup more than 2^32 files. (~ 4,000,000,000 files) + +You will have to upgrade the catalog. It will take x2 space, so be sure to check your available +space before. + + cd + patch -p0 < patches/testing/fileid64.patch + ./configure + make + ... + make install + + ./src/cats/update_bacula_tables + +Index: src/cats/update_postgresql_tables.in +=================================================================== +--- src/cats/update_postgresql_tables.in (révision 7513) ++++ src/cats/update_postgresql_tables.in (copie de travail) +@@ -12,9 +12,12 @@ + if $bindir/psql -f - -d ${db_name} $* <