diff options
author | Arno Töll <debian@toell.net> | 2012-03-18 17:32:09 +0100 |
---|---|---|
committer | Arno Töll <debian@toell.net> | 2012-03-18 17:32:09 +0100 |
commit | 95a05eb52763c795b7aa6d0f6794c15214ac8e7a (patch) | |
tree | b139161dfd3de38eb6f193bafd04ca63cf6264ed | |
parent | a13ccc5635a16c8e47bf0bef99dd67fa1057759c (diff) | |
download | apache2-95a05eb52763c795b7aa6d0f6794c15214ac8e7a.tar.gz |
Document pre-load dependencies
-rw-r--r-- | debian/PACKAGING | 22 |
1 files changed, 20 insertions, 2 deletions
diff --git a/debian/PACKAGING b/debian/PACKAGING index be9a54a5..5585b5bc 100644 --- a/debian/PACKAGING +++ b/debian/PACKAGING @@ -66,13 +66,31 @@ foo.load: LoadModule foo_module /usr/lib/modules/mod_foo.so -XXX: TODO: Explain workaround for load-order dependency - Additionally, a 'foo.conf' configuration file can be installed along the 'load' file to configure the module if required. This is useful if the module in question requires some initial configuration to be useful. No magic comments are recognized in '.conf' files. +In some rare cases it can't be avoided that a module depends on a loaded module +before another module can be loaded. However, modules are loaded in a sorted +alphabetical order. In most cases such pre-load dependencies could be avoided +upstream. If there is no way out that problem, you may want to add a conditional +Include in your own module file. Suppose mod_foo relies on mod_bar to be loaded +before, you may want to write a module 'load' file like this: + + # Depends: bar + <IfModule !mod_bar.c> + Include mods-enabled/bar.load + IncludeOptional mods-enabled/bar.conf + </IfModule> + + LoadModule foo_module /usr/lib/modules/mod_foo.so + +Use this method extremely sparingly. In most cases a simple "Depends:" +dependency does the job, too. The "Depends:" magic line is still needed, as this +makes sure, the module is actually enabled on the local installation site. + + Maintainer scripts should not invoke a2enmod directly. Instead, the apache2-maintscript-helper should be used. Please realize, the helper is not guaranteed to be installed on the target system. There are certain setups which |