]> git.sur5r.net Git - bacula/bacula/log
bacula/bacula
17 years ago ======================= Warning ==========================
Kern Sibbald [Sat, 8 Jul 2006 20:06:19 +0000 (20:06 +0000)]
  ======================= Warning ==========================
  Separate read and write storage in Jobs in the Director. This
  is a major rewrite of some of the low level code and hence has
  a high probability of introducing bugs.
  ==========================================================

- Move the job init code up to *before* the job is put into
  the job queue (resource allocation queue). This permits the
  job to establish whether it will read or write or do both.
- Add name() methods to all the resource classes.
- Implement separate read and write storage resource
  allocation/deallocation in jobq.c

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3129 91ce42f0-d328-0410-95d8-f526ca767f89

17 years ago ======================= Warning ==========================
Kern Sibbald [Sat, 8 Jul 2006 07:57:43 +0000 (07:57 +0000)]
  ======================= Warning ==========================
  Implemented new method of getting the default Storage from the Media
  record rather than from the MediaType for restore.  As a fall
  back, if no Storage is defined, use the MediaType.  This
  eliminates most all prompts if there are multiple MediaTypes
  used. This is an important and fundamental change.
  ==========================================================

- Add more detail (Storage, Device) to list of volumes printed
  for restore.
- More code in migrate. In particular start multiple jobs if
  migrating a volume.
- Probably overkill, but ensure that the bsr is unique even within a
  job in FD and SD.
- Rework bsys.c drop() so that it now should work as expected.
- Update a bunch of old copyrights -- particularly in .h files.
- Remove src/lib/bshm.c/h

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3128 91ce42f0-d328-0410-95d8-f526ca767f89

17 years agoImplement migrate volume test
Kern Sibbald [Sat, 8 Jul 2006 06:46:18 +0000 (06:46 +0000)]
Implement migrate volume test

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3127 91ce42f0-d328-0410-95d8-f526ca767f89

17 years agoMises a jour.
Ludovic Strappazon [Thu, 6 Jul 2006 15:18:49 +0000 (15:18 +0000)]
Mises a jour.

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3126 91ce42f0-d328-0410-95d8-f526ca767f89

17 years agoAdd migration job test
Kern Sibbald [Wed, 5 Jul 2006 20:27:04 +0000 (20:27 +0000)]
Add migration job test

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3125 91ce42f0-d328-0410-95d8-f526ca767f89

17 years agoMigration fixes
Kern Sibbald [Wed, 5 Jul 2006 20:23:33 +0000 (20:23 +0000)]
Migration fixes

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3124 91ce42f0-d328-0410-95d8-f526ca767f89

17 years agoMises a jour.
Ludovic Strappazon [Wed, 5 Jul 2006 14:14:31 +0000 (14:14 +0000)]
Mises a jour.

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3123 91ce42f0-d328-0410-95d8-f526ca767f89

17 years agoAdd new files to French manual
Kern Sibbald [Wed, 5 Jul 2006 11:46:14 +0000 (11:46 +0000)]
Add new files to French manual

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3122 91ce42f0-d328-0410-95d8-f526ca767f89

17 years agoAdd new chapters to French manual
Kern Sibbald [Wed, 5 Jul 2006 01:08:12 +0000 (01:08 +0000)]
Add new chapters to French manual

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3121 91ce42f0-d328-0410-95d8-f526ca767f89

17 years agoMises a jour.
Ludovic Strappazon [Tue, 4 Jul 2006 23:10:52 +0000 (23:10 +0000)]
Mises a jour.

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3120 91ce42f0-d328-0410-95d8-f526ca767f89

17 years agoAdd check to BuildRequires to ensure version of libstdc++-devel matches gcc.
Scott Barninger [Tue, 4 Jul 2006 15:29:53 +0000 (15:29 +0000)]
Add check to BuildRequires to ensure version of libstdc++-devel matches gcc.

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3119 91ce42f0-d328-0410-95d8-f526ca767f89

17 years agoAdd python support, some corrections to 84 bit lib location hacks.
Scott Barninger [Mon, 3 Jul 2006 19:09:42 +0000 (19:09 +0000)]
Add python support, some corrections to 84 bit lib location hacks.

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3118 91ce42f0-d328-0410-95d8-f526ca767f89

