~ubuntu-branches/ubuntu/trusty/ubuntukylin-wallpapers/trusty-proposed

« back to all changes in this revision

Viewing changes to debian/ubuntukylin-wallpapers.postinst

  • Committer: Package Import Robot
  • Author(s): Aron Xu
  • Date: 2013-03-03 11:47:10 UTC
  • Revision ID: package-import@ubuntu.com-20130303114710-cdyfcr7fan2fr1so
Tags: 13.10.0
Initial release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /bin/sh
 
2
set -e
 
3
 
 
4
case "$1" in
 
5
    configure)
 
6
        # Workaround LP: #746028
 
7
        touch /usr/share/backgrounds/warty-final-ubuntukylin.jpg
 
8
    ;;
 
9
 
 
10
    abort-upgrade|abort-deconfigure|abort-remove)
 
11
    ;;
 
12
 
 
13
    *)
 
14
        echo "$0 called with unknown argument \`$1'" 1>&2
 
15
        exit 1
 
16
    ;;
 
17
esac
 
18
 
 
19
#DEBHELPER#