From 33c723e839f4be4cac4a06737b59ee0a45d74bf9 Mon Sep 17 00:00:00 2001 From: William King Date: Wed, 17 Jun 2015 20:40:19 -0700 Subject: [PATCH] FS-7669 #resolve There was already a postinst file, and I missed it. --- debian/freeswitch.postinst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/debian/freeswitch.postinst b/debian/freeswitch.postinst index d2f3f8ac87..10c121c1b4 100644 --- a/debian/freeswitch.postinst +++ b/debian/freeswitch.postinst @@ -29,6 +29,10 @@ case "$1" in fi chown freeswitch $x done + if [ ! -d "/etc/freeswitch" ]; then + mkdir -p /etc/freeswitch/ + cp -a /usr/share/freeswitch/conf/vanilla/* /etc/freeswitch/ + fi ;; abort-upgrade|abort-remove|abort-deconfigure) ;;