17 years ago ======================= Warning ==========================
Kern Sibbald [Mon, 3 Jul 2006 18:28:34 +0000 (18:28 +0000)]
  ======================= Warning ==========================
     All hash codes in the database are now kept in world
     compatible base64 format (no = filling). This means that
     all FileSets will be updated and if you are running
     verify jobs, you must do an InitCatalog.
     Authentication uses the new algorithm, but should be
     backward compatible with 1.38.x
  ===========================================================

- Modify the authentication routines so that the 1.39.15 Director
  always runs with the compatible binary to base64 code (same as
  the rest of the world).  It will however detect if an SD or
  FD is running the old code and if that is the case, will use
  the old algorithm for authentication.  However, all consoles must
  use the compatible algorithm, and all data entered into the database
  (all hash signatures, MD5, SHA1, ..., and all FileSet hashes) will
  use the compatible algorithm.
- Rename the cram_md5 routine names to be slightly more appropriate
  to what they are doing (challenge and respond).
- Robert committed his #ifdef and header cleanup.

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3117 91ce42f0-d328-0410-95d8-f526ca767f89

17 years agoTurn off build of var.c on WIN32 for now
Robert Nelson [Mon, 3 Jul 2006 08:15:36 +0000 (08:15 +0000)]
Turn off build of var.c on WIN32 for now

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3116 91ce42f0-d328-0410-95d8-f526ca767f89

17 years agoFix configure of win32 tree
Robert Nelson [Mon, 3 Jul 2006 08:09:28 +0000 (08:09 +0000)]
Fix configure of win32 tree

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3115 91ce42f0-d328-0410-95d8-f526ca767f89

17 years agoFix header file includes.
Robert Nelson [Mon, 3 Jul 2006 07:51:06 +0000 (07:51 +0000)]
Fix header file includes.
Move externs from source files to header files.
Fix the old mingw Makefile so it builds with the new dependencies.
Replace #ifdef'ed InitWinAPIWrapper with OSDependentInit macro.

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3114 91ce42f0-d328-0410-95d8-f526ca767f89

17 years agoAutomatically find Python, SQLite, PostgreSQL, and MySQL libraries on platforms that...
Robert Nelson [Sun, 2 Jul 2006 20:16:31 +0000 (20:16 +0000)]
Automatically find Python, SQLite, PostgreSQL, and MySQL libraries on platforms that have lib64.

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3113 91ce42f0-d328-0410-95d8-f526ca767f89

17 years agoAdd standard toolchain to BuildRequires, add docs_version tag, restructure so all...
Scott Barninger [Sun, 2 Jul 2006 17:57:20 +0000 (17:57 +0000)]
Add standard toolchain to BuildRequires, add docs_version tag, restructure so all release variables are at top of file.

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3112 91ce42f0-d328-0410-95d8-f526ca767f89

17 years agoBump rescuever to 1.8.6
Scott Barninger [Sat, 1 Jul 2006 17:36:32 +0000 (17:36 +0000)]
Bump rescuever to 1.8.6

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3111 91ce42f0-d328-0410-95d8-f526ca767f89

17 years agoFix bug in wxWidgets patch script
Robert Nelson [Sat, 1 Jul 2006 15:45:53 +0000 (15:45 +0000)]
Fix bug in wxWidgets patch script

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3110 91ce42f0-d328-0410-95d8-f526ca767f89

17 years agoCreate patches subdirectory.
Robert Nelson [Sat, 1 Jul 2006 14:58:41 +0000 (14:58 +0000)]
Create patches subdirectory.
Move mingw-utils.patch into patches.
Add dependency patches and build script.

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3109 91ce42f0-d328-0410-95d8-f526ca767f89

17 years agoUpdate changelog.
Scott Barninger [Sat, 1 Jul 2006 14:45:43 +0000 (14:45 +0000)]
Update changelog.

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3108 91ce42f0-d328-0410-95d8-f526ca767f89

17 years agoupdate getdiskinfo
Kern Sibbald [Sat, 1 Jul 2006 14:32:52 +0000 (14:32 +0000)]
update getdiskinfo

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3107 91ce42f0-d328-0410-95d8-f526ca767f89

17 years agodelete getdiskinfo
Kern Sibbald [Sat, 1 Jul 2006 14:30:37 +0000 (14:30 +0000)]
delete getdiskinfo

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3106 91ce42f0-d328-0410-95d8-f526ca767f89

