diff options
author | Bill Nottingham <notting@redhat.com> | 2007-06-25 16:41:27 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2007-06-25 16:41:27 +0000 |
commit | c7b0808128de88d189bcae7559fbf7422055121d (patch) | |
tree | d512cc7ef0cd5aaa84367de1379a5fa3e387743c /rc.d/init.d | |
parent | 1a07ba3a7328be14f68bcbdbb2489371e884f5fa (diff) | |
download | initscripts-c7b0808128de88d189bcae7559fbf7422055121d.tar initscripts-c7b0808128de88d189bcae7559fbf7422055121d.tar.gz initscripts-c7b0808128de88d189bcae7559fbf7422055121d.tar.bz2 initscripts-c7b0808128de88d189bcae7559fbf7422055121d.tar.xz initscripts-c7b0808128de88d189bcae7559fbf7422055121d.zip |
- netfs: check for rpcbind, not portmap (#245595)
Diffstat (limited to 'rc.d/init.d')
-rwxr-xr-x | rc.d/init.d/netfs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rc.d/init.d/netfs b/rc.d/init.d/netfs index 105b97f9..48385930 100755 --- a/rc.d/init.d/netfs +++ b/rc.d/init.d/netfs @@ -37,7 +37,7 @@ case "$1" in start) [ -n "$NFSFSTAB" ] && { - [ ! -f /var/lock/subsys/portmap ] && service portmap start + [ ! -f /var/lock/subsys/rpcbind ] && service rpcbind start action $"Mounting NFS filesystems: " mount -a -t nfs,nfs4 } [ -n "$SMBFSTAB" ] && action $"Mounting SMB filesystems: " mount -a -t smbfs |