2017-04-25 10:43:44 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
|
|
#make a backup of the conf directory
|
|
|
|
|
#mv /usr/local/etc/freeswitch /usr/local/etc/freeswitch.orig
|
|
|
|
|
|
|
|
|
|
#copy the default conf directory
|
|
|
|
|
mkdir -p /usr/local/etc/freeswitch
|
2023-06-23 21:36:47 +02:00
|
|
|
cp -R /usr/local/www/fusionpbx/app/switch/resources/conf/* /usr/local/etc/freeswitch
|
2017-04-25 10:43:44 +02:00
|
|
|
|
|
|
|
|
#copy the scripts
|
2020-06-17 18:13:04 +02:00
|
|
|
cp -R /usr/local/www/fusionpbx/app/scripts/resources/scripts /usr/local/share/freeswitch
|
2017-04-25 10:43:44 +02:00
|
|
|
chown -R www:www /usr/local/share/freeswitch
|