mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-05 20:20:07 +00:00
configs: Move sample config files into a subdirectory of configs
This moves all samples configs from configs/ to configs/samples. This allows for additional sets of sample configuration files to be added in the future. Review: https://reviewboard.asterisk.org/r/3804/ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@418870 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
4
Makefile
4
Makefile
@@ -660,7 +660,7 @@ upgrade: bininstall
|
|||||||
adsi:
|
adsi:
|
||||||
@echo Installing adsi config files...
|
@echo Installing adsi config files...
|
||||||
$(INSTALL) -d "$(DESTDIR)$(ASTETCDIR)"
|
$(INSTALL) -d "$(DESTDIR)$(ASTETCDIR)"
|
||||||
@for x in configs/*.adsi; do \
|
@for x in configs/samples/*.adsi; do \
|
||||||
dst="$(DESTDIR)$(ASTETCDIR)/`$(BASENAME) $$x`" ; \
|
dst="$(DESTDIR)$(ASTETCDIR)/`$(BASENAME) $$x`" ; \
|
||||||
if [ -f "$${dst}" ] ; then \
|
if [ -f "$${dst}" ] ; then \
|
||||||
echo "Overwriting $$x" ; \
|
echo "Overwriting $$x" ; \
|
||||||
@@ -672,7 +672,7 @@ adsi:
|
|||||||
|
|
||||||
samples: adsi
|
samples: adsi
|
||||||
@echo Installing other config files...
|
@echo Installing other config files...
|
||||||
@for x in configs/*.sample; do \
|
@for x in configs/samples/*.sample; do \
|
||||||
dst="$(DESTDIR)$(ASTETCDIR)/`$(BASENAME) $$x .sample`" ; \
|
dst="$(DESTDIR)$(ASTETCDIR)/`$(BASENAME) $$x .sample`" ; \
|
||||||
if [ -f "$${dst}" ]; then \
|
if [ -f "$${dst}" ]; then \
|
||||||
if [ "$(OVERWRITE)" = "y" ]; then \
|
if [ "$(OVERWRITE)" = "y" ]; then \
|
||||||
|
@@ -23,6 +23,9 @@
|
|||||||
|
|
||||||
From 12 to 13:
|
From 12 to 13:
|
||||||
|
|
||||||
|
- Sample config files have been moved from configs/ to a subfolder of that
|
||||||
|
directory, 'samples'.
|
||||||
|
|
||||||
- The menuselect utility has been pulled into the Asterisk repository. As a
|
- The menuselect utility has been pulled into the Asterisk repository. As a
|
||||||
result, the libxml2 development library is now a required dependency for
|
result, the libxml2 development library is now a required dependency for
|
||||||
Asterisk.
|
Asterisk.
|
||||||
|
@@ -11,6 +11,6 @@
|
|||||||
;password=password
|
;password=password
|
||||||
;user=postgres
|
;user=postgres
|
||||||
;appname=asterisk ; Postgres application_name support (optional). Whitespace not allowed.
|
;appname=asterisk ; Postgres application_name support (optional). Whitespace not allowed.
|
||||||
;table=cdr ; SQL table where CDRs will be inserted
|
;table=cdr ;SQL table where CDRs will be inserted
|
||||||
;encoding=LATIN9 ; Encoding of logged characters in Asterisk
|
;encoding=LATIN9 ; Encoding of logged characters in Asterisk
|
||||||
;timezone=UTC ; Uncomment if you want datetime fields in UTC/GMT
|
;timezone=UTC ; Uncomment if you want datetime fields in UTC/GMT
|
@@ -64,5 +64,5 @@
|
|||||||
;dbname=asterisk
|
;dbname=asterisk
|
||||||
;password=password
|
;password=password
|
||||||
;user=postgres
|
;user=postgres
|
||||||
;table=cel ; SQL table where CEL's will be inserted
|
;table=cel ;SQL table where CEL's will be inserted
|
||||||
;appname=asterisk ; Postgres application_name support (optional). Whitespace not allowed.
|
;appname=asterisk ; Postgres application_name support (optional). Whitespace not allowed.
|
@@ -435,8 +435,6 @@
|
|||||||
; SYNOPSIS: Endpoint
|
; SYNOPSIS: Endpoint
|
||||||
;100rel=yes ; Allow support for RFC3262 provisional ACK tags (default:
|
;100rel=yes ; Allow support for RFC3262 provisional ACK tags (default:
|
||||||
; "yes")
|
; "yes")
|
||||||
;accountcode=foo ; Set a default account code for channels created for
|
|
||||||
; this endpoint
|
|
||||||
;aggregate_mwi=yes ; (default: "yes")
|
;aggregate_mwi=yes ; (default: "yes")
|
||||||
;allow= ; Media Codec s to allow (default: "")
|
;allow= ; Media Codec s to allow (default: "")
|
||||||
;aors= ; AoR s to be used with the endpoint (default: "")
|
;aors= ; AoR s to be used with the endpoint (default: "")
|
@@ -18,7 +18,7 @@ dbpass=password
|
|||||||
; actual socket is constructed as a combination of dbsock and dbport. For
|
; actual socket is constructed as a combination of dbsock and dbport. For
|
||||||
; example, the values of '/tmp' and '5432', respectively, will specify a socket
|
; example, the values of '/tmp' and '5432', respectively, will specify a socket
|
||||||
; file of '/tmp/.s.PGSQL.5432'.
|
; file of '/tmp/.s.PGSQL.5432'.
|
||||||
;
|
;
|
||||||
;dbsock=/tmp
|
;dbsock=/tmp
|
||||||
;
|
;
|
||||||
; requirements - At startup, each realtime family will make requirements
|
; requirements - At startup, each realtime family will make requirements
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user