OLD | NEW |
(Empty) | |
| 1 #!/bin/sh |
| 2 |
| 3 # Copyright (c) 2009 The Chromium OS Authors. All rights reserved. |
| 4 # Use of this source code is governed by a BSD-style license that can be |
| 5 # found in the LICENSE file. |
| 6 |
| 7 # postrm script for chromeos-theme |
| 8 # |
| 9 # see: dh_installdeb(1) |
| 10 |
| 11 set -e |
| 12 |
| 13 # summary of how this script can be called: |
| 14 # * <postrm> `remove' |
| 15 # * <postrm> `purge' |
| 16 # * <old-postrm> `upgrade' <new-version> |
| 17 # * <new-postrm> `failed-upgrade' <old-version> |
| 18 # * <new-postrm> `abort-install' |
| 19 # * <new-postrm> `abort-install' <old-version> |
| 20 # * <new-postrm> `abort-upgrade' <old-version> |
| 21 # * <disappearer's-postrm> `disappear' <overwriter> |
| 22 # <overwriter-version> |
| 23 # for details, see http://www.debian.org/doc/debian-policy/ or |
| 24 # the debian-policy package |
| 25 |
| 26 |
| 27 case "$1" in |
| 28 purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) |
| 29 ;; |
| 30 |
| 31 *) |
| 32 echo "postrm called with unknown argument \`$1'" >&2 |
| 33 exit 1 |
| 34 ;; |
| 35 esac |
| 36 |
| 37 # dh_installdeb will replace this with shell code automatically |
| 38 # generated by other debhelper scripts. |
| 39 |
| 40 #DEBHELPER# |
| 41 |
| 42 exit 0 |
OLD | NEW |