[packages] net/nufw: run of autogen.sh needed with recent versions of libtool
[openwrt/svn-archive/archive.git] / net / freeswitch / files / uci / update_xml.sh
1 #!/bin/sh
2 # Copyright (C) 2010 Vertical Communications
3 # This is free software, licensed under the GNU General Public License v2.
4 # See /LICENSE for more information.
5
6 # Note that the fs_profile_* functions require the FS XML files contains
7 # commented out sections for the parameters that are not currently in use, but
8 # which are to be available to the UCI FS config
9 fs_init_xml() {
10 config_load freeswitch
11 fs_profile_internal_top "internal_top" "/etc/freeswitch/sip_profiles/internal.xml"
12 fs_profile_external_top "external_top" "/etc/freeswitch/sip_profiles/external.xml"
13 fs_profile_gateway "external_example" "/etc/freeswitch/sip_profiles/external/example.xml"
14 fs_profile_gateway "internal_example" "/etc/freeswitch/sip_profiles/internal/example.xml"
15 fs_extensions_all
16 }