]> git.decadent.org.uk Git - nfs-utils.git/blob - debian/nfs-common.postinst
Imported Debian patch 1.0.7-18
[nfs-utils.git] / debian / nfs-common.postinst
1 #!/bin/sh -e
2
3 #DEBHELPER#
4
5 case "$1" in
6     configure)
7         ucf --three-way /usr/share/nfs-common/conffiles/idmapd.conf /etc/idmapd.conf
8         ucf --three-way /usr/share/nfs-common/conffiles/gssapi_mech.conf /etc/gssapi_mech.conf
9         ucf --three-way /usr/share/nfs-common/conffiles/nfs-common.default /etc/default/nfs-common
10
11         update-rc.d nfs-common defaults 21 79 >/dev/null
12
13         if ! getent passwd statd >/dev/null; then
14             adduser --system --home /var/lib/nfs --no-create-home statd
15         fi
16         if dpkg --compare-versions "$2" ge 1:1.0.7-10 && dpkg --compare-versions "$2" lt 1:1.0.7-13; then
17             usermod --home /var/lib/nfs statd || true
18             if [ -d /home/statd ]; then
19                 rmdir --ignore-fail-on-non-empty /home/statd
20             fi
21         fi
22         if [ "$2" = "" ] || dpkg --compare-versions "$2" lt 1:1.0.7-16; then
23             chown statd /var/lib/nfs/sm \
24                 /var/lib/nfs/sm.bak \
25                 /var/lib/nfs/rpc_pipefs \
26                 /var/lib/nfs
27             if [ -f /var/lib/nfs/state ]; then
28                 chown statd /var/lib/nfs/state
29             fi
30         fi
31     ;;
32 esac
33
34 act="restart"
35 [ "$1:$2" = "configure:" ] && act="start"
36 invoke-rc.d nfs-common $act