diff --git a/freebsd/resources/switch/package-conf-copy.sh b/freebsd/resources/switch/package-conf-copy.sh deleted file mode 100755 index 139650d..0000000 --- a/freebsd/resources/switch/package-conf-copy.sh +++ /dev/null @@ -1,5 +0,0 @@ -#!/bin/sh - -#mv /usr/local/etc/freeswitch /usr/local/etc/freeswitch.orig -mkdir -p /usr/local/etc/freeswitch -cp -R /usr/local/www/fusionpbx/resources/templates/conf/* /usr/local/etc/freeswitch diff --git a/freebsd/resources/switch/package-copy.sh b/freebsd/resources/switch/package-copy.sh new file mode 100755 index 0000000..5a42b23 --- /dev/null +++ b/freebsd/resources/switch/package-copy.sh @@ -0,0 +1,12 @@ +#!/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 +cp -R /usr/local/www/fusionpbx/resources/templates/conf/* /usr/local/etc/freeswitch + +#copy the scripts +cp -R /usr/local/www/fusionpbx/resources/install/scripts /usr/local/share/freeswitch +chown -R www:www /usr/local/share/freeswitch