[Pkg-voip-commits] r1164 - in asterisk/trunk/debian: . ast_config

Kilian Krause kilian at costa.debian.org
Thu Jan 12 10:55:56 UTC 2006


Author: kilian
Date: 2006-01-12 10:55:55 +0000 (Thu, 12 Jan 2006)
New Revision: 1164

Added:
   asterisk/trunk/debian/ast_config/modules.conf
Modified:
   asterisk/trunk/debian/changelog
Log:
add noload line for chan_capi


Added: asterisk/trunk/debian/ast_config/modules.conf
===================================================================
--- asterisk/trunk/debian/ast_config/modules.conf	2006-01-11 21:42:54 UTC (rev 1163)
+++ asterisk/trunk/debian/ast_config/modules.conf	2006-01-12 10:55:55 UTC (rev 1164)
@@ -0,0 +1,54 @@
+;
+; Asterisk configuration file
+;
+; Module Loader configuration file
+;
+
+[modules]
+autoload=yes
+;
+; Any modules that need to be loaded before the Asterisk core has been
+; initialized (just after the logger has been initialized) can be loaded
+; using 'preload'. This will frequently be needed if you wish to map all
+; module configuration files into Realtime storage, since the Realtime
+; driver will need to be loaded before the modules using those configuration
+; files are initialized.
+;
+; An example of loading ODBC support would be:
+;preload => res_odbc.so
+;preload => res_config_odbc.so
+;
+; If you want, load the GTK console right away.  
+; Don't load the KDE console since
+; it's not as sophisticated right now.
+;
+noload => pbx_gtkconsole.so
+;load => pbx_gtkconsole.so
+noload => pbx_kdeconsole.so
+;
+; Intercom application is obsoleted by
+; chan_oss.  Don't load it.
+;
+noload => app_intercom.so
+;
+; The 'modem' channel driver and its subdrivers are
+; obsolete, don't load them.
+;
+noload => chan_modem.so
+noload => chan_modem_aopen.so
+noload => chan_modem_bestdata.so
+noload => chan_modem_i4l.so
+noload => chan_capi.so
+;
+load => res_musiconhold.so
+;
+; Load either OSS or ALSA, not both
+; By default, load OSS only (automatically) and do not load ALSA
+;
+noload => chan_alsa.so
+;noload => chan_oss.so
+;
+; Module names listed in "global" section will have symbols globally
+; exported to modules loaded after them.
+;
+[global]

Modified: asterisk/trunk/debian/changelog
===================================================================
--- asterisk/trunk/debian/changelog	2006-01-11 21:42:54 UTC (rev 1163)
+++ asterisk/trunk/debian/changelog	2006-01-12 10:55:55 UTC (rev 1164)
@@ -18,8 +18,10 @@
   * Build-Depends on libpri1.2 since new ABI caused new package name.
   * Removed alternatives from Build-Depends since sbuild will only take first
     anyway to ensure constant rebuilds.
+  * Add a noload for chan_capi by default, so that we d not stop loading when
+    no CAPI is installed. (Closes: #328835)
 
- -- Kilian Krause <kilian at debian.org>  Wed, 11 Jan 2006 11:57:47 +0000
+ -- Kilian Krause <kilian at debian.org>  Thu, 12 Jan 2006 10:55:40 +0000
 
 asterisk (1:1.2.1.dfsg-3) unstable; urgency=low
 




More information about the Pkg-voip-commits mailing list