From c431ed1ff93f7fbfda7d3b0d9496d2c355758c49 Mon Sep 17 00:00:00 2001 From: William King Date: Fri, 19 Jun 2015 16:39:35 -0700 Subject: [PATCH] FS-7697 #resolve Now when we install FS by default the tls directory will also be created. --- debian/freeswitch.postinst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/debian/freeswitch.postinst b/debian/freeswitch.postinst index 10c121c1b4..934101febc 100644 --- a/debian/freeswitch.postinst +++ b/debian/freeswitch.postinst @@ -30,8 +30,9 @@ case "$1" in chown freeswitch $x done if [ ! -d "/etc/freeswitch" ]; then - mkdir -p /etc/freeswitch/ + mkdir -p /etc/freeswitch/tls/ cp -a /usr/share/freeswitch/conf/vanilla/* /etc/freeswitch/ + fi ;; abort-upgrade|abort-remove|abort-deconfigure)