From 53e039435918351eec83b35b8790eef4a4a3c06b Mon Sep 17 00:00:00 2001 From: Mark Crane Date: Mon, 31 Mar 2014 18:30:55 +0000 Subject: [PATCH] Fix the copy for the freeswitch conf directory which is done during the install. --- resources/install.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/install.php b/resources/install.php index 1a3f275ea4..1a46c9b96f 100644 --- a/resources/install.php +++ b/resources/install.php @@ -1276,7 +1276,7 @@ if ($_POST["install_step"] == "3" && count($_POST) > 0 && strlen($_POST["persist if (file_exists($switch_conf_dir)) { $src_dir = $_SERVER["DOCUMENT_ROOT"].PROJECT_PATH."/resources/templates/conf"; $dst_dir = $switch_conf_dir; - if (!file_exists("/etc/freeswitch/freeswitch.xml")) { + if (!file_exists("/etc/freeswitch/vars.xml")) { if (is_readable($dst_dir)) { $install->recursive_copy($src_dir, $dst_dir); }