Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(57)

Side by Side Diff: debian/prerm

Issue 1564014: build: Delete login_manager's files from the previous build system. (Closed)
Patch Set: Created 10 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « debian/preinst ('k') | debian/rules » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 # prerm script for chromeos-login
8 #
9 # see: dh_installdeb(1)
10
11 set -e
12
13 # summary of how this script can be called:
14 # * <prerm> `remove'
15 # * <old-prerm> `upgrade' <new-version>
16 # * <new-prerm> `failed-upgrade' <old-version>
17 # * <conflictor's-prerm> `remove' `in-favour' <package> <new-version>
18 # * <deconfigured's-prerm> `deconfigure' `in-favour'
19 # <package-being-installed> <version> `removing'
20 # <conflicting-package> <version>
21 # for details, see http://www.debian.org/doc/debian-policy/ or
22 # the debian-policy package
23
24
25 case "$1" in
26 remove|upgrade|deconfigure)
27 ;;
28
29 failed-upgrade)
30 ;;
31
32 *)
33 echo "prerm called with unknown argument \`$1'" >&2
34 exit 1
35 ;;
36 esac
37
38 # dh_installdeb will replace this with shell code automatically
39 # generated by other debhelper scripts.
40
41 #DEBHELPER#
42
43 exit 0
OLDNEW
« no previous file with comments | « debian/preinst ('k') | debian/rules » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698