~ubuntu-branches/ubuntu/trusty/bcache-tools/trusty-proposed

« back to all changes in this revision

Viewing changes to debian/bcache-tools.postinst

  • Committer: Package Import Robot
  • Author(s): Robie Basak, David Mohr, Robie Basak
  • Date: 2014-10-27 13:32:08 UTC
  • Revision ID: package-import@ubuntu.com-20141027133208-okkd8t1vu1kshmig
Tags: 1.0.7-1
[ David Mohr ]
* Based on work by Gabriel de Perthuis <g2p.code+debian@gmail.com>
* Initial release. (Closes: #708132)

[ Robie Basak ]
* Remove unnecessary file bcache-tools.postrm.
* debian/copyright fixes.
* Add shebang to bcache-tools.preinst.
* Drop Vcs-* for now.
* Add self to Uploaders.

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
        update-initramfs -u
 
7
    ;;
 
8
esac
 
9
 
 
10
#DEBHELPER#
 
11
 
 
12
exit 0