~ubuntu-branches/ubuntu/wily/steam/wily

« back to all changes in this revision

Viewing changes to debian/postrm

  • Committer: Package Import Robot
  • Author(s): Felix Geyer
  • Date: 2013-10-29 19:51:18 UTC
  • mfrom: (1.1.4) (0.1.4 trusty-proposed)
  • Revision ID: package-import@ubuntu.com-20131029195118-b9bxciz5hwx5z459
Tags: 1:1.0.0.39-2ubuntu1
Add an epoch to the version number as there was an unrelated steam package
in the archive with a higher version number.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/bin/sh
2
 
 
3
 
# dh_installdeb will replace this with shell code automatically
4
 
# generated by other debhelper scripts.
 
2
set -e
 
3
 
 
4
. /usr/share/debconf/confmodule
 
5
 
 
6
if [ "$1" = "abort-install" ]; then
 
7
    echo "Installation terminated: Steam License Agreement was DECLINED."
 
8
    db_purge
 
9
    exit 0
 
10
fi
 
11
 
 
12
if [ "$1" = "purge" ]; then
 
13
    db_input high steam/purge
 
14
    db_go
 
15
fi
5
16
 
6
17
#DEBHELPER#
7