Hello Moritz,

might it be that line 12 referes to the dumptype "comp-user-old"? If it
is so, it could be that the option program is overwritten but there is
now something like:
PROGRAM "gnutar"
application "app-gtar"

Because the second line comes from global and is not overwritten. I
would do like that:

leave out the application set here:
define dumptype global {
     comment "Global definitions"
     index yes
     exclude list optional append "/var/lib/amanda/exclude.gtar"
     exclude file append "./dev" "./lock" "./run" "./tmp" "./var/run" 
"./var/lock" "*.tmp" "*/core"
     estimate calcsize
}

And set the program in the other dumptypes
define dumptype comp-user-old {
     comp-user
     program "GNUTAR"
     comment "Non-root partitions on reasonably fast machines with old 
amanda client"
     estimate client
     
}

define dumptype comp-user {
     global
     program "application"
     application "app-gtar"
     comment "Non-root partitions on reasonably fast machines"
     compress client fast
     priority medium
}
 
Another way would be to set program "GNUTAR" in global an overwrite it
in the dumptypes, this way around it should be possible.

Regards,
Dennis




Am Freitag, den 21.10.2011, 17:22 +0200 schrieb Moritz Both:
> (resending because it does not show on the list after 23h. Sorry if it 
> appears twice.)
> 
> Dennis,
> 
> Am 20.10.2011 17:16, schrieb Dennis Benndorf:
>  > Hello Moritz,
>  >
>  > could you please give us your complete definition of your dumptypes and
>  > disklist?
>  >
>  > Regards,
>  > Dennis
> 
> 
> here is the complete list of dumptypes - there are some dumptypes which 
> are not used, though:
> 
> 
> define dumptype global {
>      comment "Global definitions"
>      index yes
>      program "APPLICATION"
>      application "app-gtar"
>      exclude list optional append "/var/lib/amanda/exclude.gtar"
>      exclude file append "./dev" "./lock" "./run" "./tmp" "./var/run" 
> "./var/lock" "*.tmp" "*/core"
>      estimate calcsize
> }
> 
> define dumptype comp-root {
>      global
>      comment "Root partitions with compression"
>      compress client fast
>      priority low
> }
> 
> define dumptype nocomp-root {
>      comp-root
>      comment "Root partitions without compression"
>      compress none
> }
> 
> define dumptype comp-high {
>      global
>      comment "very important partitions"
>      compress client fast
>      priority high
> }
> 
> define dumptype nocomp-high {
>      comp-high
>      comment "very important partitions on slow machines"
>      compress none
> }
> 
> define dumptype nocomp-test {
>      global
>      comment "test dump without compression, no /etc/dumpdates recording"
>      compress none
>      record no
>      priority medium
> }
> 
> define dumptype comp-test {
>      nocomp-test
>      comment "test dump with compression, no /etc/dumpdates recording"
>      compress client fast
> }
> 
> define dumptype comp-user {
>      global
>      comment "Non-root partitions on reasonably fast machines"
>      compress client fast
>      priority medium
> }
> 
> define dumptype comp-user-old {
>      comp-user
>      comment "Non-root partitions on reasonably fast machines with old 
> amanda client"
>      estimate client
>      program "GNUTAR"
> }
> 
> define dumptype comp-user-nomonthly {
>          comp-user
> }
> 
> 
> 
> 
> 
> And here is the disklist. It is not complete because I feel that I would 
> publish too much information about our network. These unmodified 
> examples show all different cases, though.
> 
> 
> # plus.aldebaran.de
> # this is the old box with amanda-client 2.4.1p1
> plus.aldebaran.de       /               comp-user-old   -1      eth0
> plus.aldebaran.de       /home           comp-user-old   -1      eth0
> 
> # real
> real.aldebaran.de       /               comp-user-nomonthly     -1  eth0
> real.aldebaran.de       /boot           comp-user-nomonthly     -1  eth0
> real.aldebaran.de       /var            comp-user       -1      eth0
> real.aldebaran.de       /data/b         comp-user       -1      eth0
> 
> # metro
> metro.aldebaran.de      /               comp-user       -1      local
> metro.aldebaran.de      /var            comp-user       -1      local
> metro.aldebaran.de      /data/a         comp-user       -1      local
> metro.aldebaran.de      /data/b         comp-user       -1      local
> 
> 
> Moritz.
> 
> 
> 



Reply via email to