17 years agoUpdate spec files
Kern Sibbald [Sat, 1 Jul 2006 14:27:56 +0000 (14:27 +0000)]
Update spec files

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3105 91ce42f0-d328-0410-95d8-f526ca767f89

17 years agoFix tape tests
Kern Sibbald [Sat, 1 Jul 2006 14:25:24 +0000 (14:25 +0000)]
Fix tape tests

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3104 91ce42f0-d328-0410-95d8-f526ca767f89

17 years agoFinal changes
Kern Sibbald [Sat, 1 Jul 2006 14:03:19 +0000 (14:03 +0000)]
Final changes

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3103 91ce42f0-d328-0410-95d8-f526ca767f89

17 years agoFinal changes
Kern Sibbald [Sat, 1 Jul 2006 12:50:24 +0000 (12:50 +0000)]
Final changes

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3102 91ce42f0-d328-0410-95d8-f526ca767f89

17 years ago- Fix a complier warning in files/backup.c
Kern Sibbald [Sat, 1 Jul 2006 12:32:42 +0000 (12:32 +0000)]
- Fix a complier warning in files/backup.c
- Cleanup NOT NULL vs DEFALT 0 in database creation.
- Tweak btape.

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3101 91ce42f0-d328-0410-95d8-f526ca767f89

17 years agoUpdate disk tests
Kern Sibbald [Fri, 30 Jun 2006 18:59:29 +0000 (18:59 +0000)]
Update disk tests

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3100 91ce42f0-d328-0410-95d8-f526ca767f89

17 years agoFix spelling typo.
Frank Sweetser [Fri, 30 Jun 2006 12:12:45 +0000 (12:12 +0000)]
Fix spelling typo.

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3099 91ce42f0-d328-0410-95d8-f526ca767f89

17 years agoUpdate more tests
Kern Sibbald [Fri, 30 Jun 2006 09:56:48 +0000 (09:56 +0000)]
Update more tests

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3098 91ce42f0-d328-0410-95d8-f526ca767f89

17 years ago- I removed a size_t from the jcr.h definition.
Kern Sibbald [Fri, 30 Jun 2006 09:55:57 +0000 (09:55 +0000)]
- I removed a size_t from the jcr.h definition.
- Update the tape regression scripts (still to be tested).
- Add gcc and gcc-c++ requires to srm as suggested by a user.
- Require done or quit to exit from in memory tree restore.

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3097 91ce42f0-d328-0410-95d8-f526ca767f89

17 years agoFix 64 bit build problems.
Robert Nelson [Fri, 30 Jun 2006 07:01:30 +0000 (07:01 +0000)]
Fix 64 bit build problems.

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3096 91ce42f0-d328-0410-95d8-f526ca767f89

17 years agoAdd all the new files from the Windows branch.
Robert Nelson [Fri, 30 Jun 2006 04:14:19 +0000 (04:14 +0000)]
Add all the new files from the Windows branch.

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3095 91ce42f0-d328-0410-95d8-f526ca767f89

17 years agoMerge in all the low-risk changes from the Windows branch.
Robert Nelson [Fri, 30 Jun 2006 04:06:34 +0000 (04:06 +0000)]
Merge in all the low-risk changes from the Windows branch.
Add all the new files from the Windows branch.

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3094 91ce42f0-d328-0410-95d8-f526ca767f89

17 years agofix some doc bugs
Kern Sibbald [Thu, 29 Jun 2006 16:20:01 +0000 (16:20 +0000)]
fix some doc bugs

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3091 91ce42f0-d328-0410-95d8-f526ca767f89

17 years agoFinal changes
Kern Sibbald [Thu, 29 Jun 2006 14:16:06 +0000 (14:16 +0000)]
Final changes

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3090 91ce42f0-d328-0410-95d8-f526ca767f89

17 years agoFinal changes
Kern Sibbald [Thu, 29 Jun 2006 07:41:52 +0000 (07:41 +0000)]
Final changes

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3089 91ce42f0-d328-0410-95d8-f526ca767f89

17 years agoTweak
Kern Sibbald [Thu, 29 Jun 2006 07:09:53 +0000 (07:09 +0000)]
Tweak

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3088 91ce42f0-d328-0410-95d8-f526ca767f89

