Marcus Meissner
cf31e61dcd
Copy from home:neilbrown:branches:Base:System/nfs-utils via accept of submit request 24935 revision 2. Request was accepted with message: ok OBS-URL: https://build.opensuse.org/request/show/24935 OBS-URL: https://build.opensuse.org/package/show/Base:System/nfs-utils?expand=0&rev=6
13 lines
435 B
Bash
13 lines
435 B
Bash
#!/bin/sh -p
|
|
# 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:/bin:/usr/bin
|
|
rpc.statd --no-notify
|
|
# in case firewall needs to punch a hole for the
|
|
# statd port...
|
|
/etc/init.d/SuSEfirewall2_setup try-restart > /dev/null 2>&1
|
|
|