moved db_user calls from includes to actual script, buggy when included from navigation
[iserv-mod-room-reservation.git] / debian / postrm
1 #!/bin/sh
2 psql -c "DELETE FROM log_module WHERE module='Room Reservation Schedule';"
3 chklocale
4
5 #DEBHELPER#
6
7 if [ "$1" = "purge" ]; then
8 echo
9 echo iserv-mod-roomreservation was removed. If you do not need the data in
10 echo the SQL tables anymore, you can remove them by running:
11 echo ' psql -c "DROP TABLE mod_roomreservation_bookings;"'
12 echo ' psql -c "DROP TABLE mod_roomreservation_roomswhitelist;"'
13 echo After that, all bookings and settings are unrecoverably deleted!
14 echo
15 fi;
This page took 0.043494 seconds and 5 git commands to generate.