17 years agoFinal changes
Kern Sibbald [Thu, 29 Jun 2006 07:04:00 +0000 (07:04 +0000)]
Final changes

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3087 91ce42f0-d328-0410-95d8-f526ca767f89

17 years agoTurn off debug
Kern Sibbald [Wed, 28 Jun 2006 18:22:55 +0000 (18:22 +0000)]
Turn off debug

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3085 91ce42f0-d328-0410-95d8-f526ca767f89

17 years agoFinal changes
Kern Sibbald [Wed, 28 Jun 2006 16:20:29 +0000 (16:20 +0000)]
Final changes

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3084 91ce42f0-d328-0410-95d8-f526ca767f89

17 years agoadd man .cvsignore
Kern Sibbald [Wed, 28 Jun 2006 09:46:17 +0000 (09:46 +0000)]
add man .cvsignore

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3083 91ce42f0-d328-0410-95d8-f526ca767f89

17 years agoTeak man pages
Kern Sibbald [Wed, 28 Jun 2006 09:44:39 +0000 (09:44 +0000)]
Teak man pages

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3082 91ce42f0-d328-0410-95d8-f526ca767f89

17 years agoUpdate licenses
Kern Sibbald [Tue, 27 Jun 2006 08:33:51 +0000 (08:33 +0000)]
Update licenses

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3081 91ce42f0-d328-0410-95d8-f526ca767f89

17 years ago- Write install/uninstall of new manpages. There are now a
Kern Sibbald [Mon, 26 Jun 2006 19:52:15 +0000 (19:52 +0000)]
- Write install/uninstall of new manpages. There are now a
  pile of man pages. Some of which need a lot of work.

  ============= Warning ==================================
     The --mandir ./configure option now points to the top level
     man directory.  The man files will be installed under
     mandir/man8 and mandir/man1 as appropriate.
  ===========================================================

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3080 91ce42f0-d328-0410-95d8-f526ca767f89

17 years agoFix dvd rewind
Kern Sibbald [Mon, 26 Jun 2006 16:06:12 +0000 (16:06 +0000)]
Fix dvd rewind

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3079 91ce42f0-d328-0410-95d8-f526ca767f89

17 years agoCorrect pool source setting
Kern Sibbald [Mon, 26 Jun 2006 16:03:19 +0000 (16:03 +0000)]
Correct pool source setting

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3078 91ce42f0-d328-0410-95d8-f526ca767f89

17 years ago- Add complete text of GPL to LICENSE.
Kern Sibbald [Mon, 26 Jun 2006 16:00:29 +0000 (16:00 +0000)]
- Add complete text of GPL to LICENSE.
- Implement job report that indicates where Storage and Pool
  came from -- with overrides and Pool storage and NextPool,
  it is all very complicated.
- Create a few common subroutines for backup.c and migrate.c
- Eliminate warning messages from tray-monitor.c

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3077 91ce42f0-d328-0410-95d8-f526ca767f89

18 years agoAdd mysql5 tag, remove patch info left in on last commit.
Scott Barninger [Sun, 25 Jun 2006 15:41:23 +0000 (15:41 +0000)]
Add mysql5 tag, remove patch info left in on last commit.

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3076 91ce42f0-d328-0410-95d8-f526ca767f89

18 years agoUpdate depkgs
Scott Barninger [Sun, 25 Jun 2006 14:21:58 +0000 (14:21 +0000)]
Update depkgs

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3075 91ce42f0-d328-0410-95d8-f526ca767f89

18 years ago25Jun06
Kern Sibbald [Sun, 25 Jun 2006 13:58:36 +0000 (13:58 +0000)]
25Jun06
- Apply fix for scheduler for missing unlock_jobs().
- Clean out autoconf caches before rebuilding configure
- Fix the FreeBSD pthreads lib define updated by Dan.
- Add missing semicolon in src/console/console.c
- Add Robert's enhanced version of build-win32-cross-tools
  as well as his patch file.
- Note, the new gcc options are likely to break building of
  wx-console or the tray-monitor ...
24Jun06
- Implement Robert's suggestion to suppress printing compile lines.
- Detect GCC correctly (I hope)
- If using GCC (actually g++) add the following compiler flags
  -fno-strict-aliasing -fno-exceptions -fno-rtti
- Turn on new bsnprintf() code.
- Fix crypto when not using openssl. I previously overlooked this.
- Eliminate crypto type punning problems by eliminating void * and
  using uint8_t * instead.
