Last change
on this file since 4867 was
4867,
checked in by hectorgh, 4 years ago
|
adding no_root_squash
|
-
Property svn:executable set to
*
|
File size:
1.2 KB
|
Line | |
---|
1 | #!/bin/sh |
---|
2 | # postinst script for n4d-ldap |
---|
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 | # * <postinst> `abort-remove' |
---|
14 | # * <deconfigured's-postinst> `abort-deconfigure' `in-favour' |
---|
15 | # <failed-install-package> <version> `removing' |
---|
16 | # <conflicting-package> <version> |
---|
17 | # for details, see http://www.debian.org/doc/debian-policy/ or |
---|
18 | # the debian-policy package |
---|
19 | |
---|
20 | |
---|
21 | case "$1" in |
---|
22 | configure) |
---|
23 | |
---|
24 | |
---|
25 | n4d-modules enable-plugin /etc/n4d/conf.d/NfsManager || true |
---|
26 | |
---|
27 | if dpkg --compare-versions "$2" lt 0.4; then |
---|
28 | |
---|
29 | if [ -e "/net/exports/net.exports" ]; then |
---|
30 | |
---|
31 | python -c "import imp;imp.load_source('NfsManager','/usr/share/n4d/python-plugins/NfsManager.py').NfsManager().fix_missing_no_root_squash()" |
---|
32 | |
---|
33 | fi |
---|
34 | |
---|
35 | |
---|
36 | fi |
---|
37 | |
---|
38 | |
---|
39 | ;; |
---|
40 | |
---|
41 | |
---|
42 | |
---|
43 | |
---|
44 | |
---|
45 | abort-upgrade|abort-remove|abort-deconfigure) |
---|
46 | ;; |
---|
47 | |
---|
48 | *) |
---|
49 | echo "postinst called with unknown argument \`$1'" >&2 |
---|
50 | exit 1 |
---|
51 | ;; |
---|
52 | esac |
---|
53 | |
---|
54 | # dh_installdeb will replace this with shell code automatically |
---|
55 | # generated by other debhelper scripts. |
---|
56 | |
---|
57 | #DEBHELPER# |
---|
58 | |
---|
59 | exit 0 |
---|
Note: See
TracBrowser
for help on using the repository browser.