debian/prerm removes config file and only echoes the SQL deletion notice when purged
authorrohieb <devnull@localhost>
Wed, 23 Jul 2008 03:44:28 +0000 (05:44 +0200)
committerrohieb <devnull@localhost>
Wed, 23 Jul 2008 03:44:28 +0000 (05:44 +0200)
debian/prerm

index da9ebee..56d96db 100755 (executable)
@@ -2,10 +2,16 @@
 psql -c "DELETE FROM log_module WHERE module='Room Reservation Schedule';"
 chklocale
 
+if [ "$1" = "purge" ]; then
+  rm -f /usr/share/iserv/www/inc/mod_room-reservation/config.inc
+fi;
+
 #DEBHELPER#
 
-@echo
-@echo If you do not need the SQL tables anymore, remove them by running
-@echo '  psql -c "DROP TABLE mod_roomreservation_bookings;"'
-@echo After that, all bookings are unrecoverably deleted!
-@echo
+if [ "$1" = "purge" ]; then
+  echo
+  echo If you do not need the SQL tables anymore, remove them by running
+  echo '  psql -c "DROP TABLE mod_roomreservation_bookings;"'
+  echo After that, all bookings are unrecoverably deleted!
+  echo
+fi;
This page took 0.026467 seconds and 4 git commands to generate.