aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2005-02-10 21:17:36 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2005-02-10 21:17:36 +0000
commita61d44e2867143b8bdcefeec69fe0099800d709e (patch)
tree8756ed7835f94f18405d1860b376c74f71d5fb31 /doc
parent2608cf9e1bde821647b59926413a655c507b8f76 (diff)
Remove duplicate section (bug #3545)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@5005 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'doc')
-rwxr-xr-xdoc/README.configuration21
1 files changed, 0 insertions, 21 deletions
diff --git a/doc/README.configuration b/doc/README.configuration
index 81f607ba8..60a077a32 100755
--- a/doc/README.configuration
+++ b/doc/README.configuration
@@ -80,27 +80,6 @@ The exec directive is used like this:
#exec /usr/local/bin/myasteriskconfigurator.sh
-Including other files
----------------------
-In all of the configuration files, you may include the content of another
-file with the #include statement. The content of the other file will be
-included at the row that the #include statement occured.
-
- #include myusers.conf
-
-You may also include the output of a program with the #exec directive,
-if you enable it in asterisk.conf
-
-In asterisk.conf, add the execincludes = yes statement in the options
-section:
- [options]
- execincludes=yes
-
-The exec directive is used like this:
-
- #exec /usr/local/bin/myasteriskconfigurator.sh
-
-
Adding to an existing section
-----------------------------