- Harden authentication failure in FD by single threading errors
  and forcing a 6 second wait.

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3074 91ce42f0-d328-0410-95d8-f526ca767f89

18 years agoUpdate 1.38.10 patches
Kern Sibbald [Sun, 25 Jun 2006 13:08:50 +0000 (13:08 +0000)]
Update 1.38.10 patches

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3073 91ce42f0-d328-0410-95d8-f526ca767f89

18 years agoUse TestName in start_tests
Kern Sibbald [Sun, 25 Jun 2006 08:20:50 +0000 (08:20 +0000)]
Use TestName in start_tests

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3071 91ce42f0-d328-0410-95d8-f526ca767f89

18 years ago- Turn on new bsnprintf() code.
Kern Sibbald [Sat, 24 Jun 2006 14:28:29 +0000 (14:28 +0000)]
- Turn on new bsnprintf() code.
- Fix crypto when not using openssl. I previously overlooked this.

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3070 91ce42f0-d328-0410-95d8-f526ca767f89

18 years ago- Eliminate crypto type punning problems by eliminating void * and
Kern Sibbald [Sat, 24 Jun 2006 11:51:28 +0000 (11:51 +0000)]
- Eliminate crypto type punning problems by eliminating void * and
  using uint8_t * instead.
Fix some authentication slips

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3069 91ce42f0-d328-0410-95d8-f526ca767f89

18 years ago- Harden authentication failure in FD by single threading errors
Kern Sibbald [Sat, 24 Jun 2006 10:06:24 +0000 (10:06 +0000)]
- Harden authentication failure in FD by single threading errors
  and forcing a 6 second wait.

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3068 91ce42f0-d328-0410-95d8-f526ca767f89

18 years ago- ========= Remove Accept Any Volume ========= directive.
Kern Sibbald [Sat, 24 Jun 2006 07:53:36 +0000 (07:53 +0000)]
- ========= Remove Accept Any Volume ========= directive.
- Major cleanup and simplification of regress using shell functions
  (more tests to be converted to new format)
- Add detection of 64 bit Irix as indicated by user.
- Increment catalog database id from 9 to 10.
- Add a few of the new database fields to the various C++
  structures.
- Implement code to fill in the most important new fields (e.g.
  Media Enable).
- Ensure that most of the new fields are in create/get/insert/update.
  More work to be done.

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3067 91ce42f0-d328-0410-95d8-f526ca767f89

18 years agoBegin simplification and cleanup of tests using shell functions
Kern Sibbald [Sat, 24 Jun 2006 07:48:05 +0000 (07:48 +0000)]
Begin simplification and cleanup of tests using shell functions

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3066 91ce42f0-d328-0410-95d8-f526ca767f89

18 years agoRemove AcceptAnyVolume
Kern Sibbald [Fri, 23 Jun 2006 09:06:48 +0000 (09:06 +0000)]
Remove AcceptAnyVolume

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3065 91ce42f0-d328-0410-95d8-f526ca767f89

18 years ago- Update some very old licenses in src/cats.
Kern Sibbald [Thu, 22 Jun 2006 09:55:43 +0000 (09:55 +0000)]
- Update some very old licenses in src/cats.
- Modify the database format for handling Migration jobs:
   Add PriorJobId, RealEndTime to Job table
   Delete MAC table
   Remove Stripe from JobMedia record (not used, wasting space)
   Add ScratchPoolId, RecyclePoolId, Enabled to Media record
   Add Cost to Location table.
- Delete mac_record subroutines.
- Add new table values to create/update/get routines as appropriate.
- Update the update_tables and make_tables scripts.
- Make a first cut in using a union where multiple pointers (actually
  pointers to pointers) are stored.
- Make some changes to base64.c suggested by Robert and others and add
  a small amount of documentation.
- Add some changes suggested by Peter for Solaris (bregex...)
- Make runscript.h always built because it needs to be pulled into
  more places.  In particular its RES was left out of a union.
- Renumber the enum{} list in runscript.h to avoid starting from zero.
  This makes it slightly easier to detect uninitialized variables.

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3064 91ce42f0-d328-0410-95d8-f526ca767f89

18 years agoUpdate todo
Kern Sibbald [Tue, 20 Jun 2006 16:20:56 +0000 (16:20 +0000)]
Update todo

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3063 91ce42f0-d328-0410-95d8-f526ca767f89

