mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-01-23 18:14:54 +08:00
fix missing file
This commit is contained in:
parent
e4c1024a3f
commit
1b934e7e9c
@ -6,7 +6,7 @@
|
||||
|
||||
pkgname=nfs-utils
|
||||
pkgver=1.2.6
|
||||
pkgrel=2
|
||||
pkgrel=3
|
||||
pkgdesc="Support programs for Network File Systems"
|
||||
arch=('x86_64')
|
||||
url='http://nfs.sourceforge.net'
|
||||
@ -21,7 +21,8 @@ source=("http://downloads.sourceforge.net/project/nfs/${pkgname}/${pkgver}/${pkg
|
||||
'start-statd.patch'
|
||||
'nfs-utils-1.1.4-mtab-sym.patch'
|
||||
'nfs-utils-1.1.4-no-exec.patch'
|
||||
'nfs'
|
||||
'nfs-common.conf'
|
||||
'nfs-server.conf'
|
||||
'rpc-gssd.service'
|
||||
'rpc-mountd.service'
|
||||
'rpc-svcgssd.service'
|
||||
@ -38,7 +39,8 @@ md5sums=('8be543ca270c2234ff18f8c8d35e0d37'
|
||||
'e9144277a89a620d9bc80413158a7d27'
|
||||
'7674106eaaa4c149bccd4f05fe3604e9'
|
||||
'4f4827dfc93008dfadd0a530ad0872b2'
|
||||
'0d66dfb5c28def50c390e994642036ae'
|
||||
'f73f197a16b02c3e248488ec35c4cf43'
|
||||
'2bf71def3263325643a09458635520f0'
|
||||
'3694619813cebc5b4502b58f1992b442'
|
||||
'965311784d49a7d126d512cadbe91deb'
|
||||
'e05705d9ccccaeaeb1ecaee20adc05bc'
|
||||
@ -74,7 +76,8 @@ package() {
|
||||
# Configuration
|
||||
install -D -m 644 ../exports "$pkgdir/"etc/exports
|
||||
install -D -m 644 ../idmapd.conf "$pkgdir/"etc/idmapd.conf
|
||||
install -D -m 644 ../nfs "$pkgdir/"etc/conf.d/nfs
|
||||
install -D -m 644 ../nfs-server.conf "$pkgdir/"etc/conf.d/nfs-server.conf
|
||||
install -D -m 644 ../nfs-common.conf "$pkgdir/"etc/conf.d/nfs-common.conf
|
||||
install -D -m 644 utils/mount/nfsmount.conf "$pkgdir/"etc/nfsmount.conf
|
||||
# systemd files
|
||||
for i in ${srcdir}/*.{service,mount}; do
|
||||
|
@ -1,40 +0,0 @@
|
||||
#
|
||||
# Optinal options passed to rquotad
|
||||
RPCRQUOTADOPTS=""
|
||||
#
|
||||
# Optional arguments passed to in-kernel lockd
|
||||
#LOCKDARG=
|
||||
# TCP port rpc.lockd should listen on.
|
||||
#LOCKD_TCPPORT=32803
|
||||
# UDP port rpc.lockd should listen on.
|
||||
#LOCKD_UDPPORT=32769
|
||||
#
|
||||
# Optional arguments passed to rpc.nfsd. See rpc.nfsd(8)
|
||||
RPCNFSDARGS=""
|
||||
# Number of nfs server processes to be started.
|
||||
# The default is 8.
|
||||
RPCNFSDCOUNT=8
|
||||
# Set V4 grace period in seconds
|
||||
#NFSD_V4_GRACE=90
|
||||
#
|
||||
# Optional arguments passed to rpc.mountd. See rpc.mountd(8)
|
||||
RPCMOUNTDOPTS=""
|
||||
#
|
||||
# Optional arguments passed to rpc.statd. See rpc.statd(8)
|
||||
STATDARG=""
|
||||
#
|
||||
# Optional arguments passed to rpc.idmapd. See rpc.idmapd(8)
|
||||
RPCIDMAPDARGS=""
|
||||
#
|
||||
# Optional arguments passed to rpc.gssd. See rpc.gssd(8)
|
||||
RPCGSSDARGS=""
|
||||
#
|
||||
# Optional arguments passed to rpc.svcgssd. See rpc.svcgssd(8)
|
||||
RPCSVCGSSDARGS=""
|
||||
#
|
||||
# To enable RDMA support on the server by setting this to
|
||||
# the port the server should listen on
|
||||
#RDMA_PORT=20049
|
||||
#
|
||||
# Optional arguments passed to blkmapd. See blkmapd(8)
|
||||
BLKMAPDARGS=""
|
40
nfs-utils/nfs-common.conf
Normal file
40
nfs-utils/nfs-common.conf
Normal file
@ -0,0 +1,40 @@
|
||||
# Parameters to be passed to nfs-common (nfs clients & server) init script.
|
||||
#
|
||||
|
||||
# If you do not set values for the NEED_ options, they will be attempted
|
||||
# autodetected; this should be sufficient for most people. Valid alternatives
|
||||
# for the NEED_ options are "yes" and "no".
|
||||
|
||||
# Do you want to start the statd daemon? It is not needed for NFSv4.
|
||||
NEED_STATD=""
|
||||
|
||||
# Options to pass to rpc.statd.
|
||||
# See rpc.statd(8) for more details.
|
||||
# N.B. statd normally runs on both client and server, and run-time
|
||||
# options should be specified accordingly.
|
||||
# STATD_OPTS="-p 32765 -o 32766"
|
||||
STATD_OPTS=""
|
||||
|
||||
# Options to pass to sm-notify
|
||||
# e.g. SMNOTIFY_OPTS="-p 32764"
|
||||
SMNOTIFY_OPTS=""
|
||||
|
||||
# Do you want to start the idmapd daemon? It is only needed for NFSv4.
|
||||
NEED_IDMAPD=""
|
||||
|
||||
# Options to pass to rpc.idmapd.
|
||||
# See rpc.idmapd(8) for more details.
|
||||
IDMAPD_OPTS=""
|
||||
|
||||
# Do you want to start the gssd daemon? It is required for Kerberos mounts.
|
||||
NEED_GSSD=""
|
||||
|
||||
# Options to pass to rpc.gssd.
|
||||
# See rpc.gssd(8) for more details.
|
||||
GSSD_OPTS=""
|
||||
|
||||
# Where to mount rpc_pipefs filesystem; the default is "/var/lib/nfs/rpc_pipefs".
|
||||
PIPEFS_MOUNTPOINT=""
|
||||
|
||||
# Options used to mount rpc_pipefs filesystem; the default is "defaults".
|
||||
PIPEFS_MOUNTOPTS=""
|
29
nfs-utils/nfs-server.conf
Normal file
29
nfs-utils/nfs-server.conf
Normal file
@ -0,0 +1,29 @@
|
||||
# Parameters to be passed to nfs-server init script.
|
||||
#
|
||||
|
||||
# Options to pass to rpc.nfsd.
|
||||
# See rpc.nfsd(8) for more details.
|
||||
NFSD_OPTS=""
|
||||
|
||||
# Number of servers to start up; the default is 8 servers.
|
||||
NFSD_COUNT=""
|
||||
|
||||
# Where to mount nfsd filesystem; the default is "/proc/fs/nfsd".
|
||||
PROCNFSD_MOUNTPOINT=""
|
||||
|
||||
# Options used to mount nfsd filesystem; the default is "rw,nodev,noexec,nosuid".
|
||||
PROCNFSD_MOUNTOPTS=""
|
||||
|
||||
# Options for rpc.mountd.
|
||||
# If you have a port-based firewall, you might want to set up
|
||||
# a fixed port here using the --port option.
|
||||
# See rpc.mountd(8) for more details.
|
||||
MOUNTD_OPTS="--no-nfs-version 2"
|
||||
|
||||
# Do you want to start the svcgssd daemon? It is only required for Kerberos
|
||||
# exports. Valid alternatives are "yes" and "no"; the default is "no".
|
||||
NEED_SVCGSSD=""
|
||||
|
||||
# Options to pass to rpc.svcgssd.
|
||||
# See rpc.svcgssd(8) for more details.
|
||||
SVCGSSD_OPTS=""
|
Loading…
Reference in New Issue
Block a user