summaryrefslogtreecommitdiffstats
path: root/debian/nfs-common.postinst
blob: 9814bc5e21a7198b1538690aaff3164f47cf222f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh -e

case "$1" in
    configure)
	test ! -d /usr/share/doc/nfs-common ||
	  test -L /usr/doc/nfs-common ||
	  ln -sf ../share/doc/nfs-common /usr/doc/nfs-common

	update-rc.d nfs-common defaults 19 81 >/dev/null 2>&1

	/etc/init.d/nfs-common start
	;;

    *)
	/etc/init.d/nfs-common start
	;;
esac