From: Sam Hartman Date: Sun, 17 Jun 2001 05:23:22 +0000 (+0000) Subject: document changes X-Git-Tag: debian/1.0.4-2 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=e79d29d6b57f6b1d82b75bcd7c19c6e31bca0efb;p=packages%2Fo%2Fopenafs.git document changes --- diff --git a/debian/afs-newcell b/debian/afs-newcell index ae349021e..92f6d9d6c 100644 --- a/debian/afs-newcell +++ b/debian/afs-newcell @@ -157,6 +157,18 @@ run("vos create $server a root.afs -localauth"); # bring up client run("echo $cell >/etc/openafs/ThisCell"); run("/etc/init.d/openafs-client force-start"); +my $afs_running = 0; +open(MOUNT, "mount |") or die "Failed to run mount: $!\n"; +while() { +if(m:^AFS:) { + $afs_running = 1; +} + } +unless ($afs_running) { +print "The AFS client failed to start.\n"; +print "Please fix whatever problem kept it from running."; + exit(1); +} print < Sun, 17 Jun 2001 01:22:37 -0400 + openafs (1.0.4-1) unstable; urgency=low * New upstream version, closes: #92776