aboutsummaryrefslogtreecommitdiffstats
path: root/configs
diff options
context:
space:
mode:
authorqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-08-20 16:08:49 +0000
committerqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-08-20 16:08:49 +0000
commit74f852d683ef8e7770160a5ec3cc4b14c804c44c (patch)
tree6d56b23b9e6f580b9179007be6653706c5b84ded /configs
parent1234eed59077b3c1affae317d14e5f54fabd32b0 (diff)
(issue #10499)
Reported by: casper Patches: extensions.conf.sample.diff uploaded by casper (license 55) Update CLI examples in extensions.conf.sample to reflect command changes. git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@80047 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'configs')
-rw-r--r--configs/extensions.conf.sample16
1 files changed, 8 insertions, 8 deletions
diff --git a/configs/extensions.conf.sample b/configs/extensions.conf.sample
index aa382f52d..71855fbf9 100644
--- a/configs/extensions.conf.sample
+++ b/configs/extensions.conf.sample
@@ -5,7 +5,7 @@
; inbound and outbound calls in Asterisk.
;
; This configuration file is reloaded
-; - With the "extensions reload" command in the CLI
+; - With the "dialplan reload" command in the CLI
; - With the "reload" command (that reloads everything) in the CLI
;
@@ -22,7 +22,7 @@
static=yes
;
; if static=yes and writeprotect=no, you can save dialplan by
-; CLI command 'save dialplan' too
+; CLI command "dialplan save" too
;
writeprotect=no
;
@@ -45,10 +45,10 @@ writeprotect=no
;
; NOTE: A complication sets in, if you put your global variables into
; the AEL file, instead of the extensions.conf file. With clearglobalvars
-; set, a 'reload' will often leave the globals vars cleared, because it
+; set, a "reload" will often leave the globals vars cleared, because it
; is not unusual to have extensions.conf (which will have no globals)
; load after the extensions.ael file (where the global vars are stored).
-; So, with 'reload' in this particular situation, first the AEL file will
+; So, with "reload" in this particular situation, first the AEL file will
; clear and then set all the global vars, then, later, when the extensions.conf
; file is loaded, the global vars are all cleared, and then not set, because
; they are not stored in the extensions.conf file.
@@ -604,11 +604,11 @@ include => demo
;
;exten = 8700,1,Dial(${MARK},30,A(/path/to/my/announcemsg))
;
-; For more information on applications, just type "show applications" at your
+; For more information on applications, just type "core show applications" at your
; friendly Asterisk CLI prompt.
;
-; 'show application <command>' will show details of how you
+; "core show application <command>" will show details of how you
; use that particular application in this file, the dial plan.
-; 'show functions" will list all dialplan functions
-; 'show function <COMMAND>' will show you more information about
+; "core show functions" will list all dialplan functions
+; "core show function <COMMAND>" will show you more information about
; one function. Remember that function names are UPPER CASE.