~ubuntu-branches/ubuntu/utopic/cloud-initramfs-tools/utopic-proposed

« back to all changes in this revision

Viewing changes to debian/overlayroot.postrm

  • Committer: Package Import Robot
  • Author(s): Dustin Kirkland, Scott Moser
  • Date: 2012-07-23 09:38:46 UTC
  • Revision ID: package-import@ubuntu.com-20120723093846-ojgza1c871gn7wtt
Tags: 0.11-0ubuntu1
[ Scott Moser ]
* debian/cloud-initramfs-overlayroot.{install,postinst,postrm}:
  rename so dh gets the right packaged files
* overlayroot/etc/overlayroot.conf,
  overlayroot/scripts/init-bottom/overlayroot:
  * add recursive readonly mounts.  Enable this by default.
  * add parameter 'swap' to control if swap is to be enabled.
    swap defaults to disabled.
  * add support for identifying device by LABEL= or UUID=
* debian/control:
  * remove overlayfs dependency on cloud-utils and util-linux

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
set -e
 
3
 
 
4
case "$1" in
 
5
        remove|purge)
 
6
                dpkg-trigger update-initramfs;;
 
7
        *) exit 0;;
 
8
esac
 
9
 
 
10
#DEBHELPER#
 
11
exit 0
 
12
 
 
13
# vi: ts=4 noexpandtab
 
14