18 years agoThis patch has been in the FreeBSD port for some time.
Dan Langille [Wed, 14 Jun 2006 16:32:08 +0000 (16:32 +0000)]
This patch has been in the FreeBSD port for some time.

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3062 91ce42f0-d328-0410-95d8-f526ca767f89

18 years ago- Remove xpg4 lib from FreeBSD build as it is no longer needed and
Kern Sibbald [Wed, 14 Jun 2006 13:06:41 +0000 (13:06 +0000)]
- Remove xpg4 lib from FreeBSD build as it is no longer needed and
  sometimes creates install problems.
- Change a couple of %T in strftime to %H:%M:%S as seen in Robert
  Nelson's code.  More to do.
- Convert a few store_bit to store_bool in filed_conf.c.
- DVD tweak to block.c as supplied by Uwe Muessel.

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3061 91ce42f0-d328-0410-95d8-f526ca767f89

18 years agoUpdate rescue version.
Scott Barninger [Mon, 12 Jun 2006 19:02:49 +0000 (19:02 +0000)]
Update rescue version.

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3060 91ce42f0-d328-0410-95d8-f526ca767f89

18 years agoFix legacy copyright syntax.
Scott Barninger [Mon, 12 Jun 2006 14:49:34 +0000 (14:49 +0000)]
Fix legacy copyright syntax.

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3059 91ce42f0-d328-0410-95d8-f526ca767f89

18 years agoFix syntax error in %files section.
Scott Barninger [Mon, 12 Jun 2006 13:15:05 +0000 (13:15 +0000)]
Fix syntax error in %files section.

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3058 91ce42f0-d328-0410-95d8-f526ca767f89

18 years agoUpdates
Kern Sibbald [Sun, 11 Jun 2006 14:47:28 +0000 (14:47 +0000)]
Updates

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3055 91ce42f0-d328-0410-95d8-f526ca767f89

18 years agoUpdate for 1.38.10
Scott Barninger [Fri, 9 Jun 2006 00:10:39 +0000 (00:10 +0000)]
Update for 1.38.10

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3054 91ce42f0-d328-0410-95d8-f526ca767f89

18 years agoFix Win32 cross-compile
Kern Sibbald [Tue, 6 Jun 2006 18:44:20 +0000 (18:44 +0000)]
Fix Win32 cross-compile

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3049 91ce42f0-d328-0410-95d8-f526ca767f89

18 years agoUpdates + license change
Kern Sibbald [Mon, 5 Jun 2006 21:37:58 +0000 (21:37 +0000)]
Updates + license change

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3046 91ce42f0-d328-0410-95d8-f526ca767f89

18 years agoAdd fc5 target.
Scott Barninger [Sun, 4 Jun 2006 15:30:14 +0000 (15:30 +0000)]
Add fc5 target.

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3045 91ce42f0-d328-0410-95d8-f526ca767f89

18 years agoFix usermod statements. Add fc5 target.
Scott Barninger [Sun, 4 Jun 2006 15:27:04 +0000 (15:27 +0000)]
Fix usermod statements. Add fc5 target.

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3044 91ce42f0-d328-0410-95d8-f526ca767f89

18 years ago- Modify configure.in to check for typeof().
Kern Sibbald [Sun, 4 Jun 2006 12:15:44 +0000 (12:15 +0000)]
- Modify configure.in to check for typeof().
- In findlib/attribs.c use typeof instead of templates if possible.

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3042 91ce42f0-d328-0410-95d8-f526ca767f89

18 years agoSome tweaks to the scripts
Kern Sibbald [Sat, 3 Jun 2006 08:24:16 +0000 (08:24 +0000)]
Some tweaks to the scripts

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3041 91ce42f0-d328-0410-95d8-f526ca767f89

18 years agoCorrect compile errors in acl.c
Kern Sibbald [Thu, 1 Jun 2006 11:33:41 +0000 (11:33 +0000)]
Correct compile errors in acl.c

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3040 91ce42f0-d328-0410-95d8-f526ca767f89

18 years ago- Implement partial error messages for src/filed/acl.c
Kern Sibbald [Thu, 1 Jun 2006 08:08:30 +0000 (08:08 +0000)]
- Implement partial error messages for src/filed/acl.c
- Fix return code to fail when doing update barcodes and
  Pool resource is not found. This previously caused Volumes
  to be labeled as cleaning tapes.
