Thanks Jean-Louis,
I followed your suggestion and of course it works.
Maybe when somebody touches that code it would be an idea to add a
possibility to unset parameters, for example like
application none
or
application -
or
no application
or
application withdraw ;)
Moritz
Am 22.10.2011 03:29, schrieb Jean-Louis Martineau:
It is impossible to unset the application parameter. You must change the
definition order
eg.
define dumptype global {
comment "Global definitions"
index yes
program "GNUTAR"
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 global-application {
global
program "APPLICATION"
application "app-gtar"
}
and use global-application when you want to use the application.
Jean-Louis