I am attempting to configure my modules.conf file. According to the sample modules.conf I should autoload everything then use the noload command to deselect specific modules I do not want loaded.
The noload" command is not doing what it is suppose to do.
Here is a sample of my module.conf file.
[code];
; Asterisk configuration file
;
; Module Loader configuration file
;
;
[modules]
autoload=yes
;
;
; An example of loading ODBC support would be:
;preload => res_odbc.so
;preload => res_config_odbc.so
;
; Uncomment the following if you wish to use the Speech Recognition API
;preload => res_speech.so
;
; require = chan_sip.so
; If you want you can combine with preload
; preload-require = res_odbc.so
;
; Resource modules
;
;noload => res_musiconhold.so ;need this one
noload => res_speech.so
noload => res_phoneprov.so
noload => res_ael_share.so
noload => res_clialiases.so
noload => res_adsi.so
etc…
[/code]
Currently module.conf is loading 195 modules.
Why is "noload => " not working?