- Small updates to projects.

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3039 91ce42f0-d328-0410-95d8-f526ca767f89

18 years ago o add documentation about RunScript
Eric Bollengier [Sat, 27 May 2006 21:44:26 +0000 (21:44 +0000)]
 o add documentation about RunScript
 o cleanup other Run command

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3038 91ce42f0-d328-0410-95d8-f526ca767f89

18 years ago o runscript run on client by default
Eric Bollengier [Sat, 27 May 2006 21:41:16 +0000 (21:41 +0000)]
 o runscript run on client by default

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3037 91ce42f0-d328-0410-95d8-f526ca767f89

18 years agoupdate scratch pool test
Kern Sibbald [Sat, 27 May 2006 18:44:53 +0000 (18:44 +0000)]
update scratch pool test

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3036 91ce42f0-d328-0410-95d8-f526ca767f89

18 years ago o initial add
Eric Bollengier [Sat, 27 May 2006 17:24:10 +0000 (17:24 +0000)]
 o initial add

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3035 91ce42f0-d328-0410-95d8-f526ca767f89

18 years ago - small typo fix
Eric Bollengier [Sat, 27 May 2006 09:52:41 +0000 (09:52 +0000)]
 - small typo fix

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3034 91ce42f0-d328-0410-95d8-f526ca767f89

18 years ago o add item 9
Eric Bollengier [Sat, 27 May 2006 09:47:50 +0000 (09:47 +0000)]
 o add item 9

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3033 91ce42f0-d328-0410-95d8-f526ca767f89

18 years ago o update item 9
Eric Bollengier [Sat, 27 May 2006 09:44:00 +0000 (09:44 +0000)]
 o update item 9

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3032 91ce42f0-d328-0410-95d8-f526ca767f89

18 years ago Done with item 9 = Implement new {Client}Run{Before|After}Job feature.
Eric Bollengier [Sat, 27 May 2006 09:35:38 +0000 (09:35 +0000)]
 Done with item 9 = Implement new {Client}Run{Before|After}Job feature.

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3031 91ce42f0-d328-0410-95d8-f526ca767f89

18 years ago26May06
Kern Sibbald [Fri, 26 May 2006 21:02:29 +0000 (21:02 +0000)]
26May06
- Prevent DVD code from rewriting label if the device cannot be
  opened read/write.
- Used __GNUC__ to detect GNU g++ as suggested by John Goerzen to
  fix Debian build bug.
- Fix Dir/SD run race in migrate.c, verify.c, and restore.c
- Integrate manpages contributed by Jose Luis.
- Update projects file.
- Add manpages Makefile.in to configure.in
- Remove installation of bacula.8 in scripts directory.
24May06
- Implement patch submitted by cesarb in bug #606 to implement O_NOATIME
  support.
    O_NOATIME is a open() flag which makes it possible to read a file without
    updating the inode atime (and also without the inode ctime update which
    happens if you try to set the atime back to its previous value). It also
    prevents a race condition when two programs are reading the same file, but
    only one does not want to change the atime. It's most useful for backup
    programs and file integrity checkers (and bacula can fit on both
    categories).

    Recent versions of the Linux kernel and glibc have support for it (the
    glibc support being mostly copying the O_NOATIME definition to
    bits/fcntl.h). If there's no support for it on the kernel, trying to use
    it does nothing (since the kernel ignores unknown flags).

    If the kernel has support for it, trying to use it either works, fails
    silently (mostly in remote filesystems), or returns errno=EPERM (if you
    are not either the owner of the file or root). A simple way to prevent the
    failure is to open the file without the flag and set it later with
    fcntl(F_SETFL), ignoring any EPERM errors.
- Applied patch posted by Jaime Ventura to bug #570 to correct failure
  of restarted jobs to complete (due to a destroyed pthreads conditional
  variable used by the message thread).
- Fixed bug #619 where Bacula would not restart jobs with MaxRestartTimes
  set to zero.
- Apply patch from John Goerzen bug #611 to fix bad manual links in the code.
- Apply patch from Rudolf Cejka bug #614 to removed trailing
  colons in query.sql file.
- Apply patch from Rudolf Cejka bug #613 to correct prunning of files
  not to create orphans.
