]> git.michaelhowe.org Git - packages/o/openafs.git/commitdiff
Fix the sample CellServDB entry output by afs-newcell
authorRuss Allbery <rra@debian.org>
Fri, 10 Sep 2010 17:28:00 +0000 (10:28 -0700)
committerRuss Allbery <rra@debian.org>
Fri, 10 Sep 2010 17:28:00 +0000 (10:28 -0700)
* Fix the sample CellServDB entry printed by afs-newcell if the cell
  isn't found in /etc/openafs/CellServDB to include the correct server
  syntax.  Thanks, Peter Palfrader.

debian/afs-newcell
debian/changelog

index 218dd250aa00cb1c1be4ddeec0e4600099dd73e1..b58d3a9ea5d3b0ee6160e80a7274dcca7965237e 100755 (executable)
@@ -175,7 +175,7 @@ unless ($found) {
     print "The new cell $cell is not configured in /etc/openafs/CellServDB\n";
     print "Add configuration like:\n\n";
     print ">$cell\n";
-    print inet_ntoa($ip), "\n\n";
+    print inet_ntoa($ip), "\t\t\t#$server\n\n";
     print "to that file before continuing.\n";
     exit(1);
 }
index 10030db3c84d6cab7c7207068b1cc811faad4fe1..71a6e61e516b1ee2d4120aa418ef328189ce663b 100644 (file)
@@ -9,6 +9,9 @@ openafs (1.5.75-3) UNRELEASED; urgency=low
   * Add a dependency on libc6-dev to openafs-modules-dkms.  dkms doesn't
     depend on it because most kernel modules don't need it, but openafs
     builds userspace helper programs.  Thanks, Peter Palfrader.
+  * Fix the sample CellServDB entry printed by afs-newcell if the cell
+    isn't found in /etc/openafs/CellServDB to include the correct server
+    syntax.  Thanks, Peter Palfrader.
   * Run the DKMS build commands in a subshell to work around a DKMS bug
     that caused the module build logs to be discarded.  (LP: #593509)
   * Add a status command to the openafs-fileserver init script.