~ubuntu-branches/ubuntu/hardy/ltspfs/hardy-updates

« back to all changes in this revision

Viewing changes to debian/ltspfsd.postinst

  • Committer: Bazaar Package Importer
  • Author(s): Oliver Grawert
  • Date: 2008-02-05 11:04:43 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20080205110443-76a7xuhu402v5xtt
Tags: 0.5.0~bzr20080109-3ubuntu1
* merge from debian unstable
* adjust conflicting ldm version to match our versioning scheme

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh
2
 
# postinst script for ltspfs
3
 
#
4
 
# see: dh_installdeb(1)
5
 
 
6
 
set -e
7
 
 
8
 
# summary of how this script can be called:
9
 
#        * <postinst> `configure' <most-recently-configured-version>
10
 
#        * <old-postinst> `abort-upgrade' <new version>
11
 
#        * <conflictor's-postinst> `abort-remove' `in-favour' <package>
12
 
#          <new-version>
13
 
#        * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
14
 
#          <failed-install-package> <version> `removing'
15
 
#          <conflicting-package> <version>
16
 
# for details, see http://www.debian.org/doc/debian-policy/ or
17
 
# the debian-policy package
18
 
#
19
 
 
20
 
case "$1" in
21
 
    configure)
22
 
        cat <<EOF >/etc/udev/rules.d/88-ltsp.rules
23
 
# /etc/udev/rules.d/88-ltsp.rules
24
 
ACTION=="add", KERNEL=="fd[0-9]", RUN+="add_fstab_entry %k auto"
25
 
ACTION=="add", SUBSYSTEM=="block", ENV{ID_FS_TYPE}=="?*", \
26
 
   RUN+="add_fstab_entry %k \$ENV{ID_FS_TYPE}"
27
 
ACTION=="remove", SUBSYSTEM=="block", RUN+="remove_fstab_entry %k"
28
 
EOF
29
 
 
30
 
    ;;
31
 
 
32
 
    abort-upgrade|abort-remove|abort-deconfigure)
33
 
 
34
 
    ;;
35
 
 
36
 
    *)
37
 
        echo "postinst called with unknown argument \`$1'" >&2
38
 
        exit 1
39
 
    ;;
40
 
esac
41
 
 
42
 
# dh_installdeb will replace this with shell code automatically
43
 
# generated by other debhelper scripts.
44
 
 
45
 
#DEBHELPER#
46
 
 
47
 
exit 0
48
 
 
49