# 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(<MOUNT>) {
+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 <<eomsg;
Now, get tokens as $admin in the $cell cell. Then, run
+openafs (1.0.4-2) unstable; urgency=low
+
+ * Fix modversions and athlon memcpy mmx bug, closes: #91925
+ * Fix openafs-client to fail rather than starting a useless afsd if we don't have any db servers
+ * If AFS client fails to start for afs-newcell, then complain, closes: #98303
+ * New CellServDB
+ * Fix module builds on non-i386, closes: #100939
+
+ -- Sam Hartman <hartmans@debian.org> Sun, 17 Jun 2001 01:22:37 -0400
+
openafs (1.0.4-1) unstable; urgency=low
* New upstream version, closes: #92776