~ubuntu-branches/ubuntu/utopic/open-vm-tools/utopic

« back to all changes in this revision

Viewing changes to debian/open-vm-tools.postinst

  • Committer: Package Import Robot
  • Author(s): Robert C Jennings
  • Date: 2014-02-04 11:14:10 UTC
  • Revision ID: package-import@ubuntu.com-20140204111410-4goaeqwtgpt531to
Tags: 2:9.4.0-1280544-5ubuntu3
* Remove DKMS package and support for vmhgfs filesystem module, 
  as the 3.13 kernel and later do not support it (LP: #1272196).
  - debian/control: removed dkms packages
  - debian/rules: removed vmghfs module support (deprecated) 
  - debian/manpages: removed obsolete man pages

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh
2
 
 
3
 
set -e
4
 
 
5
 
case "${1}" in
6
 
        configure)
7
 
                if [ -x /usr/sbin/update-initramfs ]
8
 
                then
9
 
                        update-initramfs -u
10
 
                fi
11
 
                ;;
12
 
 
13
 
        abort-upgrade|abort-remove|abort-deconfigure)
14
 
 
15
 
                ;;
16
 
 
17
 
        *)
18
 
                echo "postinst called with unknown argument \`${1}'" >&2
19
 
                exit 1
20
 
                ;;
21
 
esac
22
 
 
23
 
#DEBHELPER#
24
 
 
25
 
exit 0