]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
debian: avoid lintian maintainer-script-empty
authorTravis Cross <tc@traviscross.com>
Sun, 6 May 2012 22:46:13 +0000 (22:46 +0000)
committerTravis Cross <tc@traviscross.com>
Sun, 6 May 2012 22:46:13 +0000 (22:46 +0000)
We are going to fill in these files with useful things.

debian/freeswitch.preinst
debian/freeswitch.prerm

index 56dc52da8f0f34f31bd2402451711aa668940101..01d322e76c3ca2b1bc4a28975293de4c14dcdfbd 100644 (file)
@@ -3,6 +3,9 @@ set -e
 
 case "$1" in
   install|upgrade)
+    if [ -d /opt/freeswitch ]; then
+      echo "It looks like you have FreeSWITCH installed manually." >&2
+    fi
     ;;
 
   abort-upgrade)
index c2d46bc865320846302342693b0172e923662f4d..24906ff7e968325cb6ebb2d3216d8137c3bd91b9 100644 (file)
@@ -3,6 +3,7 @@ set -e
 
 case "$1" in
   remove|upgrade|deconfigure)
+    echo "We're about to remove FreeSWITCH..." >&2
     ;;
 
   failed-upgrade)