~ubuntu-branches/ubuntu/maverick/mythbuntu-artwork-usplash/maverick

« back to all changes in this revision

Viewing changes to debian/mythbuntu-artwork-usplash.postinst

  • Committer: Bazaar Package Importer
  • Author(s): Mario Limonciello
  • Date: 2007-04-23 00:08:23 UTC
  • Revision ID: james.westby@ubuntu.com-20070423000823-wssjewguemb8z0i9
Tags: 0.1
Initial release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
set -e
 
4
 
 
5
#DEBHELPER#
 
6
 
 
7
case "$1" in
 
8
    configure)
 
9
        update-alternatives --remove usplash-artwork.so /usr/lib/usplash/usplash-theme-mythbuntu.so 
 
10
        #set one higher than kubuntu so kubuntu can still have standalone myth boxen too
 
11
        update-alternatives --install /usr/lib/usplash/usplash-artwork.so usplash-artwork.so /usr/lib/usplash/usplash-theme-mythbuntu.so 56
 
12
        update-initramfs -u
 
13
        ;;
 
14
esac