From c79509a3675fa5607a57400be09d9b6e9fa05ba8 Mon Sep 17 00:00:00 2001 From: Travis Cross Date: Tue, 18 Dec 2012 17:42:47 +0000 Subject: [PATCH] Use /var/lib/freeswitch as home directory on Debian Previously we were using /var/run/freeswitch. Julian pointed out that someone may actually want to keep information around in the home directory. For Gemeinschaft they need to keep the .odbc.ini file here. Thanks-to: Julian Pawlowski --- debian/freeswitch.postinst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/freeswitch.postinst b/debian/freeswitch.postinst index 444c602bc4..6f024b726f 100644 --- a/debian/freeswitch.postinst +++ b/debian/freeswitch.postinst @@ -8,7 +8,7 @@ case "$1" in fi if ! getent passwd freeswitch >/dev/null; then useradd --system -g freeswitch -Gaudio \ - -d /var/run/freeswitch \ + -d /var/lib/freeswitch \ -s /bin/false \ -e '' \ -c 'FreeSWITCH' \