summaryrefslogtreecommitdiffstats
path: root/abs/core-testing/nfs-utils/start-statd.patch
blob: aaed93e3934797ac5cb1afbc236e9ed6f90db498 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
--- utils/statd/start-statd	2007-05-11 04:40:57.000000000 +0100
+++ utils/statd/start-statd.new	2007-09-21 17:11:34.000000000 +0100
@@ -1,9 +1,16 @@
 #!/bin/sh
+
+# Original script provided by the NFS project
+# Modified for Arch Linux by Tom Killian
+
 # nfsmount calls this script when mounting a filesystem with locking
 # enabled, but when statd does not seem to be running (based on
 # /var/run/rpc.statd.pid).
 # It should run run statd with whatever flags are apropriate for this
 # site.
-PATH=/sbin:/usr/sbin
-exec rpc.statd --no-notify
+
+# source application-specific settings
+[ -f /etc/conf.d/nfs ] && . /etc/conf.d/nfs
+
+exec /usr/sbin/rpc.statd $STATD_OPTS