diff options
author | Ben Collins <bcollins@debian.org> | 1999-10-18 01:59:05 +0000 |
---|---|---|
committer | Ben Collins <bcollins@debian.org> | 1999-10-18 01:59:05 +0000 |
commit | 21a3526cacdc0b7642fe64dba4a4f5a01a1be5f6 (patch) | |
tree | 36406a6b3577e4e9f184f8b059741f0047b1cf25 /methods | |
parent | 59a1f605fd989a4b52fb15b11ec0cd70505bea5f (diff) | |
download | dpkg-21a3526cacdc0b7642fe64dba4a4f5a01a1be5f6.tar.gz |
* Removed references to dpkg(5) which seems to not exist anymore
* Fixed `dpkg-deb --help' and dpkg-deb(1) from reporting --no-check
when it's actually --nocheck (went with the hardcoded option, so
this is just a documentation fix).
* Added better check in disk.setup for a working NFS server. Makes
it compatible with other non-Linux servers.
* Corrected dpkg(8)'s example of using dpkg -i (showed it used with
a .tar.gz instead of a .deb)
* Applied patch to correct improper TMPDIR handling in dpkg-deb
* When encountering an error in extracting the tar archives in the
packages, we should abort the install, not simply give an error
and continue.
* Make dpkg give the builtin arch if there was an error while exec()'ing
the C compiler with --print-architecture. We still fail if the
output from gcc was bad in some way, since they may be of importance.
Diffstat (limited to 'methods')
-rw-r--r-- | methods/disk.setup | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/methods/disk.setup b/methods/disk.setup index f7113cd3d..0a9638a13 100644 --- a/methods/disk.setup +++ b/methods/disk.setup @@ -236,7 +236,7 @@ then if [ -z "$response" ]; then continue; fi if [ -x /usr/bin/rpcinfo ] then - if rpcinfo -u "$response" mountd >/dev/null + if rpcinfo -u "$response" mountd | grep -q 'ready' then nfsserver="$response" else |