blob: 380fc99ca7bf5d00d9351a86f1fbad10265d27a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
post_install() {
cat << 'EOM'
==>
==> PLEASE NOTE:
==> Extended configuration options for NFS are available in
==> /etc/conf.d/nfs.
==>
==> Please refer to http://wiki.archlinux.org/index.php/Nfs
==> for further information.
==>
EOM
}
post_upgrade() {
cat << 'EOM'
==>
==> PLEASE NOTE:
==> Extended configuration options for NFS are now available in
==> /etc/conf.d/nfs.
==> If /etc/conf.d/nfsd remains on your system from an earlier
==> installation, transfer its settings to /etc/conf.d/nfs and
==> delete it.
==>
==> Please refer to http://wiki.archlinux.org/index.php/Nfs
==> for further information.
==>
EOM
}
op=$1
shift
$op $*
|