~ubuntu-branches/debian/experimental/nfs-utils/experimental

« back to all changes in this revision

Viewing changes to debian/nfs-kernel-server.init

  • Committer: Bazaar Package Importer
  • Author(s): Anibal Monsalve Salazar
  • Date: 2006-07-08 14:26:40 UTC
  • mfrom: (1.2.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20060708142640-r171kjj2a13gy2kz
Tags: 1:1.0.9-1
* Updated co-mantainer mail address.
* New upstream release.
  - Added 'mount.nfs' utility which can be used as a mount helper
    to mount nfs filesystems. It does not yet support 'user' mounts.
  - Makefile/autoconf tidyups
  - No compiles with no warnings
  - deleted debian/* at request of debian maintainer
  - deleted assorted other unused files
  - mountd can be run multi-threaded for configurations with many hundreds
    of clients (mountd -t 20).  Default is single-threaded
  - Support for selection NFS version to be exported, and protocol to
    use.  This requires kernel patches that should be in linux 2.6.19.
  - Use 65534 rather than -2 for default anon.  This makes no difference in many
    cases, but is important in some.
  - New utility 'rpcdebug' for controlled kernel 'debug' options for nfs and nfsd.
  - nfsstat reports NFSv4 operation statistics that should be available in
    linux 2.6.18.
  - assorted other fixes

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/bin/sh
2
 
#
3
 
# nfs-kernel-server
4
 
#               This shell script takes care of starting and stopping
5
 
#               the kernel-mode NFS server.
6
 
#
7
 
# chkconfig: 345 60 20
8
 
# description: NFS is a popular protocol for file sharing across TCP/IP \
9
 
#              networks. This service provides NFS server functionality, \
10
 
#              which is configured via the /etc/exports file.
11
 
#
 
2
 
 
3
### BEGIN INIT INFO
 
4
# Provides:          nfs-kernel-server
 
5
# Required-Start:    $portmap $time
 
6
# Default-Start:     2 3 4 5
 
7
# Default-Stop:      0 1 6
 
8
# Short-Description: Kernel NFS server support
 
9
# Description:       NFS is a popular protocol for file sharing across
 
10
#                    TCP/IP networks. This service provides NFS server
 
11
#                    functionality, which is configured via the
 
12
#                    /etc/exports file.
 
13
### END INIT INFO
12
14
 
13
15
# What is this?
14
16
DESC="NFS kernel daemon"