From: Eric Bollengier Date: Thu, 28 Aug 2008 13:50:22 +0000 (+0000) Subject: ebl Add patch to use 64bit FileId field X-Git-Tag: Release-7.0.0~4207 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=af12097a1651478a1595800a532dcf24ff6a7541;p=bacula%2Fbacula 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 --- 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} $* <