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 | |
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)
-rw-r--r-- | initscripts.spec | 5 | ||||
-rwxr-xr-x | rc.d/init.d/netfs | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/initscripts.spec b/initscripts.spec index 8f218eb0..5b94f9e8 100644 --- a/initscripts.spec +++ b/initscripts.spec @@ -1,6 +1,6 @@ Summary: The inittab file and the /etc/init.d scripts Name: initscripts -Version: 8.54 +Version: 8.54.1 License: GPL Group: System Environment/Base Release: 1 @@ -203,6 +203,9 @@ rm -rf $RPM_BUILD_ROOT %ghost %attr(0664,root,utmp) /var/run/utmp %changelog +* Mon Jun 25 2007 Bill Nottingham <notting@redhat.com> 8.54.1-1 +- netfs: check for rpcbind, not portmap (#245595) + * Tue May 15 2007 Bill Nottingham <notting@redhat.com> 8.54-1 - translation updates: as, bg, cs, ja, ms - redirect bogus errors from cryptsetup to /dev/null <karsten@redhat.com> 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 |