- Apply patch from Rudolf Cejka bug #617 to use mtime instead of ctime
  in restore long listing.
- Apply patch from Rudolf Cejka bug #609 to use MarkId in verify.c instead
  of incorrect MarkedId.
- Apply patch from adioso bug #616 to correct text in manual (replace
  Director with File daemon).
- Rework a few of the zlib changes so that they build properly.

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3030 91ce42f0-d328-0410-95d8-f526ca767f89

18 years agoDebut de stored.conf.
Ludovic Strappazon [Wed, 24 May 2006 07:35:41 +0000 (07:35 +0000)]
Debut de stored.conf.

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3029 91ce42f0-d328-0410-95d8-f526ca767f89

18 years ago- reduce zlib memory workload (prepare once per job instead of once per file)
Thorsten Engel [Tue, 23 May 2006 12:03:02 +0000 (12:03 +0000)]
- reduce zlib memory workload (prepare once per job instead of once per file)

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3028 91ce42f0-d328-0410-95d8-f526ca767f89

18 years ago- add stringlength cache to improve comparison in Win32UTF8->UCS2 cache
Thorsten Engel [Tue, 23 May 2006 12:01:07 +0000 (12:01 +0000)]
- add stringlength cache to improve comparison in Win32UTF8->UCS2 cache

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3027 91ce42f0-d328-0410-95d8-f526ca767f89

18 years ago- Move DIR run command to SD before starting the message thread
Kern Sibbald [Sun, 21 May 2006 08:56:15 +0000 (08:56 +0000)]
- Move DIR run command to SD before starting the message thread
  as suggested by Cristopher Hull to avoid a race deadlock from
  two threads using the bsock structure.
- Modify LICENSE to correct some problems pointed out by Debian.

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3026 91ce42f0-d328-0410-95d8-f526ca767f89

18 years ago- improved code style of last commit ;-)
Thorsten Engel [Thu, 18 May 2006 17:29:38 +0000 (17:29 +0000)]
- improved code style of last commit ;-)

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3025 91ce42f0-d328-0410-95d8-f526ca767f89

18 years ago- reduce page faults by reusing zlib buffers during backup (on windows > 10.000/sec...
Thorsten Engel [Wed, 17 May 2006 09:26:14 +0000 (09:26 +0000)]
- reduce page faults by reusing zlib buffers during backup (on windows > 10.000/sec, now <200/sec)
- reduce utf8file->ucs2file conversion load during backup to 1/3

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3024 91ce42f0-d328-0410-95d8-f526ca767f89

18 years agoMises a jour mineures.
Ludovic Strappazon [Mon, 15 May 2006 10:44:56 +0000 (10:44 +0000)]
Mises a jour mineures.

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3023 91ce42f0-d328-0410-95d8-f526ca767f89

18 years agoSuite et fin de tutorial.tex.
Ludovic Strappazon [Mon, 15 May 2006 09:08:52 +0000 (09:08 +0000)]
Suite et fin de tutorial.tex.

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3022 91ce42f0-d328-0410-95d8-f526ca767f89

18 years agoAdd SQLite support.
Scott Barninger [Sun, 14 May 2006 15:33:35 +0000 (15:33 +0000)]
Add SQLite support.

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3021 91ce42f0-d328-0410-95d8-f526ca767f89

18 years agoUpdate installation instructions.
Scott Barninger [Sun, 14 May 2006 14:07:16 +0000 (14:07 +0000)]
Update installation instructions.

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3020 91ce42f0-d328-0410-95d8-f526ca767f89

18 years agoAdd bimagemgr manual.
Scott Barninger [Sun, 14 May 2006 13:48:38 +0000 (13:48 +0000)]
Add bimagemgr manual.

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3019 91ce42f0-d328-0410-95d8-f526ca767f89

18 years agoCreate separate bimagemgr manual document.
Scott Barninger [Sun, 14 May 2006 13:46:26 +0000 (13:46 +0000)]
Create separate bimagemgr manual document.

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3018 91ce42f0-d328-0410-95d8-f526ca767f89

18 years agoAdd post install rpm script to add user to group bacula.
Scott Barninger [Sun, 7 May 2006 15:40:18 +0000 (15:40 +0000)]
Add post install rpm script to add user to group bacula.

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3017 91ce42f0-d328-0410-95d8-f526ca767f89