[Asterisk-code-review] modules.conf: Fix differing usage of assignment operators. (asterisk[18])
Sean Bright
asteriskteam at digium.com
Mon Mar 8 15:44:34 CST 2021
Sean Bright has uploaded this change for review. ( https://gerrit.asterisk.org/c/asterisk/+/15579 )
Change subject: modules.conf: Fix differing usage of assignment operators.
......................................................................
modules.conf: Fix differing usage of assignment operators.
ASTERISK-24434 #close
Change-Id: I0144e8d65d878128da59dcf3df12ca8cee47d6db
---
M configs/samples/modules.conf.sample
1 file changed, 8 insertions(+), 8 deletions(-)
git pull ssh://gerrit.asterisk.org:29418/asterisk refs/changes/79/15579/1
diff --git a/configs/samples/modules.conf.sample b/configs/samples/modules.conf.sample
index d2291ae..8d6e75d 100644
--- a/configs/samples/modules.conf.sample
+++ b/configs/samples/modules.conf.sample
@@ -18,7 +18,7 @@
; map Asterisk core configuration files to Realtime storage.
; This is no longer needed.
;
-;preload => your_special_module.so
+;preload = your_special_module.so
;
; If you want Asterisk to fail if a module does not load, then use
; the "require" keyword. Asterisk will exit with a status code of 2
@@ -29,21 +29,21 @@
; If you want you can combine with preload
; preload-require = your_special_module.so
;
-;load => res_musiconhold.so
+;load = res_musiconhold.so
;
; Load one of: chan_oss, alsa, or console (portaudio).
; By default, load chan_oss only (automatically).
;
-noload => chan_alsa.so
-noload => chan_console.so
-;noload => chan_oss.so
+noload = chan_alsa.so
+noload = chan_console.so
+;noload = chan_oss.so
;
; Do not load res_hep and kin unless you are using HEP monitoring
; <http://sipcapture.org> in your network.
;
-noload => res_hep.so
-noload => res_hep_pjsip.so
-noload => res_hep_rtcp.so
+noload = res_hep.so
+noload = res_hep_pjsip.so
+noload = res_hep_rtcp.so
;
; Do not load chan_sip by default, it may conflict with res_pjsip.
noload => chan_sip.so
--
To view, visit https://gerrit.asterisk.org/c/asterisk/+/15579
To unsubscribe, or for help writing mail filters, visit https://gerrit.asterisk.org/settings
Gerrit-Project: asterisk
Gerrit-Branch: 18
Gerrit-Change-Id: I0144e8d65d878128da59dcf3df12ca8cee47d6db
Gerrit-Change-Number: 15579
Gerrit-PatchSet: 1
Gerrit-Owner: Sean Bright <sean.bright at gmail.com>
Gerrit-MessageType: newchange
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.digium.com/pipermail/asterisk-code-review/attachments/20210308/f0f26379/attachment.html>
More information about the asterisk-code-review
mailing list