~ubuntu-branches/ubuntu/hardy/steam/hardy

« back to all changes in this revision

Viewing changes to distrib/debian-3.1/steam.postrm

  • Committer: Bazaar Package Importer
  • Author(s): Alain Schroeder
  • Date: 2006-11-21 16:03:12 UTC
  • mfrom: (2.1.4 feisty)
  • Revision ID: james.westby@ubuntu.com-20061121160312-nf96y6nihzsyd2uv
Tags: 2.2.31-3
Add patch to prevent inconsistent data after shutdown.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
. /usr/share/dbconfig-common/dpkg/postrm.mysql
 
3
 
 
4
# dh_installdeb will replace this with shell code automatically
 
5
# generated by other debhelper scripts.
 
6
 
 
7
#DEBHELPER#
 
8
 
 
9
if [ "$1" = "purge" ] && [ -e /var/lib/steam ]; then
 
10
    rm -rf /var/lib/steam
 
11
    rm /etc/steam/steam.cer
 
12
fi
 
13
 
 
14
exit 0
 
15
 
 
16