Index: openafs/doc/LICENSE
diff -c openafs/doc/LICENSE:1.2 openafs/doc/LICENSE:1.3
*** openafs/doc/LICENSE:1.2	Sun Apr  3 15:30:15 2005
--- openafs/doc/LICENSE	Mon Feb 27 15:17:21 2006
***************
*** 690,692 ****
--- 690,694 ----
   * 2550 Garcia Avenue
   * Mountain View, California  94043
   */
+ 
+ src/afs/LINUX/osi_flush.s included code under IBM Public License with permission of the author, Paul MacKerras.
Index: openafs/doc/man-pages/README
diff -c openafs/doc/man-pages/README:1.5 openafs/doc/man-pages/README:1.8
*** openafs/doc/man-pages/README:1.5	Wed Jan 25 00:59:38 2006
--- openafs/doc/man-pages/README	Thu Mar 23 00:41:02 2006
***************
*** 237,247 ****
       default and says that the system must be rebooted after shutdown,
       which isn't the case at least on Linux.
  
-    * All of the paths in the man pages are the Transarc paths.  I'm not
-      sure how best to deal with the possibility of installing OpenAFS in
-      multiple different paths, but it would be good to at least
-      acknowledge the issue.
- 
     * bos listkeys and the KeyFile man page assume that you're using the
       kaserver.
  
--- 237,242 ----
***************
*** 266,271 ****
--- 261,299 ----
     * The aklog man page isn't in POD.  (Neither is the mpp man page, but
       I don't think we care about it and it's not currently installed.)
  
+    * In the suite introduction pages (pts, vos, etc.), each of the
+      subcommands in the initial list should be a link to the relevant
+      page in the HTML output.  This has been done for the fs intro page
+      and the same transform needs to be applied to the other pages.  See
+      the fs intro page for the details.
+ 
+    * The references to the other OpenAFS manuals, such as the Quick Start
+      guide and the Admin Guide, should be links, probably to the documents
+      on openafs.org.
+ 
+    * There's no mention of the Kerberos v5 support.  At least, we need
+      some disclaimers under klog and friends talking about sites without
+      kaserver (and possibly without fakeka), and deprecation warnings
+      on the .krb varient commands.
+ 
+    * We need a way to add links to other man pages (kinit most notably)
+      without creating dangling links in the HTML output.  This probably
+      means that the HTML conversion script needs to generate at startup
+      a list of all valid man page link targets and not linkify the ones
+      that don't match a valid target.
+ 
+    * Provide a way to substitute the correct paths into the HTML output
+      from Autoconf results.
+ 
+    * Currently, the man pages are built by regen.sh, which is somewhat
+      annoying since it takes a long time.  Figure out how better to do this
+      during the release process so that end users don't have to have
+      pod2man.
+ 
+    * Review the sections used for all man pages against what directories
+      the commands are installed into.  (In some cases, it may be better to
+      change the directory than the section of the man page.)
+ 
    If you notice other problems, please send them to the openafs-doc list
    even if you don't have time to fix them.  Someone else might, and we
    want to track all of the issues.
Index: openafs/doc/man-pages/generate-html
diff -c openafs/doc/man-pages/generate-html:1.1 openafs/doc/man-pages/generate-html:1.2
*** openafs/doc/man-pages/generate-html:1.1	Wed Jan 25 00:59:38 2006
--- openafs/doc/man-pages/generate-html	Tue Feb 28 18:43:03 2006
***************
*** 9,15 ****
  
  sub do_man_link {
      my ($self, $token) = @_;
!     my $page = $token->attr('to');
      my ($name, $section) = ($page =~ /^([^\(]+)\((\d+)\)$/);
      return unless $name;
      my @url = ('..', $section, $name);
--- 9,15 ----
  
  sub do_man_link {
      my ($self, $token) = @_;
!     my $page = $token->attr ('to');
      my ($name, $section) = ($page =~ /^([^\(]+)\((\d+)\)$/);
      return unless $name;
      my @url = ('..', $section, $name);
***************
*** 17,23 ****
          . $Pod::Simple::HTML::HTML_EXTENSION;
  }
  
! sub VERSION () { '1.0' }
  
  $Pod::Simple::HTML::Tagmap{'item-bullet'} = '<li><p>';
  $Pod::Simple::HTML::Tagmap{'/item-bullet'} = '</p></li>';
--- 17,36 ----
          . $Pod::Simple::HTML::HTML_EXTENSION;
  }
  
! # Underscore isn't allowed in man page names in Pod::Simple 3.04, so links
! # like L<fs_setacl(8)> show up as POD links.  Discover that case and dispatch
! # everything else to the standard do_pod_link implementation.
! sub do_pod_link {
!     my ($self, $token) = @_;
!     my $target = $token->attr ('to');
!     if ($target && $target =~ /^([^\s\(]+)\((\d+)\)$/) {
!         return $self->do_man_link ($token);
!     } else {
!         return $self->SUPER::do_pod_link ($token);
!     }
! }
! 
! sub VERSION () { '1.1' }
  
  $Pod::Simple::HTML::Tagmap{'item-bullet'} = '<li><p>';
  $Pod::Simple::HTML::Tagmap{'/item-bullet'} = '</p></li>';
Index: openafs/doc/man-pages/generate-man
diff -c openafs/doc/man-pages/generate-man:1.1 openafs/doc/man-pages/generate-man:1.2
*** openafs/doc/man-pages/generate-man:1.1	Tue Dec 20 19:37:17 2005
--- openafs/doc/man-pages/generate-man	Wed Mar  8 15:05:59 2006
***************
*** 13,23 ****
      exit 1
  fi
  
! if ! pod2man pod1/afs.pod > /dev/null ; then
      echo 'pod2man not found, skipping man page generation' >&2
      exit 1
  fi
! if ! perl -e 'use Pod::Man 2.04' > /dev/null 2>&1 ; then
      echo 'Pod::Man is older than the recommended version of 2.04 or later' >&2
      echo 'Continuing with man page generation anyway' >&2
  fi
--- 13,27 ----
      exit 1
  fi
  
! if pod2man pod1/afs.pod > /dev/null ; then
!     :
! else
      echo 'pod2man not found, skipping man page generation' >&2
      exit 1
  fi
! if perl -e 'use Pod::Man 2.04' > /dev/null 2>&1 ; then
!     :
! else
      echo 'Pod::Man is older than the recommended version of 2.04 or later' >&2
      echo 'Continuing with man page generation anyway' >&2
  fi
Index: openafs/doc/man-pages/style.css
diff -c openafs/doc/man-pages/style.css:1.1 openafs/doc/man-pages/style.css:1.3
*** openafs/doc/man-pages/style.css:1.1	Wed Jan 25 00:59:38 2006
--- openafs/doc/man-pages/style.css	Wed Mar  1 00:02:29 2006
***************
*** 17,30 ****
  @media screen, tty, tv, projection {
    .noscreen { display: none; }
  
!   a:link    { color: #7070ff; text-decoration: underline; }
!   a:visited { color: #e030ff; text-decoration: underline; }
!   a:active  { color: #800000; text-decoration: underline; }
!   body.contentspage a            { text-decoration: none; }
    a.u { color: #000 !important; text-decoration: none; }
  
    body.pod {
!     margin: 0 5px;
      color:            #000;
      background-color: #fff;
    }
--- 17,31 ----
  @media screen, tty, tv, projection {
    .noscreen { display: none; }
  
!   a:link                      { text-decoration: none; }
!   a:visited                   { text-decoration: none; }
!   a:active                    { text-decoration: none; }
!   a:hover   { background: #fec; text-decoration: none; }
!   body.contentspage a         { text-decoration: none; }
    a.u { color: #000 !important; text-decoration: none; }
  
    body.pod {
!     margin:           0 5px;
      color:            #000;
      background-color: #fff;
    }
***************
*** 52,78 ****
    body.pod h3 { margin-left: 1em }
    body.pod h4 { margin-left: 1em }
  
    body.contentspage {
      color:            #000;
      background-color: #fff;
    }
    
    body.contentspage h1  {
!     color: #22f;
!     margin-left: 1em;
!     margin-right: 1em;
!     text-indent: -.9em;
!     font-family: Tahoma, Verdana, Helvetica, Arial, sans-serif;
!     font-weight: normal;
      border-top:    medium solid #000;
      border-bottom: medium solid #000;
!     text-align: center;
    }
  
    body.contentspage th {
!     font-weight: bold;
!     font-size: large;
!     text-align: left;
    }
  
    body.contentspage td { padding: 0 0.5em; }
--- 53,82 ----
    body.pod h3 { margin-left: 1em }
    body.pod h4 { margin-left: 1em }
  
+   /* Special handling for the synopsis section to outdent the first line. */
+   body.pod .synopsis { padding-left: 2em; text-indent: -2em; }
+ 
    body.contentspage {
      color:            #000;
      background-color: #fff;
    }
    
    body.contentspage h1  {
!     color:         #000;
!     margin-left:   1em;
!     margin-right:  1em;
!     text-indent:   -.9em;
!     font-family:   Tahoma, Verdana, Helvetica, Arial, sans-serif;
!     font-weight:   normal;
      border-top:    medium solid #000;
      border-bottom: medium solid #000;
!     text-align:    center;
    }
  
    body.contentspage th {
!     font-weight:   bold;
!     font-size:     large;
!     text-align:    left;
    }
  
    body.contentspage td { padding: 0 0.5em; }
Index: openafs/doc/man-pages/pod1/afs.pod
diff -c openafs/doc/man-pages/pod1/afs.pod:1.4 openafs/doc/man-pages/pod1/afs.pod:1.5
*** openafs/doc/man-pages/pod1/afs.pod:1.4	Wed Jan 25 00:59:39 2006
--- openafs/doc/man-pages/pod1/afs.pod	Mon Feb 27 15:46:25 2006
***************
*** 547,554 ****
  L<volserver(8)>,
  L<vos(1)>,
  L<xfs_size_check(8)>,
! L<xstat_cm_test(8)>,
! L<xstat_fs_test(8)>
  
  =head1 COPYRIGHT
  
--- 547,554 ----
  L<volserver(8)>,
  L<vos(1)>,
  L<xfs_size_check(8)>,
! L<xstat_cm_test(1)>,
! L<xstat_fs_test(1)>
  
  =head1 COPYRIGHT
  
Index: openafs/doc/man-pages/pod1/afsmonitor.pod
diff -c openafs/doc/man-pages/pod1/afsmonitor.pod:1.3 openafs/doc/man-pages/pod1/afsmonitor.pod:1.5
*** openafs/doc/man-pages/pod1/afsmonitor.pod:1.3	Tue Dec 20 19:41:17 2005
--- openafs/doc/man-pages/pod1/afsmonitor.pod	Wed Mar  1 00:02:29 2006
***************
*** 2,24 ****
  
  afsmonitor - Monitors File Servers and Cache Managers
  
! =head1 DESCRIPTION
  
  B<afsmonitor> [B<initcmd>] [-config <I<configuration file>>]
!     [B<-frequency> <I<poll frequency, in seconds>>]
!     [B<-output> <I<storage file name>>] [B<-detailed>]
!     [B<-debug> <I<debug output file>>]
!     [B<-fshosts> <I<list of file servers to monitor>>+]
!     [B<-cmhosts> <I<list of cache managers to monitor>>+]
!     [B<-buffers> <I<number of buffer slots>>] [B<-help>]
  
  B<afsmonitor> [B<i>]  [-co <I<configuration file>>]
!     [B<-fr> <I<poll frequency, in seconds>>]
!     [B<-o> <I<storage file name>>] [B<-det>]
!     [B<-deb> <I<debug output file>>]
!     [B<-fs> <I<list of file servers to monitor>>+]
!     [B<-cm> <I<list of cache managers to monitor>>+]
!     [B<-b> <I<number of buffer slots>>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 2,30 ----
  
  afsmonitor - Monitors File Servers and Cache Managers
  
! =head1 SYNOPSIS
! 
! =for html
! <div class="synopsis">
  
  B<afsmonitor> [B<initcmd>] [-config <I<configuration file>>]
!     S<<< [B<-frequency> <I<poll frequency, in seconds>>] >>>
!     S<<< [B<-output> <I<storage file name>>] >>> [B<-detailed>]
!     S<<< [B<-debug> <I<debug output file>>] >>>
!     S<<< [B<-fshosts> <I<list of file servers to monitor>>+] >>>
!     S<<< [B<-cmhosts> <I<list of cache managers to monitor>>+] >>>
!     S<<< [B<-buffers> <I<number of buffer slots>>] >>> [B<-help>]
  
  B<afsmonitor> [B<i>]  [-co <I<configuration file>>]
!     S<<< [B<-fr> <I<poll frequency, in seconds>>] >>>
!     S<<< [B<-o> <I<storage file name>>] >>> [B<-det>]
!     S<<< [B<-deb> <I<debug output file>>] >>>
!     S<<< [B<-fs> <I<list of file servers to monitor>>+] >>>
!     S<<< [B<-cm> <I<list of cache managers to monitor>>+] >>>
!     S<<< [B<-b> <I<number of buffer slots>>] >>> [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod1/cmdebug.pod
diff -c openafs/doc/man-pages/pod1/cmdebug.pod:1.1 openafs/doc/man-pages/pod1/cmdebug.pod:1.2
*** openafs/doc/man-pages/pod1/cmdebug.pod:1.1	Tue Dec 27 18:30:22 2005
--- openafs/doc/man-pages/pod1/cmdebug.pod	Wed Mar  1 00:02:29 2006
***************
*** 4,15 ****
  
  =head1 SYNOPSIS
  
! B<cmdebug> B<-servers> <I<machine>> [B<-port> <I<IP port>>]
      [B<-long>] [B<-refcounts>] [B<-callbacks>] [B<-addrs>] [B<-cache>]
  
! B<cmdebug> B<-s> <I<machine>> [B<-p> <I<IP port>>] [B<-l>] [B<-r>] [B<-c>]
      [B<-a>] [B<-h>]
  
  =head1 DESCRIPTION
  
  The B<cmdebug> command displays information about the Cache Manager and
--- 4,21 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<cmdebug> S<<< B<-servers> <I<machine>> >>> S<<< [B<-port> <I<IP port>>] >>>
      [B<-long>] [B<-refcounts>] [B<-callbacks>] [B<-addrs>] [B<-cache>]
  
! B<cmdebug> S<<< B<-s> <I<machine>> >>> S<<< [B<-p> <I<IP port>>] >>> [B<-l>] [B<-r>] [B<-c>]
      [B<-a>] [B<-h>]
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The B<cmdebug> command displays information about the Cache Manager and
Index: openafs/doc/man-pages/pod1/dlog.pod
diff -c openafs/doc/man-pages/pod1/dlog.pod:1.3 openafs/doc/man-pages/pod1/dlog.pod:1.4
*** openafs/doc/man-pages/pod1/dlog.pod:1.3	Tue Dec 20 19:41:17 2005
--- openafs/doc/man-pages/pod1/dlog.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,21 ****
  
  =head1 SYNOPSIS
  
! B<dlog> [B<-principal> <I<user name>>] [B<-cell> <I<cell name>>]
!     [B<-password> <I<user's password>>]
!     [B<-servers> <I<explicit list of servers>>+]
!     [B<-lifetime> <I<ticket lifetime in hh[:mm[:ss]]>>]
      [B<-setpag>] [B<-pipe>] [B<-help>]
  
! B<dlog> [B<-pr> <I<user name>>] [B<-c> <I<cell name>>]
!     [B<-pw> <I<user's password>>]
!     [B<-ser> <I<explicit list of servers>>+]
!     [B<-l> <I<ticket lifetime in hh[:mm[:ss]]>>]
      [B<-set>] [B<-pi>] [B<-h>]
  
  =head1 DESCRIPTION
  
  The B<dlog> command obtains DCE credentials for the issuer from the DCE
--- 4,27 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<dlog> S<<< [B<-principal> <I<user name>>] >>> S<<< [B<-cell> <I<cell name>>] >>>
!     S<<< [B<-password> <I<user's password>>] >>>
!     S<<< [B<-servers> <I<explicit list of servers>>+] >>>
!     S<<< [B<-lifetime> <I<ticket lifetime in hh[:mm[:ss]]>>] >>>
      [B<-setpag>] [B<-pipe>] [B<-help>]
  
! B<dlog> S<<< [B<-pr> <I<user name>>] >>> S<<< [B<-c> <I<cell name>>] >>>
!     S<<< [B<-pw> <I<user's password>>] >>>
!     S<<< [B<-ser> <I<explicit list of servers>>+] >>>
!     S<<< [B<-l> <I<ticket lifetime in hh[:mm[:ss]]>>] >>>
      [B<-set>] [B<-pi>] [B<-h>]
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The B<dlog> command obtains DCE credentials for the issuer from the DCE
Index: openafs/doc/man-pages/pod1/dpass.pod
diff -c openafs/doc/man-pages/pod1/dpass.pod:1.3 openafs/doc/man-pages/pod1/dpass.pod:1.4
*** openafs/doc/man-pages/pod1/dpass.pod:1.3	Tue Dec 20 19:41:17 2005
--- openafs/doc/man-pages/pod1/dpass.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,12 ****
  
  =head1 SYNOPSIS
  
! B<dpass> [B<-cell> <I<original AFS cell name>>] [B<-help>]
  
! B<dpass> [B<-c> <I<original AFS cell name>>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,18 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<dpass> S<<< [B<-cell> <I<original AFS cell name>>] >>> [B<-help>]
! 
! B<dpass> S<<< [B<-c> <I<original AFS cell name>>] >>> [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod1/fs.pod
diff -c openafs/doc/man-pages/pod1/fs.pod:1.3 openafs/doc/man-pages/pod1/fs.pod:1.4
*** openafs/doc/man-pages/pod1/fs.pod:1.3	Tue Dec 13 20:30:20 2005
--- openafs/doc/man-pages/pod1/fs.pod	Tue Feb 28 18:43:03 2006
***************
*** 16,61 ****
  =item *
  
  Commands to set and report how the Cache Manager interacts with server
! machines: B<fs checkservers>, B<fs getcellstatus>, B<fs getserverprefs>,
! B<fs listcells>, B<fs newcell>, B<fs setcell>, B<fs setserverprefs>, B<fs
! sysname>, and B<fs wscell>.
  
  =item *
  
! Commands to administer access control lists (ACLs): B<fs cleanacl>, B<fs
! copyacl>, B<fs listacl>, and B<fs setacl>.
  
  =item *
  
  Commands to administer server machines, volumes or partitions that house a
! given file or directory: B<fs diskfree>, B<fs examine>, B<fs listquota>,
! B<fs quota>, B<fs setquota>, B<fs setvol>, B<fs whereis>, and B<fs
! whichcell>.
  
  =item *
  
  Commands to administer the local client cache and related information:
! B<fs checkvolumes>, B<fs flush>, B<fs flushvolume>, B<fs getcacheparms>,
! and B<fs setcachesize>.
  
  =item *
  
! Commands to administer volume mount points: B<fs lsmount>, B<fs mkmount>,
! and B<fs rmmount>.
  
  =item *
  
! Commands to control monitoring and tracing: B<fs debug>, and B<fs
! messages>.
  
  =item *
  
  A command to administer the Cache Manager's interaction with other
! file systems: B<fs exportafs>.
  
  =item *
  
! Commands to obtain help: B<fs apropos> and B<fs help>.
  
  =back
  
--- 16,86 ----
  =item *
  
  Commands to set and report how the Cache Manager interacts with server
! machines:
! L<B<fs checkservers>|fs_checkservers(1)>,
! L<B<fs getcellstatus>|fs_getcellstatus(1)>,
! L<B<fs getserverprefs>|fs_getserverprefs(1)>,
! L<B<fs listcells>|fs_listcells(1)>,
! L<B<fs newcell>|fs_newcell(1)>,
! L<B<fs setcell>|fs_setcell(1)>,
! L<B<fs setserverprefs>|fs_setserverprefs(1)>,
! L<B<fs sysname>|fs_sysname(1)>,
! and L<B<fs wscell>|fs_wscell(1)>.
  
  =item *
  
! Commands to administer access control lists (ACLs):
! L<B<fs cleanacl>|fs_cleanacl(1)>,
! L<B<fs copyacl>|fs_copyacl(1)>,
! L<B<fs listacl>|fs_listacl(1)>,
! and L<B<fs setacl>|fs_setacl(1)>.
  
  =item *
  
  Commands to administer server machines, volumes or partitions that house a
! given file or directory:
! L<B<fs diskfree>|fs_diskfree(1)>,
! L<B<fs examine>|fs_examine(1)>,
! L<B<fs listquota>|fs_listquota(1)>,
! L<B<fs quota>|fs_quota(1)>,
! L<B<fs setquota>|fs_setquota(1)>,
! L<B<fs setvol>|fs_setvol(1)>,
! L<B<fs whereis>|fs_whereis(1)>,
! and L<B<fs whichcell>|fs_whichcell(1)>.
  
  =item *
  
  Commands to administer the local client cache and related information:
! L<B<fs checkvolumes>|fs_checkvolumes(1)>,
! L<B<fs flush>|fs_flush(1)>,
! L<B<fs flushvolume>|fs_flushvolume(1)>,
! L<B<fs getcacheparms>|fs_getcacheparms(1)>,
! and L<B<fs setcachesize>|fs_setcachesize(1)>.
  
  =item *
  
! Commands to administer volume mount points:
! L<B<fs lsmount>|fs_lsmount(1)>,
! L<B<fs mkmount>|fs_mkmount(1)>,
! and L<B<fs rmmount>|fs_rmmount(1)>.
  
  =item *
  
! Commands to control monitoring and tracing:
! L<B<fs debug>|fs_debug(1)>,
! and L<B<fs messages>|fs_messages(1)>.
  
  =item *
  
  A command to administer the Cache Manager's interaction with other
! file systems:
! L<B<fs exportafs>|fs_exportafs(1)>.
  
  =item *
  
! Commands to obtain help:
! L<B<fs apropos>|fs_apropos(1)>
! and L<B<fs help>|fs_help(1)>.
  
  =back
  
Index: openafs/doc/man-pages/pod1/fs_apropos.pod
diff -c openafs/doc/man-pages/pod1/fs_apropos.pod:1.2 openafs/doc/man-pages/pod1/fs_apropos.pod:1.3
*** openafs/doc/man-pages/pod1/fs_apropos.pod:1.2	Fri Dec  9 08:26:30 2005
--- openafs/doc/man-pages/pod1/fs_apropos.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,12 ****
  
  =head1 SYNOPSIS
  
! B<fs apropos> B<-topic> <I<help string>> [B<-help>]
  
! B<fs ap> B<-t> <I<help string>> [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,18 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<fs apropos> S<<< B<-topic> <I<help string>> >>> [B<-help>]
! 
! B<fs ap> S<<< B<-t> <I<help string>> >>> [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod1/fs_checkservers.pod
diff -c openafs/doc/man-pages/pod1/fs_checkservers.pod:1.3 openafs/doc/man-pages/pod1/fs_checkservers.pod:1.4
*** openafs/doc/man-pages/pod1/fs_checkservers.pod:1.3	Tue Dec 20 19:41:17 2005
--- openafs/doc/man-pages/pod1/fs_checkservers.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,14 ****
  
  =head1 SYNOPSIS
  
! B<fs checkservers> [B<-cell> <I<cell to check>>] [B<-all>] [B<-fast>]
!     [B<-interval> <I<seconds between probes>>] [B<-help>]
  
! B<fs checks> [B<-c> <I<cell to check>>] [B<-a>] [B<-f>]
!     [B<-i> <I<seconds between probes>>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,20 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<fs checkservers> S<<< [B<-cell> <I<cell to check>>] >>> [B<-all>] [B<-fast>]
!     S<<< [B<-interval> <I<seconds between probes>>] >>> [B<-help>]
! 
! B<fs checks> S<<< [B<-c> <I<cell to check>>] >>> [B<-a>] [B<-f>]
!     S<<< [B<-i> <I<seconds between probes>>] >>> [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod1/fs_checkvolumes.pod
diff -c openafs/doc/man-pages/pod1/fs_checkvolumes.pod:1.2 openafs/doc/man-pages/pod1/fs_checkvolumes.pod:1.3
*** openafs/doc/man-pages/pod1/fs_checkvolumes.pod:1.2	Fri Dec  9 08:26:30 2005
--- openafs/doc/man-pages/pod1/fs_checkvolumes.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,13 ****
--- 4,19 ----
  
  =head1 SYNOPSIS
  
+ =for html
+ <div class="synopsis">
+ 
  B<fs checkvolumes> [B<-help>]
  
  B<fs checkv> [B<-h>]
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The B<fs checkvolumes> command discards the table of mappings between
Index: openafs/doc/man-pages/pod1/fs_cleanacl.pod
diff -c openafs/doc/man-pages/pod1/fs_cleanacl.pod:1.3 openafs/doc/man-pages/pod1/fs_cleanacl.pod:1.4
*** openafs/doc/man-pages/pod1/fs_cleanacl.pod:1.3	Tue Dec 20 19:41:17 2005
--- openafs/doc/man-pages/pod1/fs_cleanacl.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,12 ****
  
  =head1 SYNOPSIS
  
! B<fs cleanacl> [B<-path> <I<dir/file path>>+] [B<-help>]
  
! B<fs cl> [B<-p> <I<dir/file path>>+] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,18 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<fs cleanacl> S<<< [B<-path> <I<dir/file path>>+] >>> [B<-help>]
! 
! B<fs cl> S<<< [B<-p> <I<dir/file path>>+] >>> [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod1/fs_copyacl.pod
diff -c openafs/doc/man-pages/pod1/fs_copyacl.pod:1.3 openafs/doc/man-pages/pod1/fs_copyacl.pod:1.4
*** openafs/doc/man-pages/pod1/fs_copyacl.pod:1.3	Tue Dec 20 19:41:17 2005
--- openafs/doc/man-pages/pod1/fs_copyacl.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,17 ****
  
  =head1 SYNOPSIS
  
! B<fs copyacl> B<-fromdir> <I<source directory (or DFS file)>>
!     B<-todir> <I<destination directory (or DFS file)>>+
      [B<-clear>] [B<-id>] [B<-if>] [-help]
  
! B<fs co> B<-f> <I<source directory (or DFS file)>>
!     B<-t> <I<destination directory (or DFS file)>>+
      [B<-c>] [B<-id>] [B<-if>] [-h]
  
  =head1 DESCRIPTION
  
  The fs copyacl command copies the access control list (ACL) from a source
--- 4,23 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<fs copyacl> S<<< B<-fromdir> <I<source directory (or DFS file)>> >>>
!     S<<< B<-todir> <I<destination directory (or DFS file)>>+ >>>
      [B<-clear>] [B<-id>] [B<-if>] [-help]
  
! B<fs co> S<<< B<-f> <I<source directory (or DFS file)>> >>>
!     S<<< B<-t> <I<destination directory (or DFS file)>>+ >>>
      [B<-c>] [B<-id>] [B<-if>] [-h]
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The fs copyacl command copies the access control list (ACL) from a source
Index: openafs/doc/man-pages/pod1/fs_diskfree.pod
diff -c openafs/doc/man-pages/pod1/fs_diskfree.pod:1.3 openafs/doc/man-pages/pod1/fs_diskfree.pod:1.4
*** openafs/doc/man-pages/pod1/fs_diskfree.pod:1.3	Tue Dec 20 19:41:17 2005
--- openafs/doc/man-pages/pod1/fs_diskfree.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,14 ****
  
  =head1 SYNOPSIS
  
! B<fs diskfree> [B<-path> <I<dir/file path>>+] [B<-help>]
  
! B<fs df> [B<-p> <I<dir/file path>>+] [B<-h>]
  
! B<fs di> [B<-p> <I<dir/file path>>+] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,20 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<fs diskfree> S<<< [B<-path> <I<dir/file path>>+] >>> [B<-help>]
  
! B<fs df> S<<< [B<-p> <I<dir/file path>>+] >>> [B<-h>]
! 
! B<fs di> S<<< [B<-p> <I<dir/file path>>+] >>> [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod1/fs_examine.pod
diff -c openafs/doc/man-pages/pod1/fs_examine.pod:1.3 openafs/doc/man-pages/pod1/fs_examine.pod:1.4
*** openafs/doc/man-pages/pod1/fs_examine.pod:1.3	Tue Dec 20 19:41:17 2005
--- openafs/doc/man-pages/pod1/fs_examine.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,18 ****
  
  =head1 SYNOPSIS
  
! B<fs examine> [B<-path> <I<dir/file path>>+] [B<-help>]
  
! B<fs exa> [B<-p> <I<dir/file path>>+] [B<-h>]
  
! B<fs listvol> [B<-p> <I<dir/file path>>+] [B<-h>]
  
! B<fs listv> [B<-p> <I<dir/file path>>+] [B<-h>]
  
! B<fs lv> [B<-p> <I<dir/file path>>+] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,24 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<fs examine> S<<< [B<-path> <I<dir/file path>>+] >>> [B<-help>]
  
! B<fs exa> S<<< [B<-p> <I<dir/file path>>+] >>> [B<-h>]
  
! B<fs listvol> S<<< [B<-p> <I<dir/file path>>+] >>> [B<-h>]
  
! B<fs listv> S<<< [B<-p> <I<dir/file path>>+] >>> [B<-h>]
! 
! B<fs lv> S<<< [B<-p> <I<dir/file path>>+] >>> [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod1/fs_exportafs.pod
diff -c openafs/doc/man-pages/pod1/fs_exportafs.pod:1.3 openafs/doc/man-pages/pod1/fs_exportafs.pod:1.4
*** openafs/doc/man-pages/pod1/fs_exportafs.pod:1.3	Tue Dec 20 19:41:17 2005
--- openafs/doc/man-pages/pod1/fs_exportafs.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,23 ****
  
  =head1 SYNOPSIS
  
! B<fs exportafs> B<-type> <I<exporter name>>
!     [B<-start> <I<start/stop translator (on | off)>>]
!     [B<-convert> <I<convert from afs to unix mode (on | off)>>]
!     [B<-uidcheck> <I<run on strict 'uid check' mode (on | off)>>]
!     [B<-submounts> <I<allow nfs mounts to subdirs of /afs/.. (on | off)>>]
      [B<-help>]
  
! B<fs exp> B<-t> <I<exporter name>>
!     [B<-st> <I<start/stop translator (on | off)>>]
!     [B<-c> <I<convert from afs to unix mode (on | off)>>]
!     [B<-u> <I<run on strict 'uid check' mode (on | off)>>]
!     [B<-su> <I<allow nfs mounts to subdirs of /afs/.. (on | off)>>]
      [B<-h>]
  
  =head1 DESCRIPTION
  
  The B<fs exportafs> command sets (if the B<-start> argument is provided)
--- 4,29 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<fs exportafs> S<<< B<-type> <I<exporter name>> >>>
!     S<<< [B<-start> <I<start/stop translator (on | off)>>] >>>
!     S<<< [B<-convert> <I<convert from afs to unix mode (on | off)>>] >>>
!     S<<< [B<-uidcheck> <I<run on strict 'uid check' mode (on | off)>>] >>>
!     S<<< [B<-submounts> <I<allow nfs mounts to subdirs of /afs/.. (on | off)>>] >>>
      [B<-help>]
  
! B<fs exp> S<<< B<-t> <I<exporter name>> >>>
!     S<<< [B<-st> <I<start/stop translator (on | off)>>] >>>
!     S<<< [B<-c> <I<convert from afs to unix mode (on | off)>>] >>>
!     S<<< [B<-u> <I<run on strict 'uid check' mode (on | off)>>] >>>
!     S<<< [B<-su> <I<allow nfs mounts to subdirs of /afs/.. (on | off)>>] >>>
      [B<-h>]
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The B<fs exportafs> command sets (if the B<-start> argument is provided)
Index: openafs/doc/man-pages/pod1/fs_flush.pod
diff -c openafs/doc/man-pages/pod1/fs_flush.pod:1.2 openafs/doc/man-pages/pod1/fs_flush.pod:1.3
*** openafs/doc/man-pages/pod1/fs_flush.pod:1.2	Fri Dec  9 08:26:30 2005
--- openafs/doc/man-pages/pod1/fs_flush.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,12 ****
  
  =head1 SYNOPSIS
  
! B<fs flush> [B<-path> <I<dir/file path>>+] [B<-help>]
  
! B<fs flush> [B<-p> <I<dir/file path>>+] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,18 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<fs flush> S<<< [B<-path> <I<dir/file path>>+] >>> [B<-help>]
! 
! B<fs flush> S<<< [B<-p> <I<dir/file path>>+] >>> [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod1/fs_flushmount.pod
diff -c openafs/doc/man-pages/pod1/fs_flushmount.pod:1.2 openafs/doc/man-pages/pod1/fs_flushmount.pod:1.3
*** openafs/doc/man-pages/pod1/fs_flushmount.pod:1.2	Fri Dec  9 08:26:30 2005
--- openafs/doc/man-pages/pod1/fs_flushmount.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,12 ****
  
  =head1 SYNOPSIS
  
! B<fs flushmount> [B<-path> <I<dir/file path>>+] [B<-help>]
  
! B<fs flushm> [B<-p> <I<dir/file path>>+] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,18 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<fs flushmount> S<<< [B<-path> <I<dir/file path>>+] >>> [B<-help>]
! 
! B<fs flushm> S<<< [B<-p> <I<dir/file path>>+] >>> [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod1/fs_flushvolume.pod
diff -c openafs/doc/man-pages/pod1/fs_flushvolume.pod:1.3 openafs/doc/man-pages/pod1/fs_flushvolume.pod:1.4
*** openafs/doc/man-pages/pod1/fs_flushvolume.pod:1.3	Tue Dec 20 19:41:17 2005
--- openafs/doc/man-pages/pod1/fs_flushvolume.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,12 ****
  
  =head1 SYNOPSIS
  
! B<fs flushvolume> [B<-path> <I<dir/file path>>+] [B<-help>]
  
! B<fs flushv> [B<-p> <I<dir/file path>>+] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,18 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<fs flushvolume> S<<< [B<-path> <I<dir/file path>>+] >>> [B<-help>]
! 
! B<fs flushv> S<<< [B<-p> <I<dir/file path>>+] >>> [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod1/fs_getcacheparms.pod
diff -c openafs/doc/man-pages/pod1/fs_getcacheparms.pod:1.2 openafs/doc/man-pages/pod1/fs_getcacheparms.pod:1.3
*** openafs/doc/man-pages/pod1/fs_getcacheparms.pod:1.2	Fri Dec  9 08:26:30 2005
--- openafs/doc/man-pages/pod1/fs_getcacheparms.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,13 ****
--- 4,19 ----
  
  =head1 SYNOPSIS
  
+ =for html
+ <div class="synopsis">
+ 
  B<fs getcacheparms> [B<-help>]
  
  B<fs getca> [B<-h>]
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The B<fs getcacheparms> command displays the current size of the cache
Index: openafs/doc/man-pages/pod1/fs_getcellstatus.pod
diff -c openafs/doc/man-pages/pod1/fs_getcellstatus.pod:1.2 openafs/doc/man-pages/pod1/fs_getcellstatus.pod:1.3
*** openafs/doc/man-pages/pod1/fs_getcellstatus.pod:1.2	Fri Dec  9 08:26:30 2005
--- openafs/doc/man-pages/pod1/fs_getcellstatus.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,12 ****
  
  =head1 SYNOPSIS
  
! B<fs getcellstatus> B<-cell> <I<cell name>>+ [B<-help>]
  
! B<fs getce> B<-c> <I<cell name>>+ [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,18 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<fs getcellstatus> S<<< B<-cell> <I<cell name>>+ >>> [B<-help>]
! 
! B<fs getce> S<<< B<-c> <I<cell name>>+ >>> [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod1/fs_getclientaddrs.pod
diff -c openafs/doc/man-pages/pod1/fs_getclientaddrs.pod:1.2 openafs/doc/man-pages/pod1/fs_getclientaddrs.pod:1.4
*** openafs/doc/man-pages/pod1/fs_getclientaddrs.pod:1.2	Fri Dec  9 08:26:30 2005
--- openafs/doc/man-pages/pod1/fs_getclientaddrs.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,15 ****
--- 4,21 ----
  
  =head1 SYNOPSIS
  
+ =for html
+ <div class="synopsis">
+ 
  B<fs getclientaddrs> [B<-help>]
  
  B<fs gc> [B<-h>]
  
  B<fs getcl> [B<-h>]
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The B<fs getclientaddrs> command displays the IP addresses of the
***************
*** 91,97 ****
  
  =head1 SEE ALSO
  
! L<fileserver(1)>,
  L<fs_setclientaddrs(1)>
  
  =head1 COPYRIGHT
--- 97,103 ----
  
  =head1 SEE ALSO
  
! L<fileserver(8)>,
  L<fs_setclientaddrs(1)>
  
  =head1 COPYRIGHT
Index: openafs/doc/man-pages/pod1/fs_getserverprefs.pod
diff -c openafs/doc/man-pages/pod1/fs_getserverprefs.pod:1.3 openafs/doc/man-pages/pod1/fs_getserverprefs.pod:1.4
*** openafs/doc/man-pages/pod1/fs_getserverprefs.pod:1.3	Tue Dec 20 19:41:17 2005
--- openafs/doc/man-pages/pod1/fs_getserverprefs.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,15 ****
  
  =head1 SYNOPSIS
  
! B<fs getserverprefs> [B<-file> <I<output to named file>>]
      [B<-numeric>] [B<-vlservers>] [B<-help>]
  
! B<fs gets> [B<-f> <I<output to named file>>] [B<-n>] [B<-v>] [B<-h>]
  
! B<fs gp> [B<-f> <I<output to named file>>] [B<-n>] [B<-v>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,21 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<fs getserverprefs> S<<< [B<-file> <I<output to named file>>] >>>
      [B<-numeric>] [B<-vlservers>] [B<-help>]
  
! B<fs gets> S<<< [B<-f> <I<output to named file>>] >>> [B<-n>] [B<-v>] [B<-h>]
! 
! B<fs gp> S<<< [B<-f> <I<output to named file>>] >>> [B<-n>] [B<-v>] [B<-h>]
  
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod1/fs_help.pod
diff -c openafs/doc/man-pages/pod1/fs_help.pod:1.3 openafs/doc/man-pages/pod1/fs_help.pod:1.4
*** openafs/doc/man-pages/pod1/fs_help.pod:1.3	Tue Dec 20 19:41:17 2005
--- openafs/doc/man-pages/pod1/fs_help.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,12 ****
  
  =head1 SYNOPSIS
  
! B<fs help> [B<-topic> <I<help string>>+] [B<-help>]
  
! B<fs h> [B<-t> <I<help string>>+] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,18 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<fs help> S<<< [B<-topic> <I<help string>>+] >>> [B<-help>]
! 
! B<fs h> S<<< [B<-t> <I<help string>>+] >>> [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod1/fs_listacl.pod
diff -c openafs/doc/man-pages/pod1/fs_listacl.pod:1.3 openafs/doc/man-pages/pod1/fs_listacl.pod:1.4
*** openafs/doc/man-pages/pod1/fs_listacl.pod:1.3	Tue Dec 20 19:41:17 2005
--- openafs/doc/man-pages/pod1/fs_listacl.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,14 ****
  
  =head1 SYNOPSIS
  
! B<fs listacl> [B<-path> <I<dir/file path>>+] [B<-id>] [B<-if>] [B<-help>]
  
! B<fs la> [B<-p> <I<dir/file path>>+] [B<-id>] [B<-if>] [B<-h>]
  
! B<fs lista> [B<-p> <I<dir/file path>>+] [B<-id>] [B<-if>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,20 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<fs listacl> S<<< [B<-path> <I<dir/file path>>+] >>> [B<-id>] [B<-if>] [B<-help>]
  
! B<fs la> S<<< [B<-p> <I<dir/file path>>+] >>> [B<-id>] [B<-if>] [B<-h>]
! 
! B<fs lista> S<<< [B<-p> <I<dir/file path>>+] >>> [B<-id>] [B<-if>] [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod1/fs_listcells.pod
diff -c openafs/doc/man-pages/pod1/fs_listcells.pod:1.3 openafs/doc/man-pages/pod1/fs_listcells.pod:1.4
*** openafs/doc/man-pages/pod1/fs_listcells.pod:1.3	Tue Dec 20 19:41:17 2005
--- openafs/doc/man-pages/pod1/fs_listcells.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,13 ****
--- 4,19 ----
  
  =head1 SYNOPSIS
  
+ =for html
+ <div class="synopsis">
+ 
  B<fs listcells> [B<-numeric>] [B<-help>]
  
  B<fs listc> [B<-n>] [B<-h>]
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The B<fs listcells> command formats and displays the list of the database
Index: openafs/doc/man-pages/pod1/fs_listquota.pod
diff -c openafs/doc/man-pages/pod1/fs_listquota.pod:1.3 openafs/doc/man-pages/pod1/fs_listquota.pod:1.5
*** openafs/doc/man-pages/pod1/fs_listquota.pod:1.3	Tue Dec 20 19:41:17 2005
--- openafs/doc/man-pages/pod1/fs_listquota.pod	Mon Apr 10 12:41:22 2006
***************
*** 4,14 ****
  
  =head1 SYNOPSIS
  
! B<fs listquota> [B<-path> <I<dir/file path>>+] [B<-help>]
  
! B<fs listq> [B<-p> <I<dir/file path>>+] [B<-h>]
  
! B<fs lq> [B<-p> <I<dir/file path>>+] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,20 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<fs listquota> S<<< [B<-path> <I<dir/file path>>+] >>> [B<-help>]
  
! B<fs listq> S<<< [B<-p> <I<dir/file path>>+] >>> [B<-h>]
! 
! B<fs lq> S<<< [B<-p> <I<dir/file path>>+] >>> [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
***************
*** 85,91 ****
  
  =head1 PRIVILEGE REQUIRED
  
! The issuer must have the C<l> (lookup) permission on the ACL of the root
  directory of the volume that houses the file or directory named by the
  B<-path> argument, and on the ACL of each directory that precedes it in
  the pathname.
--- 91,97 ----
  
  =head1 PRIVILEGE REQUIRED
  
! The issuer must have the C<r> (read) permission on the ACL of the root
  directory of the volume that houses the file or directory named by the
  B<-path> argument, and on the ACL of each directory that precedes it in
  the pathname.
Index: openafs/doc/man-pages/pod1/fs_lsmount.pod
diff -c openafs/doc/man-pages/pod1/fs_lsmount.pod:1.3 openafs/doc/man-pages/pod1/fs_lsmount.pod:1.4
*** openafs/doc/man-pages/pod1/fs_lsmount.pod:1.3	Tue Dec 20 19:41:17 2005
--- openafs/doc/man-pages/pod1/fs_lsmount.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,12 ****
  
  =head1 SYNOPSIS
  
! B<fs lsmount> B<-dir> <I<directory>>+ [B<-help>]
  
! B<fs ls -d> <I<directory>>+ [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,18 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<fs lsmount> S<<< B<-dir> <I<directory>>+ >>> [B<-help>]
! 
! S<<< B<fs ls -d> <I<directory>>+ >>> [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod1/fs_messages.pod
diff -c openafs/doc/man-pages/pod1/fs_messages.pod:1.2 openafs/doc/man-pages/pod1/fs_messages.pod:1.3
*** openafs/doc/man-pages/pod1/fs_messages.pod:1.2	Fri Dec  9 08:26:30 2005
--- openafs/doc/man-pages/pod1/fs_messages.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,12 ****
  
  =head1 SYNOPSIS
  
! B<fs messages> [B<-show> (user|console|all|none)] [B<-help>]
  
! B<fs me> [B<-s> (user|console|all|none)] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,18 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<fs messages> S<<< [B<-show> (user|console|all|none)] >>> [B<-help>]
! 
! B<fs me> S<<< [B<-s> (user|console|all|none)] >>> [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod1/fs_mkmount.pod
diff -c openafs/doc/man-pages/pod1/fs_mkmount.pod:1.2 openafs/doc/man-pages/pod1/fs_mkmount.pod:1.3
*** openafs/doc/man-pages/pod1/fs_mkmount.pod:1.2	Fri Dec  9 08:26:30 2005
--- openafs/doc/man-pages/pod1/fs_mkmount.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,14 ****
  
  =head1 SYNOPSIS
  
! B<fs mkmount> B<-dir> <I<directory>> B<-vol> <I<volume name>>
!     [B<-cell> <I<cell name>>] [B<-rw>] [B<-fast>] [B<-help>]
  
! B<fs mk> B<-d> <I<directory>> B<-v> <I<volume name>>
!     [B<-c> <I<cell name>>] [B<-r>] [B<-f>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,20 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<fs mkmount> S<<< B<-dir> <I<directory>> >>> S<<< B<-vol> <I<volume name>> >>>
!     S<<< [B<-cell> <I<cell name>>] >>> [B<-rw>] [B<-fast>] [B<-help>]
! 
! B<fs mk> S<<< B<-d> <I<directory>> >>> S<<< B<-v> <I<volume name>> >>>
!     S<<< [B<-c> <I<cell name>>] >>> [B<-r>] [B<-f>] [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod1/fs_newcell.pod
diff -c openafs/doc/man-pages/pod1/fs_newcell.pod:1.2 openafs/doc/man-pages/pod1/fs_newcell.pod:1.3
*** openafs/doc/man-pages/pod1/fs_newcell.pod:1.2	Fri Dec  9 08:26:30 2005
--- openafs/doc/man-pages/pod1/fs_newcell.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,14 ****
  
  =head1 SYNOPSIS
  
! B<fs newcell> B<-name> <I<cell name>> -servers <I<primary servers>>+
!     [B<-linkedcell> <I<linked cell name>>] [B<-help>]
  
! B<fs n> B<-n> <I<cell name>> B<-s> <I<primary servers>>+
!     [B<-l> <I<linked cell name>>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,20 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<fs newcell> S<<< B<-name> <I<cell name>> >>> -servers <I<primary servers>>+
!     S<<< [B<-linkedcell> <I<linked cell name>>] >>> [B<-help>]
! 
! B<fs n> S<<< B<-n> <I<cell name>> >>> S<<< B<-s> <I<primary servers>>+ >>>
!     S<<< [B<-l> <I<linked cell name>>] >>> [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod1/fs_quota.pod
diff -c openafs/doc/man-pages/pod1/fs_quota.pod:1.2 openafs/doc/man-pages/pod1/fs_quota.pod:1.3
*** openafs/doc/man-pages/pod1/fs_quota.pod:1.2	Fri Dec  9 08:26:30 2005
--- openafs/doc/man-pages/pod1/fs_quota.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,12 ****
  
  =head1 SYNOPSIS
  
! B<fs quota> [B<-path> <I<dir/file path>>+] [B<-help>]
  
! B<fs q> [B<-p> <I<dir/file path>>+] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,18 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<fs quota> S<<< [B<-path> <I<dir/file path>>+] >>> [B<-help>]
! 
! B<fs q> S<<< [B<-p> <I<dir/file path>>+] >>> [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod1/fs_rmmount.pod
diff -c openafs/doc/man-pages/pod1/fs_rmmount.pod:1.2 openafs/doc/man-pages/pod1/fs_rmmount.pod:1.3
*** openafs/doc/man-pages/pod1/fs_rmmount.pod:1.2	Fri Dec  9 08:26:30 2005
--- openafs/doc/man-pages/pod1/fs_rmmount.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,12 ****
  
  =head1 SYNOPSIS
  
! B<fs rmmount> B<-dir> <I<directory>>+ [B<-help>]
  
! B<fs rm> B<-d> <I<directory>>+ [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,18 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<fs rmmount> S<<< B<-dir> <I<directory>>+ >>> [B<-help>]
! 
! B<fs rm> S<<< B<-d> <I<directory>>+ >>> [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod1/fs_setacl.pod
diff -c openafs/doc/man-pages/pod1/fs_setacl.pod:1.3 openafs/doc/man-pages/pod1/fs_setacl.pod:1.4
*** openafs/doc/man-pages/pod1/fs_setacl.pod:1.3	Tue Dec 20 19:41:17 2005
--- openafs/doc/man-pages/pod1/fs_setacl.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,18 ****
  
  =head1 SYNOPSIS
  
! B<fs setacl> B<-dir> <I<directory>>+ B<-acl> <I<access list entries>>+
      [B<-clear>] [B<-negative>] [B<-id>] [B<-if>] [B<-help>]
  
! B<fs sa> B<-d> <I<directory>>+ B<-a> <I<access list entries>>+
      [B<-c>] [B<-n>] [B<-id>] [B<-if>] [B<-h>]
  
! B<fs seta> B<-d> <I<directory>>+ B<-a> <I<access list entries>>+
      [B<-c>] [B<-n>] [B<-id>] [B<-if>] [B<-h>]
  
  =head1 DESCRIPTION
  
  The B<fs setacl> command adds the access control list (ACL) entries
--- 4,24 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<fs setacl> S<<< B<-dir> <I<directory>>+ >>> S<<< B<-acl> <I<access list entries>>+ >>>
      [B<-clear>] [B<-negative>] [B<-id>] [B<-if>] [B<-help>]
  
! B<fs sa> S<<< B<-d> <I<directory>>+ >>> S<<< B<-a> <I<access list entries>>+ >>>
      [B<-c>] [B<-n>] [B<-id>] [B<-if>] [B<-h>]
  
! B<fs seta> S<<< B<-d> <I<directory>>+ >>> S<<< B<-a> <I<access list entries>>+ >>>
      [B<-c>] [B<-n>] [B<-id>] [B<-if>] [B<-h>]
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The B<fs setacl> command adds the access control list (ACL) entries
Index: openafs/doc/man-pages/pod1/fs_setcachesize.pod
diff -c openafs/doc/man-pages/pod1/fs_setcachesize.pod:1.3 openafs/doc/man-pages/pod1/fs_setcachesize.pod:1.5
*** openafs/doc/man-pages/pod1/fs_setcachesize.pod:1.3	Tue Dec 20 19:41:17 2005
--- openafs/doc/man-pages/pod1/fs_setcachesize.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,9 ****
--- 4,12 ----
  
  =head1 SYNOPSIS
  
+ =for html
+ <div class="synopsis">
+ 
  B<fs setcachesize> [B<-blocks> <I<size in 1K byte blocks (0 => reset)>>]
      [B<-reset>] [B<-help>]
  
***************
*** 16,21 ****
--- 19,27 ----
  B<fs ca> [B<-b> <I<size in 1K byte blocks (0 => reset)>>]
      [B<-r>] [B<-h>]
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The B<fs setcachesize> command changes the number of kilobyte blocks of
***************
*** 89,96 ****
  
  =head1 SEE ALSO
  
! L<cacheinfo(1)>,
! L<afsd(1)>,
  L<fs_getcacheparms(1)>
  
  =head1 COPYRIGHT
--- 95,102 ----
  
  =head1 SEE ALSO
  
! L<cacheinfo(5)>,
! L<afsd(8)>,
  L<fs_getcacheparms(1)>
  
  =head1 COPYRIGHT
Index: openafs/doc/man-pages/pod1/fs_setcell.pod
diff -c openafs/doc/man-pages/pod1/fs_setcell.pod:1.2 openafs/doc/man-pages/pod1/fs_setcell.pod:1.3
*** openafs/doc/man-pages/pod1/fs_setcell.pod:1.2	Fri Dec  9 08:26:30 2005
--- openafs/doc/man-pages/pod1/fs_setcell.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,12 ****
  
  =head1 SYNOPSIS
  
! B<fs setcell> B<-cell> <I<cell name>>+ [B<-suid>] [B<-nosuid>] [B<-help>]
  
! B<fs setce> B<-c> <I<cell name>>+ [B<-s>] [B<-n>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,18 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<fs setcell> S<<< B<-cell> <I<cell name>>+ >>> [B<-suid>] [B<-nosuid>] [B<-help>]
! 
! B<fs setce> S<<< B<-c> <I<cell name>>+ >>> [B<-s>] [B<-n>] [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod1/fs_setclientaddrs.pod
diff -c openafs/doc/man-pages/pod1/fs_setclientaddrs.pod:1.2 openafs/doc/man-pages/pod1/fs_setclientaddrs.pod:1.3
*** openafs/doc/man-pages/pod1/fs_setclientaddrs.pod:1.2	Fri Dec  9 08:26:30 2005
--- openafs/doc/man-pages/pod1/fs_setclientaddrs.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,14 ****
  
  =head1 SYNOPSIS
  
! B<fs setclientaddrs> [B<-address> <I<client network interfaces>>+] [B<-help>]
  
! B<fs setcl> [B<-a> <I<client network interfaces>>+] [B<-h>]
  
! B<fs sc> [B<-a> <I<client network interfaces>>+] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,20 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<fs setclientaddrs> S<<< [B<-address> <I<client network interfaces>>+] >>> [B<-help>]
  
! B<fs setcl> S<<< [B<-a> <I<client network interfaces>>+] >>> [B<-h>]
! 
! B<fs sc> S<<< [B<-a> <I<client network interfaces>>+] >>> [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod1/fs_setquota.pod
diff -c openafs/doc/man-pages/pod1/fs_setquota.pod:1.3 openafs/doc/man-pages/pod1/fs_setquota.pod:1.4
*** openafs/doc/man-pages/pod1/fs_setquota.pod:1.3	Tue Dec 20 19:41:17 2005
--- openafs/doc/man-pages/pod1/fs_setquota.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,15 ****
  
  =head1 SYNOPSIS
  
! B<fs setquota> [B<-path> <I<dir/file path>>]
!     B<-max> <I<max quota in kbytes>> [B<-help>]
  
! B<fs setq> [B<-p> <I<dir/file path>>] B<-m> <I<max quota in kbytes>> [B<-h>]
  
! B<fs sq> [B<-p> <I<dir/file path>>] B<-m> <I<max quota in kbytes>> [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,21 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<fs setquota> S<<< [B<-path> <I<dir/file path>>] >>>
!     S<<< B<-max> <I<max quota in kbytes>> >>> [B<-help>]
  
! B<fs setq> S<<< [B<-p> <I<dir/file path>>] >>> S<<< B<-m> <I<max quota in kbytes>> >>> [B<-h>]
! 
! B<fs sq> S<<< [B<-p> <I<dir/file path>>] >>> S<<< B<-m> <I<max quota in kbytes>> >>> [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod1/fs_setserverprefs.pod
diff -c openafs/doc/man-pages/pod1/fs_setserverprefs.pod:1.3 openafs/doc/man-pages/pod1/fs_setserverprefs.pod:1.4
*** openafs/doc/man-pages/pod1/fs_setserverprefs.pod:1.3	Tue Dec 20 19:41:17 2005
--- openafs/doc/man-pages/pod1/fs_setserverprefs.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,20 ****
  
  =head1 SYNOPSIS
  
! B<fs setserverprefs> [B<-servers> <I<fileserver names and ranks>>+]
!     [B<-vlservers> <I<VL server names and ranks>>+]
!     [B<-file> <I<input from named file>>] [B<-stdin>] [B<-help>]
! 
! B<fs sets> [B<-se> <I<fileserver names and ranks>>+]
!     [B<-vl> <I<VL server names and ranks>>+]
!     [B<-f> <I<input from named file>>] [B<-st>] [B<-h>]
! 
! B<fs sp> [B<-se> <I<fileserver names and ranks>>+]
!     [B<-vl> <I<VL server names and ranks>>+]
!     [B<-f> <I<input from named file>>] [B<-st>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,26 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<fs setserverprefs> S<<< [B<-servers> <I<fileserver names and ranks>>+] >>>
!     S<<< [B<-vlservers> <I<VL server names and ranks>>+] >>>
!     S<<< [B<-file> <I<input from named file>>] >>> [B<-stdin>] [B<-help>]
! 
! B<fs sets> S<<< [B<-se> <I<fileserver names and ranks>>+] >>>
!     S<<< [B<-vl> <I<VL server names and ranks>>+] >>>
!     S<<< [B<-f> <I<input from named file>>] >>> [B<-st>] [B<-h>]
! 
! B<fs sp> S<<< [B<-se> <I<fileserver names and ranks>>+] >>>
!     S<<< [B<-vl> <I<VL server names and ranks>>+] >>>
!     S<<< [B<-f> <I<input from named file>>] >>> [B<-st>] [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod1/fs_setvol.pod
diff -c openafs/doc/man-pages/pod1/fs_setvol.pod:1.3 openafs/doc/man-pages/pod1/fs_setvol.pod:1.4
*** openafs/doc/man-pages/pod1/fs_setvol.pod:1.3	Tue Dec 20 19:41:17 2005
--- openafs/doc/man-pages/pod1/fs_setvol.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,20 ****
  
  =head1 SYNOPSIS
  
! B<fs setvol> [B<-path> <I<dir/file path>>+]
!     [B<-max> <I<disk space quota in 1K units>>]
!     [B<-offlinemsg> <I<offline message>>] [B<-help>]
! 
! B<fs setv> [B<-p> <I<dir/file path>>+]
!     [B<-ma> <I<disk space quota in 1K units>>]
!     [B<-o> <I<offline message>>] [B<-h>]
! 
! B<fs sv> [B<-p> <I<dir/file path>>+]
!     [B<-ma> <I<disk space quota in 1K units>>]
!     [B<-o> <I<offline message>>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,26 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<fs setvol> S<<< [B<-path> <I<dir/file path>>+] >>>
!     S<<< [B<-max> <I<disk space quota in 1K units>>] >>>
!     S<<< [B<-offlinemsg> <I<offline message>>] >>> [B<-help>]
! 
! B<fs setv> S<<< [B<-p> <I<dir/file path>>+] >>>
!     S<<< [B<-ma> <I<disk space quota in 1K units>>] >>>
!     S<<< [B<-o> <I<offline message>>] >>> [B<-h>]
! 
! B<fs sv> S<<< [B<-p> <I<dir/file path>>+] >>>
!     S<<< [B<-ma> <I<disk space quota in 1K units>>] >>>
!     S<<< [B<-o> <I<offline message>>] >>> [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod1/fs_storebehind.pod
diff -c openafs/doc/man-pages/pod1/fs_storebehind.pod:1.3 openafs/doc/man-pages/pod1/fs_storebehind.pod:1.4
*** openafs/doc/man-pages/pod1/fs_storebehind.pod:1.3	Tue Dec 20 19:41:17 2005
--- openafs/doc/man-pages/pod1/fs_storebehind.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,16 ****
  
  =head1 SYNOPSIS
  
! B<fs storebehind> [B<-kbytes> <I<asynchrony for specified names>>]
!     [B<-files> <I<specific pathnames>>+]
!     [B<-allfiles> <I<new default (KB)>>] [B<-verbose>] [B<-help>]
! 
! B<fs st> [B<-k> <I<asynchrony for specified names>>]
!     [B<-f> <I<specific pathnames>>+]
!     [B<-a> <I<new default (KB)>>] [B<-v>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,22 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<fs storebehind> S<<< [B<-kbytes> <I<asynchrony for specified names>>] >>>
!     S<<< [B<-files> <I<specific pathnames>>+] >>>
!     S<<< [B<-allfiles> <I<new default (KB)>>] >>> [B<-verbose>] [B<-help>]
! 
! B<fs st> S<<< [B<-k> <I<asynchrony for specified names>>] >>>
!     S<<< [B<-f> <I<specific pathnames>>+] >>>
!     S<<< [B<-a> <I<new default (KB)>>] >>> [B<-v>] [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod1/fs_sysname.pod
diff -c openafs/doc/man-pages/pod1/fs_sysname.pod:1.2 openafs/doc/man-pages/pod1/fs_sysname.pod:1.3
*** openafs/doc/man-pages/pod1/fs_sysname.pod:1.2	Fri Dec  9 08:26:30 2005
--- openafs/doc/man-pages/pod1/fs_sysname.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,12 ****
  
  =head1 SYNOPSIS
  
! B<fs sysname> [B<-newsys> <I<new sysname>>] [B<-help>]
  
! B<fs sy> [B<-n> <I<new sysname>>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,18 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<fs sysname> S<<< [B<-newsys> <I<new sysname>>] >>> [B<-help>]
! 
! B<fs sy> S<<< [B<-n> <I<new sysname>>] >>> [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod1/fs_whereis.pod
diff -c openafs/doc/man-pages/pod1/fs_whereis.pod:1.2 openafs/doc/man-pages/pod1/fs_whereis.pod:1.3
*** openafs/doc/man-pages/pod1/fs_whereis.pod:1.2	Fri Dec  9 08:26:30 2005
--- openafs/doc/man-pages/pod1/fs_whereis.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,12 ****
  
  =head1 SYNOPSIS
  
! B<fs whereis> [B<-path> <I<dir/file path>>+] [B<-help>]
  
! B<fs whe> [B<-p> <I<dir/file path>>+] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,18 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<fs whereis> S<<< [B<-path> <I<dir/file path>>+] >>> [B<-help>]
! 
! B<fs whe> S<<< [B<-p> <I<dir/file path>>+] >>> [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod1/fs_whichcell.pod
diff -c openafs/doc/man-pages/pod1/fs_whichcell.pod:1.2 openafs/doc/man-pages/pod1/fs_whichcell.pod:1.3
*** openafs/doc/man-pages/pod1/fs_whichcell.pod:1.2	Fri Dec  9 08:26:30 2005
--- openafs/doc/man-pages/pod1/fs_whichcell.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,12 ****
  
  =head1 SYNOPSIS
  
! B<fs whichcell> [B<-path> <I<dir/file path>>+] [B<-help>]
  
! B<fs whi > [B<-p> <I<dir/file path>>+] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,18 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<fs whichcell> S<<< [B<-path> <I<dir/file path>>+] >>> [B<-help>]
! 
! B<fs whi > S<<< [B<-p> <I<dir/file path>>+] >>> [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod1/fs_wscell.pod
diff -c openafs/doc/man-pages/pod1/fs_wscell.pod:1.2 openafs/doc/man-pages/pod1/fs_wscell.pod:1.3
*** openafs/doc/man-pages/pod1/fs_wscell.pod:1.2	Fri Dec  9 08:26:31 2005
--- openafs/doc/man-pages/pod1/fs_wscell.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,13 ****
--- 4,19 ----
  
  =head1 SYNOPSIS
  
+ =for html
+ <div class="synopsis">
+ 
  B<fs wscell> [B<-help>]
  
  B<fs ws> [B<-h>]
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The B<fs wscell> command returns the name of the local machine's home
Index: openafs/doc/man-pages/pod1/klog.pod
diff -c openafs/doc/man-pages/pod1/klog.pod:1.3 openafs/doc/man-pages/pod1/klog.pod:1.4
*** openafs/doc/man-pages/pod1/klog.pod:1.3	Tue Dec 20 19:41:17 2005
--- openafs/doc/man-pages/pod1/klog.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,21 ****
  
  =head1 SYNOPSIS
  
! B<klog> [B<-x>] [B<-principal> <I<user name>>]
!     [-password <I<user's password>>] [B<-cell> <I<cell name>>]
!     [B<-servers> <I<explicit list of servers>>+]
      [B<-pipe>] [B<-silent>]
!     [B<-lifetime> <I<ticket lifetime in hh[:mm[:ss]]>>]
      [B<-setpag>] [B<-tmp>] [B<-help>]
  
! B<klog> [B<-x>] [B<-pr> <I<user name>>] [B<-pa> <I<user's password>>]
!     [B<-c> <I<cell name>>]  [B<-s> <I<explicit list of servers>>+]
!     [B<-pi>] [B<-si>] [B<-l> <I<ticket lifetime in hh[:mm[:ss]]>>]
      [B<-se>] [B<-t>] [B<-h>]
  
  =head1 DESCRIPTION
  
  The B<klog> command obtains an AFS token from the Authentication
--- 4,27 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<klog> [B<-x>] S<<< [B<-principal> <I<user name>>] >>>
!     [-password <I<user's password>>] S<<< [B<-cell> <I<cell name>>] >>>
!     S<<< [B<-servers> <I<explicit list of servers>>+] >>>
      [B<-pipe>] [B<-silent>]
!     S<<< [B<-lifetime> <I<ticket lifetime in hh[:mm[:ss]]>>] >>>
      [B<-setpag>] [B<-tmp>] [B<-help>]
  
! B<klog> [B<-x>] S<<< [B<-pr> <I<user name>>] >>> S<<< [B<-pa> <I<user's password>>] >>>
!     S<<< [B<-c> <I<cell name>>] >>>  S<<< [B<-s> <I<explicit list of servers>>+] >>>
!     [B<-pi>] [B<-si>] S<<< [B<-l> <I<ticket lifetime in hh[:mm[:ss]]>>] >>>
      [B<-se>] [B<-t>] [B<-h>]
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The B<klog> command obtains an AFS token from the Authentication
Index: openafs/doc/man-pages/pod1/knfs.pod
diff -c openafs/doc/man-pages/pod1/knfs.pod:1.3 openafs/doc/man-pages/pod1/knfs.pod:1.4
*** openafs/doc/man-pages/pod1/knfs.pod:1.3	Tue Dec 20 19:41:17 2005
--- openafs/doc/man-pages/pod1/knfs.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,15 ****
  
  =head1 SYNOPSIS
  
! B<knfs> B<-host> <I<host name>> [B<-id> <I<user ID (decimal)>>]
!     [B<-sysname> <I<host's '@sys' value>>] [B<-unlog>] [B<-tokens>]
      [B<-help>]
  
! B<knfs> B<-ho> <I<host name>> [B<-i> <I<user ID (decimal)>>]
!     [B<-s> <I<host's '@sys' value>>] [B<-u>] [B<-t>] [B<-he>]
  
  =head1 DESCRIPTION
  
--- 4,21 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<knfs> S<<< B<-host> <I<host name>> >>> S<<< [B<-id> <I<user ID (decimal)>>] >>>
!     S<<< [B<-sysname> <I<host's '@sys' value>>] >>> [B<-unlog>] [B<-tokens>]
      [B<-help>]
  
! B<knfs> S<<< B<-ho> <I<host name>> >>> S<<< [B<-i> <I<user ID (decimal)>>] >>>
!     S<<< [B<-s> <I<host's '@sys' value>>] >>> [B<-u>] [B<-t>] [B<-he>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod1/kpasswd.pod
diff -c openafs/doc/man-pages/pod1/kpasswd.pod:1.3 openafs/doc/man-pages/pod1/kpasswd.pod:1.4
*** openafs/doc/man-pages/pod1/kpasswd.pod:1.3	Tue Dec 20 19:41:17 2005
--- openafs/doc/man-pages/pod1/kpasswd.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,17 ****
  
  =head1 SYNOPSIS
  
! B<kpasswd> [B<-x>] [B<-principal> <I<user name>>]
!     [B<-password> <I<user's password>>]
!     [B<-newpassword> <I<user's new password>>] [B<-cell> <I<cell name>>]
!     [B<-servers> <I<explicit list of servers>>+] [B<-pipe>] [B<-help>]
! 
! B<kpasswd> [B<-x>] [B<-pr> <I<user name>>] [B<-pa> <I<user's password>>]
!     [B<-n> <I<user's new password>>] [B<-c> <I<cell name>>]
!     [B<-s> <I<explicit list of servers>>+] [B<-pi>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,23 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<kpasswd> [B<-x>] S<<< [B<-principal> <I<user name>>] >>>
!     S<<< [B<-password> <I<user's password>>] >>>
!     S<<< [B<-newpassword> <I<user's new password>>] >>> S<<< [B<-cell> <I<cell name>>] >>>
!     S<<< [B<-servers> <I<explicit list of servers>>+] >>> [B<-pipe>] [B<-help>]
! 
! B<kpasswd> [B<-x>] S<<< [B<-pr> <I<user name>>] >>> S<<< [B<-pa> <I<user's password>>] >>>
!     S<<< [B<-n> <I<user's new password>>] >>> S<<< [B<-c> <I<cell name>>] >>>
!     S<<< [B<-s> <I<explicit list of servers>>+] >>> [B<-pi>] [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod1/livesys.pod
diff -c openafs/doc/man-pages/pod1/livesys.pod:1.1 openafs/doc/man-pages/pod1/livesys.pod:1.2
*** openafs/doc/man-pages/pod1/livesys.pod:1.1	Thu Dec 22 02:34:50 2005
--- openafs/doc/man-pages/pod1/livesys.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,11 ****
--- 4,17 ----
  
  =head1 SYNOPSIS
  
+ =for html
+ <div class="synopsis">
+ 
  B<livesys>
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The B<livesys> command displays the string stored in kernel memory that
Index: openafs/doc/man-pages/pod1/package_test.pod
diff -c openafs/doc/man-pages/pod1/package_test.pod:1.3 openafs/doc/man-pages/pod1/package_test.pod:1.4
*** openafs/doc/man-pages/pod1/package_test.pod:1.3	Tue Dec 13 14:21:14 2005
--- openafs/doc/man-pages/pod1/package_test.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,10 ****
  
  =head1 SYNOPSIS
  
! B<package_test> <I<config file>>
  
  =head1 DESCRIPTION
  
--- 4,16 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! S<<< B<package_test> <I<config file>> >>>
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod1/pagsh.pod
diff -c openafs/doc/man-pages/pod1/pagsh.pod:1.3 openafs/doc/man-pages/pod1/pagsh.pod:1.4
*** openafs/doc/man-pages/pod1/pagsh.pod:1.3	Tue Dec 20 19:41:17 2005
--- openafs/doc/man-pages/pod1/pagsh.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,11 ****
--- 4,17 ----
  
  =head1 SYNOPSIS
  
+ =for html
+ <div class="synopsis">
+ 
  B<pagsh>
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The B<pagsh> command creates a new command shell (owned by the issuer of
Index: openafs/doc/man-pages/pod1/pts_adduser.pod
diff -c openafs/doc/man-pages/pod1/pts_adduser.pod:1.3 openafs/doc/man-pages/pod1/pts_adduser.pod:1.4
*** openafs/doc/man-pages/pod1/pts_adduser.pod:1.3	Tue Dec 20 19:41:17 2005
--- openafs/doc/man-pages/pod1/pts_adduser.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,14 ****
  
  =head1 SYNOPSIS
  
! B<pts adduser> B<-user> <I<user name>>+ B<-group> <I<group name>>+
!     [B<-cell> <I<cell name>>] [B<-noauth>] [B<-force>] [B<-help>]
  
! B<pts ad> B<-u> <I<user name>>+ B<-g> <I<group name>>+
!     [B<-c> <I<cell name>>] [B<-n>] [B<-f>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,20 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<pts adduser> S<<< B<-user> <I<user name>>+ >>> S<<< B<-group> <I<group name>>+ >>>
!     S<<< [B<-cell> <I<cell name>>] >>> [B<-noauth>] [B<-force>] [B<-help>]
! 
! B<pts ad> S<<< B<-u> <I<user name>>+ >>> S<<< B<-g> <I<group name>>+ >>>
!     S<<< [B<-c> <I<cell name>>] >>> [B<-n>] [B<-f>] [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod1/pts_apropos.pod
diff -c openafs/doc/man-pages/pod1/pts_apropos.pod:1.2 openafs/doc/man-pages/pod1/pts_apropos.pod:1.3
*** openafs/doc/man-pages/pod1/pts_apropos.pod:1.2	Fri Dec  9 08:26:31 2005
--- openafs/doc/man-pages/pod1/pts_apropos.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,12 ****
  
  =head1 SYNOPSIS
  
! B<pts apropos> B<-topic> <I<help string>> [B<-help>]
  
! B<pts ap> B<-t> <I<help string>> [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,18 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<pts apropos> S<<< B<-topic> <I<help string>> >>> [B<-help>]
! 
! B<pts ap> S<<< B<-t> <I<help string>> >>> [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod1/pts_chown.pod
diff -c openafs/doc/man-pages/pod1/pts_chown.pod:1.3 openafs/doc/man-pages/pod1/pts_chown.pod:1.4
*** openafs/doc/man-pages/pod1/pts_chown.pod:1.3	Tue Dec 20 19:41:17 2005
--- openafs/doc/man-pages/pod1/pts_chown.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,14 ****
  
  =head1 SYNOPSIS
  
! B<pts chown> B<-name> <I<group name>> B<-owner> <I<new owner>>
!     [B<-cell> <I<cell name>>] [B<-noauth>] [B<-force>] [B<-help>]
  
! B<pts cho> B<-na> <I<group name>> B<-o> <I<new owner>>
!     [B<-c> <I<cell name>>] [B<-no>] [B<-f>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,20 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<pts chown> S<<< B<-name> <I<group name>> >>> S<<< B<-owner> <I<new owner>> >>>
!     S<<< [B<-cell> <I<cell name>>] >>> [B<-noauth>] [B<-force>] [B<-help>]
! 
! B<pts cho> S<<< B<-na> <I<group name>> >>> S<<< B<-o> <I<new owner>> >>>
!     S<<< [B<-c> <I<cell name>>] >>> [B<-no>] [B<-f>] [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod1/pts_creategroup.pod
diff -c openafs/doc/man-pages/pod1/pts_creategroup.pod:1.3 openafs/doc/man-pages/pod1/pts_creategroup.pod:1.4
*** openafs/doc/man-pages/pod1/pts_creategroup.pod:1.3	Tue Dec 20 19:41:17 2005
--- openafs/doc/man-pages/pod1/pts_creategroup.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,22 ****
  
  =head1 SYNOPSIS
  
! B<pts creategroup> B<-name> <I<group name>>+
!     [B<-owner> <I<owner of the group>>]
!     [B<-id> <I<id (negated) for the group>>+] [B<-cell> <I<cell name>>]
      [B<-noauth>] [B<-force>] [B<-help>]
  
! B<pts createg> B<-na> <I<group name>>+  [B<-o> <I<owner of the group>>]
!     [B<-i> <I<id (negated) for the group>>+] [B<-c> <I<cell name>>]
      [B<-no>] [B<-f>] [B<-h>]
  
! B<pts cg> B<-na> <I<group name>>+ [B<-o> <I<owner of the group>>]
!     [B<-i> <I<id (negated) for the group>>+] [B<-c> <I<cell name>>]
      [B<-no>] [B<-f>] [B<-h>]
  
  =head1 DESCRIPTION
  
  The B<pts creategroup> command creates an entry in the Protection Database
--- 4,28 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<pts creategroup> S<<< B<-name> <I<group name>>+ >>>
!     S<<< [B<-owner> <I<owner of the group>>] >>>
!     S<<< [B<-id> <I<id (negated) for the group>>+] >>> S<<< [B<-cell> <I<cell name>>] >>>
      [B<-noauth>] [B<-force>] [B<-help>]
  
! B<pts createg> S<<< B<-na> <I<group name>>+ >>>  S<<< [B<-o> <I<owner of the group>>] >>>
!     S<<< [B<-i> <I<id (negated) for the group>>+] >>> S<<< [B<-c> <I<cell name>>] >>>
      [B<-no>] [B<-f>] [B<-h>]
  
! B<pts cg> S<<< B<-na> <I<group name>>+ >>> S<<< [B<-o> <I<owner of the group>>] >>>
!     S<<< [B<-i> <I<id (negated) for the group>>+] >>> S<<< [B<-c> <I<cell name>>] >>>
      [B<-no>] [B<-f>] [B<-h>]
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The B<pts creategroup> command creates an entry in the Protection Database
Index: openafs/doc/man-pages/pod1/pts_createuser.pod
diff -c openafs/doc/man-pages/pod1/pts_createuser.pod:1.3 openafs/doc/man-pages/pod1/pts_createuser.pod:1.4
*** openafs/doc/man-pages/pod1/pts_createuser.pod:1.3	Tue Dec 20 19:41:17 2005
--- openafs/doc/man-pages/pod1/pts_createuser.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,17 ****
  
  =head1 SYNOPSIS
  
! B<pts createuser> B<-name> <I<user name>>+ [B<-id> <I<user id>>+]
!     [B<-cell> <I<cell name>>] [B<-noauth>] [B<-force>] [B<-help>]
  
! B<pts createu> B<-na> <I<user name>>+ [B<-i> <I<user id>>+]
!     [B<-c> <I<cell name>>] [B<-no>] [B<-f>] [B<-h>]
  
! B<pts cu> B<-na> <I<user name>>+ [B<-i> <I<user id>>+]
!     [B<-c> <I<cell name>>] [B<-no>] [B<-f>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,23 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<pts createuser> S<<< B<-name> <I<user name>>+ >>> S<<< [B<-id> <I<user id>>+] >>>
!     S<<< [B<-cell> <I<cell name>>] >>> [B<-noauth>] [B<-force>] [B<-help>]
  
! B<pts createu> S<<< B<-na> <I<user name>>+ >>> S<<< [B<-i> <I<user id>>+] >>>
!     S<<< [B<-c> <I<cell name>>] >>> [B<-no>] [B<-f>] [B<-h>]
! 
! B<pts cu> S<<< B<-na> <I<user name>>+ >>> S<<< [B<-i> <I<user id>>+] >>>
!     S<<< [B<-c> <I<cell name>>] >>> [B<-no>] [B<-f>] [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod1/pts_delete.pod
diff -c openafs/doc/man-pages/pod1/pts_delete.pod:1.2 openafs/doc/man-pages/pod1/pts_delete.pod:1.3
*** openafs/doc/man-pages/pod1/pts_delete.pod:1.2	Fri Dec  9 08:26:31 2005
--- openafs/doc/man-pages/pod1/pts_delete.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,14 ****
  
  =head1 SYNOPSIS
  
! B<pts delete> B<-nameorid> <I<user or group name or id>>+
!     [B<-cell> <I<cell name>>] [B<-noauth>] [B<-force>] [B<-help>]
  
! B<pts d> B<-na> <I<user or group name or id>>+
!     [B<-c> <I<cell name>>] [B<-no>] [B<-f>] [-h]
  
  =head1 DESCRIPTION
  
--- 4,20 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<pts delete> S<<< B<-nameorid> <I<user or group name or id>>+ >>>
!     S<<< [B<-cell> <I<cell name>>] >>> [B<-noauth>] [B<-force>] [B<-help>]
! 
! B<pts d> S<<< B<-na> <I<user or group name or id>>+ >>>
!     S<<< [B<-c> <I<cell name>>] >>> [B<-no>] [B<-f>] [-h]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod1/pts_examine.pod
diff -c openafs/doc/man-pages/pod1/pts_examine.pod:1.3 openafs/doc/man-pages/pod1/pts_examine.pod:1.4
*** openafs/doc/man-pages/pod1/pts_examine.pod:1.3	Tue Dec 20 19:41:17 2005
--- openafs/doc/man-pages/pod1/pts_examine.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,21 ****
  
  =head1 SYNOPSIS
  
! B<pts examine> B<-nameorid> <I<user or group name or id>>+
!     [B<-cell> <I<cell name>>] [B<-noauth>] [B<-force>] [B<-help>]
  
! B<pts e> B<-na> <I<user or group name or id>>+ [B<-c> <I<cell name>>]
      [B<-no>] [B<-f>] [B<-h>]
  
! B<pts check> B<-na> <I<user or group name or id>>+ [B<-c> <I<cell name>>]
      [B<-no>] [B<-f>] [B<-h>]
  
! B<pts che> B<-na> <I<user or group name or id>>+ [B<-c> <I<cell name>>]
      [B<-no>] [B<-f>] [B<-h>]
  
  =head1 DESCRIPTION
  
  The B<pts examine> command displays information from the Protection
--- 4,27 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<pts examine> S<<< B<-nameorid> <I<user or group name or id>>+ >>>
!     S<<< [B<-cell> <I<cell name>>] >>> [B<-noauth>] [B<-force>] [B<-help>]
! 
! B<pts e> S<<< B<-na> <I<user or group name or id>>+ >>> S<<< [B<-c> <I<cell name>>] >>>
      [B<-no>] [B<-f>] [B<-h>]
  
! B<pts check> S<<< B<-na> <I<user or group name or id>>+ >>> S<<< [B<-c> <I<cell name>>] >>>
      [B<-no>] [B<-f>] [B<-h>]
  
! B<pts che> S<<< B<-na> <I<user or group name or id>>+ >>> S<<< [B<-c> <I<cell name>>] >>>
      [B<-no>] [B<-f>] [B<-h>]
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The B<pts examine> command displays information from the Protection
Index: openafs/doc/man-pages/pod1/pts_help.pod
diff -c openafs/doc/man-pages/pod1/pts_help.pod:1.3 openafs/doc/man-pages/pod1/pts_help.pod:1.4
*** openafs/doc/man-pages/pod1/pts_help.pod:1.3	Tue Dec 20 19:41:17 2005
--- openafs/doc/man-pages/pod1/pts_help.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,12 ****
  
  =head1 SYNOPSIS
  
! B<pts help> [B<-topic> <I<help string>>+] [B<-help>]
  
! B<pts h> [B<-t> <I<help string>>+] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,18 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<pts help> S<<< [B<-topic> <I<help string>>+] >>> [B<-help>]
! 
! B<pts h> S<<< [B<-t> <I<help string>>+] >>> [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod1/pts_listentries.pod
diff -c openafs/doc/man-pages/pod1/pts_listentries.pod:1.3 openafs/doc/man-pages/pod1/pts_listentries.pod:1.4
*** openafs/doc/man-pages/pod1/pts_listentries.pod:1.3	Tue Dec 20 19:41:17 2005
--- openafs/doc/man-pages/pod1/pts_listentries.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,13 ****
  
  =head1 SYNOPSIS
  
! B<pts listentries> [B<-users>] [B<-groups>] [B<-cell> <I<cell name>>]
      [B<-noauth>] [B<-force>] [B<-help>]
  
! B<pts liste> [B<-u>] [B<-g>] [B<-c> <I<cell name>>] [B<-n>] [B<-f>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,19 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<pts listentries> [B<-users>] [B<-groups>] S<<< [B<-cell> <I<cell name>>] >>>
      [B<-noauth>] [B<-force>] [B<-help>]
  
! B<pts liste> [B<-u>] [B<-g>] S<<< [B<-c> <I<cell name>>] >>> [B<-n>] [B<-f>] [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod1/pts_listmax.pod
diff -c openafs/doc/man-pages/pod1/pts_listmax.pod:1.2 openafs/doc/man-pages/pod1/pts_listmax.pod:1.3
*** openafs/doc/man-pages/pod1/pts_listmax.pod:1.2	Fri Dec  9 08:26:31 2005
--- openafs/doc/man-pages/pod1/pts_listmax.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,12 ****
  
  =head1 SYNOPSIS
  
! B<pts listmax> [B<-cell> <I<cell name>>] [B<-noauth>] [B<-force>] [B<-help>]
  
! B<pts listm> [B<-c> <I<cell name>>] [B<-n>] [B<-f>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,18 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<pts listmax> S<<< [B<-cell> <I<cell name>>] >>> [B<-noauth>] [B<-force>] [B<-help>]
! 
! B<pts listm> S<<< [B<-c> <I<cell name>>] >>> [B<-n>] [B<-f>] [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod1/pts_listowned.pod
diff -c openafs/doc/man-pages/pod1/pts_listowned.pod:1.2 openafs/doc/man-pages/pod1/pts_listowned.pod:1.3
*** openafs/doc/man-pages/pod1/pts_listowned.pod:1.2	Fri Dec  9 08:26:31 2005
--- openafs/doc/man-pages/pod1/pts_listowned.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,15 ****
  
  =head1 SYNOPSIS
  
! B<pts listowned> B<-nameorid> <I<user or group name or id>>+
      [-cell <I<cell name>>] [B<-noauth>] [B<-force>] [B<-help>]
  
! B<pts listo> B<-na> <I<user or group name or id>>+
      [-c <I<cell name>>] [B<-no>] [B<-f>] [B<-h>]
  
  =head1 DESCRIPTION
  
  The B<pts listowned> command lists the groups owned by each user or group
--- 4,21 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<pts listowned> S<<< B<-nameorid> <I<user or group name or id>>+ >>>
      [-cell <I<cell name>>] [B<-noauth>] [B<-force>] [B<-help>]
  
! B<pts listo> S<<< B<-na> <I<user or group name or id>>+ >>>
      [-c <I<cell name>>] [B<-no>] [B<-f>] [B<-h>]
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The B<pts listowned> command lists the groups owned by each user or group
Index: openafs/doc/man-pages/pod1/pts_membership.pod
diff -c openafs/doc/man-pages/pod1/pts_membership.pod:1.3 openafs/doc/man-pages/pod1/pts_membership.pod:1.4
*** openafs/doc/man-pages/pod1/pts_membership.pod:1.3	Tue Dec 20 19:41:17 2005
--- openafs/doc/man-pages/pod1/pts_membership.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,21 ****
  
  =head1 SYNOPSIS
  
! B<pts membership> B<-nameorid> <I<user or group name or id>>+
!     [B<-cell> <I<cell name>>] [B<-noauth>] [B<-force>] [B<-help>]
  
! B<pts m> B<-na> <I<user or group name or id>>+ [B<-c> <I<cell name>>]
      [B<-no>] [B<-f>] [B<-h>]
  
! B<pts groups> B<-na> <I<user or group name or id>>+ [-c <I<cell name>>]
      [B<-no>] [B<-f>] [B<-h>]
  
! B<pts g> B<-na> <I<user or group name or id>>+ [B<-c> <I<cell name>>]
      [B<-no>] [B<-f>] [B<-h>]
  
  =head1 DESCRIPTION
  
  The B<pts membership> command lists the groups to which each user or
--- 4,27 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<pts membership> S<<< B<-nameorid> <I<user or group name or id>>+ >>>
!     S<<< [B<-cell> <I<cell name>>] >>> [B<-noauth>] [B<-force>] [B<-help>]
! 
! B<pts m> S<<< B<-na> <I<user or group name or id>>+ >>> S<<< [B<-c> <I<cell name>>] >>>
      [B<-no>] [B<-f>] [B<-h>]
  
! B<pts groups> S<<< B<-na> <I<user or group name or id>>+ >>> [-c <I<cell name>>]
      [B<-no>] [B<-f>] [B<-h>]
  
! B<pts g> S<<< B<-na> <I<user or group name or id>>+ >>> S<<< [B<-c> <I<cell name>>] >>>
      [B<-no>] [B<-f>] [B<-h>]
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The B<pts membership> command lists the groups to which each user or
Index: openafs/doc/man-pages/pod1/pts_removeuser.pod
diff -c openafs/doc/man-pages/pod1/pts_removeuser.pod:1.2 openafs/doc/man-pages/pod1/pts_removeuser.pod:1.3
*** openafs/doc/man-pages/pod1/pts_removeuser.pod:1.2	Fri Dec  9 08:26:31 2005
--- openafs/doc/man-pages/pod1/pts_removeuser.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,14 ****
  
  =head1 SYNOPSIS
  
! B<pts removeuser> B<-user> <I<user name>>+ B<-group> <I<group name>>+
!     [B<-cell> <I<cell name>>] [B<-noauth>] [B<-force>] [B<-help>]
  
! B<pts rem> B<-u> <I<user name>>+ B<-g> <I<group name>>+
!     [B<-c> <I<cell name>>] [B<-n>] [B<-f>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,20 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<pts removeuser> S<<< B<-user> <I<user name>>+ >>> S<<< B<-group> <I<group name>>+ >>>
!     S<<< [B<-cell> <I<cell name>>] >>> [B<-noauth>] [B<-force>] [B<-help>]
! 
! B<pts rem> S<<< B<-u> <I<user name>>+ >>> S<<< B<-g> <I<group name>>+ >>>
!     S<<< [B<-c> <I<cell name>>] >>> [B<-n>] [B<-f>] [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod1/pts_rename.pod
diff -c openafs/doc/man-pages/pod1/pts_rename.pod:1.2 openafs/doc/man-pages/pod1/pts_rename.pod:1.3
*** openafs/doc/man-pages/pod1/pts_rename.pod:1.2	Fri Dec  9 08:26:31 2005
--- openafs/doc/man-pages/pod1/pts_rename.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,15 ****
  
  =head1 SYNOPSIS
  
! B<pts rename> B<-oldname> <I<old name>> B<-newname> <I<new name>>
!     [B<-cell> <I<cell name>>]  [B<-noauth>]  [B<-force>]  [B<-help>]
  
! B<pts ren> B<-o> <I<old name>> B<-ne> <I<new name>> [B<-c> <I<cell name>>]
      [B<-no>] [B<-f>] [B<-h>]
  
  =head1 DESCRIPTION
  
  The B<pts rename> command changes the name of the user, machine, or group
--- 4,21 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<pts rename> S<<< B<-oldname> <I<old name>> >>> S<<< B<-newname> <I<new name>> >>>
!     S<<< [B<-cell> <I<cell name>>] >>>  [B<-noauth>]  [B<-force>]  [B<-help>]
! 
! B<pts ren> S<<< B<-o> <I<old name>> >>> S<<< B<-ne> <I<new name>> >>> S<<< [B<-c> <I<cell name>>] >>>
      [B<-no>] [B<-f>] [B<-h>]
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The B<pts rename> command changes the name of the user, machine, or group
Index: openafs/doc/man-pages/pod1/pts_setfields.pod
diff -c openafs/doc/man-pages/pod1/pts_setfields.pod:1.3 openafs/doc/man-pages/pod1/pts_setfields.pod:1.4
*** openafs/doc/man-pages/pod1/pts_setfields.pod:1.3	Tue Dec 20 19:41:17 2005
--- openafs/doc/man-pages/pod1/pts_setfields.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,19 ****
  
  =head1 SYNOPSIS
  
! B<pts setfields> B<-nameorid> <I<user or group name or id>>+
!     [B<-access> <I<set privacy flags>>]
!     [B<-groupquota> <I<set limit on group creation>>]
!     [B<-cell> <I<cell name>>] [B<-noauth>] [B<-force>] [B<-help>]
! 
! B<pts setf> B<-na> <I<user or group name or id>>+
!     [B<-a> <I<set privacy flags>>]
!     [B<-g> <I<set limit on group creation>>] [B<-c> <I<cell name>>]
      [B<-no>] [B<-f>] [B<-h>]
  
  =head1 DESCRIPTION
  
  The B<pts setfields> command sets the group-creation quota, the privacy
--- 4,25 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<pts setfields> S<<< B<-nameorid> <I<user or group name or id>>+ >>>
!     S<<< [B<-access> <I<set privacy flags>>] >>>
!     S<<< [B<-groupquota> <I<set limit on group creation>>] >>>
!     S<<< [B<-cell> <I<cell name>>] >>> [B<-noauth>] [B<-force>] [B<-help>]
! 
! B<pts setf> S<<< B<-na> <I<user or group name or id>>+ >>>
!     S<<< [B<-a> <I<set privacy flags>>] >>>
!     S<<< [B<-g> <I<set limit on group creation>>] >>> S<<< [B<-c> <I<cell name>>] >>>
      [B<-no>] [B<-f>] [B<-h>]
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The B<pts setfields> command sets the group-creation quota, the privacy
Index: openafs/doc/man-pages/pod1/pts_setmax.pod
diff -c openafs/doc/man-pages/pod1/pts_setmax.pod:1.3 openafs/doc/man-pages/pod1/pts_setmax.pod:1.4
*** openafs/doc/man-pages/pod1/pts_setmax.pod:1.3	Tue Dec 20 19:41:17 2005
--- openafs/doc/man-pages/pod1/pts_setmax.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,14 ****
  
  =head1 SYNOPSIS
  
! B<pts setmax> [B<-group> <I<group max>>] [B<-user> <I<user max>>]
!     [B<-cell> <I<cell name>>] [B<-noauth>] [B<-force>] [B<-help>]
  
! B<pts setm> [B<-g> I<group max>>] [B<-u> <I<user max>>]
!     [B<-c> <I<cell name>>] [B<-n>] [B<-f>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,20 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<pts setmax> S<<< [B<-group> <I<group max>>] >>> S<<< [B<-user> <I<user max>>] >>>
!     S<<< [B<-cell> <I<cell name>>] >>> [B<-noauth>] [B<-force>] [B<-help>]
! 
! B<pts setm> [B<-g> I<group max>>] S<<< [B<-u> <I<user max>>] >>>
!     S<<< [B<-c> <I<cell name>>] >>> [B<-n>] [B<-f>] [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod1/rxdebug.pod
diff -c openafs/doc/man-pages/pod1/rxdebug.pod:1.3 openafs/doc/man-pages/pod1/rxdebug.pod:1.4
*** openafs/doc/man-pages/pod1/rxdebug.pod:1.3	Tue Dec 20 19:41:17 2005
--- openafs/doc/man-pages/pod1/rxdebug.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,21 ****
  
  =head1 SYNOPSIS
  
! B<rxdebug> B<-servers> <I<server machine>> [B<-port> <I<IP port>>]
      [B<-nodally>] [B<-allconnections>] [B<-rxstats>] [B<-onlyserver>]
!     [B<-onlyclient>] [B<-onlyport> <I<show only port>>]
!     [B<-onlyhost> <I<show only host>>]
!     [B<-onlyauth> <I<show only auth level>>] [B<-version>]
      [B<-noconns>] [B<-peers>] [B<-help>]
  
! B<rxdebug> B<-s> <I<server machine>> [B<-po> <I<IP port>>] [B<-nod>]
!     [B<-a>] [B<-r>] [B<-onlys>] [B<-onlyc>] [B<-onlyp> <I<show only port>>]
!     [B<-onlyh> <I<show only host>>] [-onlya <I<show only auth level>>]
      [B<-v>] [B<-noc>] [B<-pe>] [B<-h>]
  
  =head1 DESCRIPTION
  
  The B<rxdebug> command provides a trace of Rx activity for the server or
--- 4,27 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<rxdebug> S<<< B<-servers> <I<server machine>> >>> S<<< [B<-port> <I<IP port>>] >>>
      [B<-nodally>] [B<-allconnections>] [B<-rxstats>] [B<-onlyserver>]
!     [B<-onlyclient>] S<<< [B<-onlyport> <I<show only port>>] >>>
!     S<<< [B<-onlyhost> <I<show only host>>] >>>
!     S<<< [B<-onlyauth> <I<show only auth level>>] >>> [B<-version>]
      [B<-noconns>] [B<-peers>] [B<-help>]
  
! B<rxdebug> S<<< B<-s> <I<server machine>> >>> S<<< [B<-po> <I<IP port>>] >>> [B<-nod>]
!     [B<-a>] [B<-r>] [B<-onlys>] [B<-onlyc>] S<<< [B<-onlyp> <I<show only port>>] >>>
!     S<<< [B<-onlyh> <I<show only host>>] >>> [-onlya <I<show only auth level>>]
      [B<-v>] [B<-noc>] [B<-pe>] [B<-h>]
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The B<rxdebug> command provides a trace of Rx activity for the server or
Index: openafs/doc/man-pages/pod1/rxgen.pod
diff -c openafs/doc/man-pages/pod1/rxgen.pod:1.1 openafs/doc/man-pages/pod1/rxgen.pod:1.3
*** openafs/doc/man-pages/pod1/rxgen.pod:1.1	Tue Dec 27 18:30:22 2005
--- openafs/doc/man-pages/pod1/rxgen.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,9 ****
--- 4,12 ----
  
  =head1 SYNOPSIS
  
+ =for html
+ <div class="synopsis">
+ 
  B<rxgen> [B<-h> | B<-c> | B<-C> | B<-S> | B<-r>] [B<-dkpR>]
      [B<-I> I<dir>] [B<-P> I<prefix>] [B<-o> I<outfile>] [I<infile>]
  
***************
*** 13,18 ****
--- 16,24 ----
  
  B<rxgen> B<-m> [B<-o> I<outfile>] [I<infile>]
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  B<rxgen> is a tool that generates C code to implement the Rx RPC protocol;
***************
*** 509,514 ****
--- 515,522 ----
  routine must malloc a string without ever freeing it itself; this is done
  by the B<rxgen> server stub).
  
+ =back
+ 
  Note that for INOUT and OUT string parameters, in both the client and
  server sides their arguments must be char of pointers (i.e. char **).
  
Index: openafs/doc/man-pages/pod1/scout.pod
diff -c openafs/doc/man-pages/pod1/scout.pod:1.3 openafs/doc/man-pages/pod1/scout.pod:1.4
*** openafs/doc/man-pages/pod1/scout.pod:1.3	Tue Dec 20 19:41:17 2005
--- openafs/doc/man-pages/pod1/scout.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,20 ****
  
  =head1 SYNOPSIS
  
! B<scout> [B<initcmd>] B<-server> <I<servers to monitor>>+
!       [B<-basename> <I<base server name>>]
!       [B<-frequency> <I<poll frequency, in seconds>>] [B<-host>]
!       [B<-attention> <I<specify attention (highlighting) level>>+]
!       [B<-debug> <I<turn debugging output on to the named file>>]
        [B<-help>]
  
! B<scout> [B<i>] B<-s> <I<servers to monitor>>+
!       [B<-b> <I<base server name>>] [B<-f> <I<poll frequency, in seconds>>]
!       [B<-ho>] [B<-a> <I<specify attention (highlighting) level>>+]
!       [B<-d> <I<turn debugging output on to the named file>>] [B<-he>]
  
  =head1 DESCRIPTION
  
--- 4,26 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<scout> [B<initcmd>] S<<< B<-server> <I<servers to monitor>>+ >>>
!       S<<< [B<-basename> <I<base server name>>] >>>
!       S<<< [B<-frequency> <I<poll frequency, in seconds>>] >>> [B<-host>]
!       S<<< [B<-attention> <I<specify attention (highlighting) level>>+] >>>
!       S<<< [B<-debug> <I<turn debugging output on to the named file>>] >>>
        [B<-help>]
  
! B<scout> [B<i>] S<<< B<-s> <I<servers to monitor>>+ >>>
!       S<<< [B<-b> <I<base server name>>] >>> S<<< [B<-f> <I<poll frequency, in seconds>>] >>>
!       [B<-ho>] S<<< [B<-a> <I<specify attention (highlighting) level>>+] >>>
!       S<<< [B<-d> <I<turn debugging output on to the named file>>] >>> [B<-he>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod1/sys.pod
diff -c openafs/doc/man-pages/pod1/sys.pod:1.3 openafs/doc/man-pages/pod1/sys.pod:1.4
*** openafs/doc/man-pages/pod1/sys.pod:1.3	Thu Dec 22 02:34:50 2005
--- openafs/doc/man-pages/pod1/sys.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,11 ****
--- 4,17 ----
  
  =head1 SYNOPSIS
  
+ =for html
+ <div class="synopsis">
+ 
  B<sys>
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The B<sys> command displays the string set at compile time that indicates
Index: openafs/doc/man-pages/pod1/tokens.pod
diff -c openafs/doc/man-pages/pod1/tokens.pod:1.3 openafs/doc/man-pages/pod1/tokens.pod:1.4
*** openafs/doc/man-pages/pod1/tokens.pod:1.3	Tue Dec 20 19:41:17 2005
--- openafs/doc/man-pages/pod1/tokens.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,13 ****
--- 4,19 ----
  
  =head1 SYNOPSIS
  
+ =for html
+ <div class="synopsis">
+ 
  B<tokens> [B<-help>]
  
  B<tokens> [B<-h>]
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The tokens command displays all tokens (tickets) cached on the local
Index: openafs/doc/man-pages/pod1/translate_et.pod
diff -c openafs/doc/man-pages/pod1/translate_et.pod:1.2 openafs/doc/man-pages/pod1/translate_et.pod:1.3
*** openafs/doc/man-pages/pod1/translate_et.pod:1.2	Fri Dec  9 08:26:31 2005
--- openafs/doc/man-pages/pod1/translate_et.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,10 ****
  
  =head1 SYNOPSIS
  
! B<translate_et> <I<error number>>+
  
  =head1 DESCRIPTION
  
--- 4,16 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! S<<< B<translate_et> <I<error number>>+ >>>
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod1/udebug.pod
diff -c openafs/doc/man-pages/pod1/udebug.pod:1.3 openafs/doc/man-pages/pod1/udebug.pod:1.4
*** openafs/doc/man-pages/pod1/udebug.pod:1.3	Tue Dec 20 19:41:17 2005
--- openafs/doc/man-pages/pod1/udebug.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,13 ****
  
  =head1 SYNOPSIS
  
! B<udebug> B<-servers> <I<server machine>> [B<-port> <I<IP port>>]
      [B<-long>] [B<-help>]
  
! B<udebug> B<-s> <I<server machine>> [B<-p> <I<IP port>>] [B<-l>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,19 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<udebug> S<<< B<-servers> <I<server machine>> >>> S<<< [B<-port> <I<IP port>>] >>>
      [B<-long>] [B<-help>]
  
! B<udebug> S<<< B<-s> <I<server machine>> >>> S<<< [B<-p> <I<IP port>>] >>> [B<-l>] [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod1/unlog.pod
diff -c openafs/doc/man-pages/pod1/unlog.pod:1.2 openafs/doc/man-pages/pod1/unlog.pod:1.3
*** openafs/doc/man-pages/pod1/unlog.pod:1.2	Fri Dec  9 08:26:31 2005
--- openafs/doc/man-pages/pod1/unlog.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,13 ****
  
  =head1 SYNOPSIS
  
! B<unlog> [B<-cell> <I<cell name>>+] [B<-help>]
  
  B<unlog> [B<-c ><I<cell name>>+] [B<-h>]
  
  =head1 DESCRIPTION
  
  The B<unlog> command by default discards all tokens that the issuer
--- 4,19 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<unlog> S<<< [B<-cell> <I<cell name>>+] >>> [B<-help>]
  
  B<unlog> [B<-c ><I<cell name>>+] [B<-h>]
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The B<unlog> command by default discards all tokens that the issuer
Index: openafs/doc/man-pages/pod1/up.pod
diff -c openafs/doc/man-pages/pod1/up.pod:1.2 openafs/doc/man-pages/pod1/up.pod:1.4
*** openafs/doc/man-pages/pod1/up.pod:1.2	Fri Dec  9 08:26:31 2005
--- openafs/doc/man-pages/pod1/up.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,12 ****
  
  =head1 SYNOPSIS
  
! B<up> [B<-v>] [B<-1>] [B<-f>] [B<-r>] [B<-x>]
      <I<source directory>> <I<destination directory>>
  
  =head1 DESCRIPTION
  
  The B<up> command recursively copies the files and subdirectories in a
--- 4,18 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<up> [B<-v>] [B<-1>] [B<-f>] [B<-r>] [B<-x>] [B<-m>]
      <I<source directory>> <I<destination directory>>
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The B<up> command recursively copies the files and subdirectories in a
***************
*** 84,89 ****
--- 90,103 ----
  first (user) C<w> (write) mode bit is turned off on the version in the
  destination directory.
  
+ =item B<-m>
+ 
+ Recognize and copy mount points rather than traversing the volumes they
+ reference during the recursive copy operation.  Without B<-m>, B<up>'s
+ default behavior is to copy the contents of all volumes and subvolumes
+ mounted under the source directory into the volume containing the
+ destination directory.
+ 
  =item B<-r>
  
  Creates a backup copy of all files overwritten in the destination
Index: openafs/doc/man-pages/pod1/vos_addsite.pod
diff -c openafs/doc/man-pages/pod1/vos_addsite.pod:1.3 openafs/doc/man-pages/pod1/vos_addsite.pod:1.4
*** openafs/doc/man-pages/pod1/vos_addsite.pod:1.3	Tue Dec 20 19:41:17 2005
--- openafs/doc/man-pages/pod1/vos_addsite.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,19 ****
  
  =head1 SYNOPSIS
  
! B<vos addsite> B<-server> <I<machine name for new site>>
!     B<-partition> <I<partition name for new site>>
!     B<-id> <I<volume name or ID>> [B<-cell> <I<cell name>>]
      [B<-noauth>] [B<-localauth>] [B<-verbose>] [B<-help>]
  
! B<vos ad> B<-s> <I<machine name for new site>>
!     B<-p> <I<partition name for new site>>
!     B<-i> <I<volume name or ID>> [B<-c> <I<cell name>>]
      [B<-n>] [B<-l>] [B<-v>] [B<-h>]
  
  =head1 DESCRIPTION
  
  The B<vos addsite> command defines a new read-only site (partition on a
--- 4,25 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<vos addsite> S<<< B<-server> <I<machine name for new site>> >>>
!     S<<< B<-partition> <I<partition name for new site>> >>>
!     S<<< B<-id> <I<volume name or ID>> >>> S<<< [B<-cell> <I<cell name>>] >>>
      [B<-noauth>] [B<-localauth>] [B<-verbose>] [B<-help>]
  
! B<vos ad> S<<< B<-s> <I<machine name for new site>> >>>
!     S<<< B<-p> <I<partition name for new site>> >>>
!     S<<< B<-i> <I<volume name or ID>> >>> S<<< [B<-c> <I<cell name>>] >>>
      [B<-n>] [B<-l>] [B<-v>] [B<-h>]
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The B<vos addsite> command defines a new read-only site (partition on a
Index: openafs/doc/man-pages/pod1/vos_apropos.pod
diff -c openafs/doc/man-pages/pod1/vos_apropos.pod:1.2 openafs/doc/man-pages/pod1/vos_apropos.pod:1.3
*** openafs/doc/man-pages/pod1/vos_apropos.pod:1.2	Fri Dec  9 08:26:31 2005
--- openafs/doc/man-pages/pod1/vos_apropos.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,12 ****
  
  =head1 SYNOPSIS
  
! B<vos apropos> B<-topic> <I<help string>> [B<-help>]
  
! B<vos ap> B<-t> <I<help string>> [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,18 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<vos apropos> S<<< B<-topic> <I<help string>> >>> [B<-help>]
! 
! B<vos ap> S<<< B<-t> <I<help string>> >>> [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod1/vos_backup.pod
diff -c openafs/doc/man-pages/pod1/vos_backup.pod:1.3 openafs/doc/man-pages/pod1/vos_backup.pod:1.4
*** openafs/doc/man-pages/pod1/vos_backup.pod:1.3	Tue Dec 20 19:41:17 2005
--- openafs/doc/man-pages/pod1/vos_backup.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,15 ****
  
  =head1 SYNOPSIS
  
! B<vos backup> B<-id> <I<volume name or ID>> [B<-cell> <I<cell name>>]
      [B<-noauth>] [B<-localauth>] [B<-verbose>] [B<-help>]
  
! B<vos backup> B<-i> <I<volume name or ID>> [B<-c><I<cell name>>]
      [B<-n>] [B<-l>] [B<-v>] [B<-h>]
  
  =head1 DESCRIPTION
  
  The B<vos backup> command clones the indicated read/write volume to create
--- 4,21 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<vos backup> S<<< B<-id> <I<volume name or ID>> >>> S<<< [B<-cell> <I<cell name>>] >>>
      [B<-noauth>] [B<-localauth>] [B<-verbose>] [B<-help>]
  
! B<vos backup> S<<< B<-i> <I<volume name or ID>> >>> [B<-c><I<cell name>>]
      [B<-n>] [B<-l>] [B<-v>] [B<-h>]
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The B<vos backup> command clones the indicated read/write volume to create
Index: openafs/doc/man-pages/pod1/vos_backupsys.pod
diff -c openafs/doc/man-pages/pod1/vos_backupsys.pod:1.3 openafs/doc/man-pages/pod1/vos_backupsys.pod:1.5
*** openafs/doc/man-pages/pod1/vos_backupsys.pod:1.3	Tue Dec 20 19:41:17 2005
--- openafs/doc/man-pages/pod1/vos_backupsys.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,19 ****
  
  =head1 SYNOPSIS
  
! B<vos backupsys> [B<-prefix> <I<common prefix on volume(s)>>+]
!     [B<-server> <I<machine name>>] [B<-partition> <I<partition name>>]
!     [B<-exclude>] [B<-xprefix> <I<negative prefix on volume(s)>>+]
!     [B<-dryrun>] [B<-cell> <I<cell name>>] [B<-noauth>] [B<-localauth>]
      [B<-verbose>] [B<-help>]
  
! B<vos backups> [B<-pr> <I<common prefix on volume(s)>>+]
!     [B<-s> <I<machine name>>] [B<-pa> <I<partition name>>] [B<-e>]
!     [B<-x> <I<negative prefix on volume(s)>>+] [B<-d>]
!     [B<-c> <I<cell name>>] [B<-n>] [B<-l>] [B<-v>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,25 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<vos backupsys> S<<< [B<-prefix> <I<common prefix on volume(s)>>+] >>>
!     S<<< [B<-server> <I<machine name>>] >>> S<<< [B<-partition> <I<partition name>>] >>>
!     [B<-exclude>] S<<< [B<-xprefix> <I<negative prefix on volume(s)>>+] >>>
!     [B<-dryrun>] S<<< [B<-cell> <I<cell name>>] >>> [B<-noauth>] [B<-localauth>]
      [B<-verbose>] [B<-help>]
  
! B<vos backups> S<<< [B<-pr> <I<common prefix on volume(s)>>+] >>>
!     S<<< [B<-s> <I<machine name>>] >>> S<<< [B<-pa> <I<partition name>>] >>> [B<-e>]
!     S<<< [B<-x> <I<negative prefix on volume(s)>>+] >>> [B<-d>]
!     S<<< [B<-c> <I<cell name>>] >>> [B<-n>] [B<-l>] [B<-v>] [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
***************
*** 82,87 ****
--- 88,95 ----
  which can be used to define disjoint groups of volumes. Each value can be
  one of two types:
  
+ =over 4
+ 
  =item *
  
  A simple character string, which matches volumes whose name begin with the
***************
*** 101,106 ****
--- 109,116 ----
  
     -prefix  '^.*aix'
  
+ =back 4
+ 
  To display a list of the volumes to be cloned, without actually cloning
  them, include the B<-dryrun> flag. To display a statement that summarizes
  the criteria being used to select volume, include the B<-verbose> flag.
Index: openafs/doc/man-pages/pod1/vos_changeaddr.pod
diff -c openafs/doc/man-pages/pod1/vos_changeaddr.pod:1.3 openafs/doc/man-pages/pod1/vos_changeaddr.pod:1.4
*** openafs/doc/man-pages/pod1/vos_changeaddr.pod:1.3	Tue Dec 20 19:41:17 2005
--- openafs/doc/man-pages/pod1/vos_changeaddr.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,16 ****
  
  =head1 SYNOPSIS
  
! B<vos changeaddr> B<-oldaddr> <I<original IP address>>
!     [B<-newaddr> <I<new IP address>>] [B<-remove>]
!     [B<-cell> <I<cell name>>] [B<-noauth>] [B<-localauth>]
      [B<-verbose>] [B<-help>]
  
! B<vos ch> B<-o> <I<original IP address>> [B<-ne> <I<new IP address>>]
!     [B<-r>] [B<-c> <I<cell name>>] [B<-no>] [B<-l>] [B<-v>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,22 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<vos changeaddr> S<<< B<-oldaddr> <I<original IP address>> >>>
!     S<<< [B<-newaddr> <I<new IP address>>] >>> [B<-remove>]
!     S<<< [B<-cell> <I<cell name>>] >>> [B<-noauth>] [B<-localauth>]
      [B<-verbose>] [B<-help>]
  
! B<vos ch> S<<< B<-o> <I<original IP address>> >>> S<<< [B<-ne> <I<new IP address>>] >>>
!     [B<-r>] S<<< [B<-c> <I<cell name>>] >>> [B<-no>] [B<-l>] [B<-v>] [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod1/vos_create.pod
diff -c openafs/doc/man-pages/pod1/vos_create.pod:1.3 openafs/doc/man-pages/pod1/vos_create.pod:1.4
*** openafs/doc/man-pages/pod1/vos_create.pod:1.3	Tue Dec 20 19:41:17 2005
--- openafs/doc/man-pages/pod1/vos_create.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,17 ****
  
  =head1 SYNOPSIS
  
! B<vos create> B<-server> <I<machine name>> B<-partition> <I<partition name>>
!     B<-name> <I<volume name>> [B<-maxquota> <I<initial quota (KB)>>]
!     [B<-cell> <I<cell name>>] [B<-noauth>] [B<-localauth>] [B<-verbose>]
      [B<-help>]
  
! B<vos cr> B<-s> <I<machine name>> B<-p> <I<partition name>>
!     B<-na> <I<volume name>> [B<-m> <I<initial quota (KB)>>]
!     [B<-c> <I<cell name>>] [B<-no>] [B<-l>] [B<-v>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,23 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<vos create> S<<< B<-server> <I<machine name>> >>> S<<< B<-partition> <I<partition name>> >>>
!     S<<< B<-name> <I<volume name>> >>> S<<< [B<-maxquota> <I<initial quota (KB)>>] >>>
!     S<<< [B<-cell> <I<cell name>>] >>> [B<-noauth>] [B<-localauth>] [B<-verbose>]
      [B<-help>]
  
! B<vos cr> S<<< B<-s> <I<machine name>> >>> S<<< B<-p> <I<partition name>> >>>
!     S<<< B<-na> <I<volume name>> >>> S<<< [B<-m> <I<initial quota (KB)>>] >>>
!     S<<< [B<-c> <I<cell name>>] >>> [B<-no>] [B<-l>] [B<-v>] [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod1/vos_delentry.pod
diff -c openafs/doc/man-pages/pod1/vos_delentry.pod:1.3 openafs/doc/man-pages/pod1/vos_delentry.pod:1.4
*** openafs/doc/man-pages/pod1/vos_delentry.pod:1.3	Tue Dec 20 19:41:17 2005
--- openafs/doc/man-pages/pod1/vos_delentry.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,19 ****
  
  =head1 SYNOPSIS
  
! B<vos delentry> [B<-id> <I<volume name or ID>>+]
!     [B<-prefix> <I<prefix of volume whose VLDB entry is to be deleted>>]
!     [B<-server> <I<machine name>>] [B<-partition> <I<partition name>>]
!     [B<-cell> <I<cell name>>] [B<-noauth>] [B<-localauth>] [B<-verbose>]
      [B<-help>]
  
! B<vos de> [B<-i> <I<volume name or ID>>+]
!     [B<-pr> <I<prefix of volume whose VLDB entry is to be deleted>>]
!     [B<-s> <I<machine name>>] [B<-pa> <I<partition name>>]
!     [B<-c> <I<cell name>>] [B<-n>] [B<-l>] [B<-v>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,25 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<vos delentry> S<<< [B<-id> <I<volume name or ID>>+] >>>
!     S<<< [B<-prefix> <I<prefix of volume whose VLDB entry is to be deleted>>] >>>
!     S<<< [B<-server> <I<machine name>>] >>> S<<< [B<-partition> <I<partition name>>] >>>
!     S<<< [B<-cell> <I<cell name>>] >>> [B<-noauth>] [B<-localauth>] [B<-verbose>]
      [B<-help>]
  
! B<vos de> S<<< [B<-i> <I<volume name or ID>>+] >>>
!     S<<< [B<-pr> <I<prefix of volume whose VLDB entry is to be deleted>>] >>>
!     S<<< [B<-s> <I<machine name>>] >>> S<<< [B<-pa> <I<partition name>>] >>>
!     S<<< [B<-c> <I<cell name>>] >>> [B<-n>] [B<-l>] [B<-v>] [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod1/vos_dump.pod
diff -c openafs/doc/man-pages/pod1/vos_dump.pod:1.3 openafs/doc/man-pages/pod1/vos_dump.pod:1.4
*** openafs/doc/man-pages/pod1/vos_dump.pod:1.3	Tue Dec 20 19:41:17 2005
--- openafs/doc/man-pages/pod1/vos_dump.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,17 ****
  
  =head1 SYNOPSIS
  
! B<vos dump> B<-id> <I<volume name or ID>> [B<-time> <I<dump from time>>]
!     [B<-file> <I<dump file>>] [B<-server> <I<server>>]
!     [B<-partition> <I<partition>>] [B<-cell> <I<cell name>>]
      [B<-noauth>] [B<-localauth>] [B<-verbose>] [B<-help>]
  
! B<vos du> B<-i> <I<volume name or ID>> [B<-t> <I<dump from time>>]
!     [B<-f> <I<dump file>>] [B<-s> <I<server>>] [B<-p> <I<partition>>]
!     [B<-c> <I<cell name>>] [B<-n>] [B<-l>] [B<-v>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,23 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<vos dump> S<<< B<-id> <I<volume name or ID>> >>> S<<< [B<-time> <I<dump from time>>] >>>
!     S<<< [B<-file> <I<dump file>>] >>> S<<< [B<-server> <I<server>>] >>>
!     S<<< [B<-partition> <I<partition>>] >>> S<<< [B<-cell> <I<cell name>>] >>>
      [B<-noauth>] [B<-localauth>] [B<-verbose>] [B<-help>]
  
! B<vos du> S<<< B<-i> <I<volume name or ID>> >>> S<<< [B<-t> <I<dump from time>>] >>>
!     S<<< [B<-f> <I<dump file>>] >>> S<<< [B<-s> <I<server>>] >>> S<<< [B<-p> <I<partition>>] >>>
!     S<<< [B<-c> <I<cell name>>] >>> [B<-n>] [B<-l>] [B<-v>] [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod1/vos_examine.pod
diff -c openafs/doc/man-pages/pod1/vos_examine.pod:1.3 openafs/doc/man-pages/pod1/vos_examine.pod:1.4
*** openafs/doc/man-pages/pod1/vos_examine.pod:1.3	Tue Dec 20 19:41:17 2005
--- openafs/doc/man-pages/pod1/vos_examine.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,22 ****
  
  =head1 SYNOPSIS
  
! B<vos examine> B<-id> <I<volume name or ID>> [B<-extended>]
!     [B<-cell> <I<cell name>>] [B<-noauth>] [B<-localauth>] [B<-verbose>]
      [B<-help>]
  
! B<vos e> B<-i> <I<volume name or ID>> [B<-e>] [B<-c> <I<cell name>>]
      [B<-n>] [B<-l>] [B<-v>] [B<-h>]
  
! B<vos volinfo> B<-i> <I<volume name or ID>> [B<-e>] [-c <I<cell name>>]
      [B<-n>] [B<-l>] [B<-v>] [B<-h>]
  
! B<vos v> B<-i> <I<volume name or ID>> [B<-e>] [B<-c> <I<cell name>>]
      [B<-n>] [B<-l>] [B<-v>] [B<-h>]
  
  =head1 DESCRIPTION
  
  The B<vos examine> command formats and displays information from the
--- 4,28 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<vos examine> S<<< B<-id> <I<volume name or ID>> >>> [B<-extended>]
!     S<<< [B<-cell> <I<cell name>>] >>> [B<-noauth>] [B<-localauth>] [B<-verbose>]
      [B<-help>]
  
! B<vos e> S<<< B<-i> <I<volume name or ID>> >>> [B<-e>] S<<< [B<-c> <I<cell name>>] >>>
      [B<-n>] [B<-l>] [B<-v>] [B<-h>]
  
! B<vos volinfo> S<<< B<-i> <I<volume name or ID>> >>> [B<-e>] [-c <I<cell name>>]
      [B<-n>] [B<-l>] [B<-v>] [B<-h>]
  
! B<vos v> S<<< B<-i> <I<volume name or ID>> >>> [B<-e>] S<<< [B<-c> <I<cell name>>] >>>
      [B<-n>] [B<-l>] [B<-v>] [B<-h>]
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The B<vos examine> command formats and displays information from the
Index: openafs/doc/man-pages/pod1/vos_help.pod
diff -c openafs/doc/man-pages/pod1/vos_help.pod:1.3 openafs/doc/man-pages/pod1/vos_help.pod:1.4
*** openafs/doc/man-pages/pod1/vos_help.pod:1.3	Tue Dec 20 19:41:17 2005
--- openafs/doc/man-pages/pod1/vos_help.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,12 ****
  
  =head1 SYNOPSIS
  
! B<vos help> [B<-topic> <I<help string>>+] [B<-help>]
  
! B<vos h> [B<-t> <I<help string>>+] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,18 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<vos help> S<<< [B<-topic> <I<help string>>+] >>> [B<-help>]
! 
! B<vos h> S<<< [B<-t> <I<help string>>+] >>> [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod1/vos_listaddrs.pod
diff -c openafs/doc/man-pages/pod1/vos_listaddrs.pod:1.3 openafs/doc/man-pages/pod1/vos_listaddrs.pod:1.4
*** openafs/doc/man-pages/pod1/vos_listaddrs.pod:1.3	Tue Dec 20 19:41:17 2005
--- openafs/doc/man-pages/pod1/vos_listaddrs.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,13 ****
  
  =head1 SYNOPSIS
  
! B<vos listaddrs> [B<-cell> <I<cell name>>] [B<-noauth>]
      [B<-localauth>] [B<-verbose>] [B<-help>]
  
! B<vos lista> [B<-c> <I<cell name>>] [B<-n>] [B<-l>] [B<-v>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,19 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<vos listaddrs> S<<< [B<-cell> <I<cell name>>] >>> [B<-noauth>]
      [B<-localauth>] [B<-verbose>] [B<-help>]
  
! B<vos lista> S<<< [B<-c> <I<cell name>>] >>> [B<-n>] [B<-l>] [B<-v>] [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod1/vos_listpart.pod
diff -c openafs/doc/man-pages/pod1/vos_listpart.pod:1.2 openafs/doc/man-pages/pod1/vos_listpart.pod:1.3
*** openafs/doc/man-pages/pod1/vos_listpart.pod:1.2	Fri Dec  9 08:26:31 2005
--- openafs/doc/man-pages/pod1/vos_listpart.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,15 ****
  
  =head1 SYNOPSIS
  
! B<vos listpart> B<-server> <I<machine name>> [B<-cell> <I<cell name>>]
      [B<-noauth>] [B<-localauth>] [B<-verbose>] [B<-help>]
  
! B<vos listp> B<-s> <I<machine name>> [B<-c> <I<cell name>>] [B<-n>]
      [B<-l>] [B<-v>] [B<-h>]
  
  =head1 DESCRIPTION
  
  The B<vos listpart> command displays all of the valid AFS partitions on
--- 4,21 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<vos listpart> S<<< B<-server> <I<machine name>> >>> S<<< [B<-cell> <I<cell name>>] >>>
      [B<-noauth>] [B<-localauth>] [B<-verbose>] [B<-help>]
  
! B<vos listp> S<<< B<-s> <I<machine name>> >>> S<<< [B<-c> <I<cell name>>] >>> [B<-n>]
      [B<-l>] [B<-v>] [B<-h>]
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The B<vos listpart> command displays all of the valid AFS partitions on
Index: openafs/doc/man-pages/pod1/vos_listvldb.pod
diff -c openafs/doc/man-pages/pod1/vos_listvldb.pod:1.3 openafs/doc/man-pages/pod1/vos_listvldb.pod:1.4
*** openafs/doc/man-pages/pod1/vos_listvldb.pod:1.3	Tue Dec 20 19:41:17 2005
--- openafs/doc/man-pages/pod1/vos_listvldb.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,17 ****
  
  =head1 SYNOPSIS
  
! B<vos listvldb> [B<-name> <I<volume name or ID>>]
!     [B<-server> <I<machine name>>] [B<-partition> <I<partition name>>]
!     [B<-locked>] [B<-quiet>] [B<-nosort>] [B<-cell> <I<cell name>>]
      [B<-noauth>] [B<-localauth>] [B<-verbose>] [B<-help>]
  
! B<vos listvl> [B<-na> <I<volume name or ID>>] [B<-s> <I<machine name>>]
!     [B<-p> <I<partition name>>] [B<-lock>] [B<-q>] [B<-nos>]
!     [B<-c> <I<cell name>>] [B<-noa>] [B<-loca>] [B<-v>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,23 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<vos listvldb> S<<< [B<-name> <I<volume name or ID>>] >>>
!     S<<< [B<-server> <I<machine name>>] >>> S<<< [B<-partition> <I<partition name>>] >>>
!     [B<-locked>] [B<-quiet>] [B<-nosort>] S<<< [B<-cell> <I<cell name>>] >>>
      [B<-noauth>] [B<-localauth>] [B<-verbose>] [B<-help>]
  
! B<vos listvl> S<<< [B<-na> <I<volume name or ID>>] >>> S<<< [B<-s> <I<machine name>>] >>>
!     S<<< [B<-p> <I<partition name>>] >>> [B<-lock>] [B<-q>] [B<-nos>]
!     S<<< [B<-c> <I<cell name>>] >>> [B<-noa>] [B<-loca>] [B<-v>] [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod1/vos_listvol.pod
diff -c openafs/doc/man-pages/pod1/vos_listvol.pod:1.3 openafs/doc/man-pages/pod1/vos_listvol.pod:1.5
*** openafs/doc/man-pages/pod1/vos_listvol.pod:1.3	Tue Dec 20 19:41:17 2005
--- openafs/doc/man-pages/pod1/vos_listvol.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,18 ****
  
  =head1 SYNOPSIS
  
! B<vos listvol> B<-server> <I<machine name>>
!     [B<-partition> <I<partition name>>] [B<-fast>] [B<-long>] [B<-quiet>]
!     [B<-extended>] [B<-cell> <I<cell name>>] [B<-noauth>] [B<-localauth>]
      [B<-verbose>] [B<-help>]
  
! B<vos listvo> B<-s> <I<machine name>> [B<-p> <I<partition name>>] [B<-f>]
!     [-lon] [B<-q>] [B<-e>] [B<-c> <I<cell name>>] [B<-n>] [B<-loc>]
      [B<-v>] [B<-h>]
  
  =head1 DESCRIPTION
  
  The B<vos listvol> command formats and displays the following information
--- 4,24 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<vos listvol> S<<< B<-server> <I<machine name>> >>>
!     S<<< [B<-partition> <I<partition name>>] >>> [B<-fast>] [B<-long>] [B<-quiet>]
!     [B<-extended>] S<<< [B<-cell> <I<cell name>>] >>> [B<-noauth>] [B<-localauth>]
      [B<-verbose>] [B<-help>]
  
! B<vos listvo> S<<< B<-s> <I<machine name>> >>> S<<< [B<-p> <I<partition name>>] >>> [B<-f>]
!     [-lon] [B<-q>] [B<-e>] S<<< [B<-c> <I<cell name>>] >>> [B<-n>] [B<-loc>]
      [B<-v>] [B<-h>]
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The B<vos listvol> command formats and displays the following information
***************
*** 337,347 ****
  
  =head1 SEE ALSO
  
! L<backup_diskrestore(1)>,
! L<backup_volrestore(1)>,
! L<bos_getlog(1)>,
! L<bos_salvage(1)>,
! L<salvager(1)>,
  L<vos(1)>,
  L<vos_examine(1)>,
  L<vos_listvldb(1)>,
--- 343,353 ----
  
  =head1 SEE ALSO
  
! L<backup_diskrestore(8)>,
! L<backup_volrestore(8)>,
! L<bos_getlog(8)>,
! L<bos_salvage(8)>,
! L<salvager(8)>,
  L<vos(1)>,
  L<vos_examine(1)>,
  L<vos_listvldb(1)>,
Index: openafs/doc/man-pages/pod1/vos_lock.pod
diff -c openafs/doc/man-pages/pod1/vos_lock.pod:1.2 openafs/doc/man-pages/pod1/vos_lock.pod:1.3
*** openafs/doc/man-pages/pod1/vos_lock.pod:1.2	Fri Dec  9 08:26:31 2005
--- openafs/doc/man-pages/pod1/vos_lock.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,15 ****
  
  =head1 SYNOPSIS
  
! B<vos lock> B<-id> <I<volume name or ID>> [B<-cell> <I<cell name>>]
      [B<-noauth>] [B<-localauth>] [B<-verbose>] [B<-help>]
  
! B<vos lo> B<-i> <I<volume name or ID>> [B<-c> <I<cell name>>] [B<-n>]
      [B<-l>] [B<-v>] [B<-h>]
  
  =head1 DESCRIPTION
  
  The B<vos lock> command locks the Volume Location Database (VLDB) entry
--- 4,21 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<vos lock> S<<< B<-id> <I<volume name or ID>> >>> S<<< [B<-cell> <I<cell name>>] >>>
      [B<-noauth>] [B<-localauth>] [B<-verbose>] [B<-help>]
  
! B<vos lo> S<<< B<-i> <I<volume name or ID>> >>> S<<< [B<-c> <I<cell name>>] >>> [B<-n>]
      [B<-l>] [B<-v>] [B<-h>]
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The B<vos lock> command locks the Volume Location Database (VLDB) entry
Index: openafs/doc/man-pages/pod1/vos_move.pod
diff -c openafs/doc/man-pages/pod1/vos_move.pod:1.3 openafs/doc/man-pages/pod1/vos_move.pod:1.4
*** openafs/doc/man-pages/pod1/vos_move.pod:1.3	Tue Dec 20 19:41:17 2005
--- openafs/doc/man-pages/pod1/vos_move.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,23 ****
  
  =head1 SYNOPSIS
  
! B<vos move> B<-id> <I<volume name or ID>>
!     B<-fromserver> <I<machine name on source>>
!     B<-frompartition> <I<partition name on source>>
!     B<-toserver> <I<machine name on destination>>
!     B<-topartition> <I<partition name on destination>>
!     [B<-cell> <I<cell name>>] [B<-noauth>] [B<-localauth>] [B<-verbose>]
      [B<-help>]
  
! B<vos m -i> <I<volume name or ID>>
!     B<-froms> <I<machine name on source>>
!     B<-fromp> <I<partition name on source>>
!     B<-tos> <I<machine name on destination>>
!     B<-top> <I<partition name on destination>>
!     [-c <I<cell name>>] [B<-n>] [B<-l>] [B<-v>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,29 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<vos move> S<<< B<-id> <I<volume name or ID>> >>>
!     S<<< B<-fromserver> <I<machine name on source>> >>>
!     S<<< B<-frompartition> <I<partition name on source>> >>>
!     S<<< B<-toserver> <I<machine name on destination>> >>>
!     S<<< B<-topartition> <I<partition name on destination>> >>>
!     S<<< [B<-cell> <I<cell name>>] >>> [B<-noauth>] [B<-localauth>] [B<-verbose>]
      [B<-help>]
  
! B<vos m> S<<< B<-i> <I<volume name or ID>> >>>
!     S<<< B<-froms> <I<machine name on source>> >>>
!     S<<< B<-fromp> <I<partition name on source>> >>>
!     S<<< B<-tos> <I<machine name on destination>> >>>
!     S<<< B<-top> <I<partition name on destination>> >>>
!     S<<< [B<-c> <I<cell name>>] >>> [B<-n>] [B<-l>] [B<-v>] [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod1/vos_partinfo.pod
diff -c openafs/doc/man-pages/pod1/vos_partinfo.pod:1.2 openafs/doc/man-pages/pod1/vos_partinfo.pod:1.3
*** openafs/doc/man-pages/pod1/vos_partinfo.pod:1.2	Fri Dec  9 08:26:31 2005
--- openafs/doc/man-pages/pod1/vos_partinfo.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,15 ****
  
  =head1 SYNOPSIS
  
! B<vos partinfo> B<-server> <I<machine name>>
!     [B<-partition> <I<partition name>>] [B<-cell> <I<cell name>>]
      [B<-noauth>] [B<-localauth>] [B<-verbose>] [B<-help>]
  
! B<vos p> B<-s> <I<machine name>> [B<-p> <I<partition name>>]
!     [B<-c> <I<cell name>>] [B<-n>] [B<-l>] [B<-v>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,21 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<vos partinfo> S<<< B<-server> <I<machine name>> >>>
!     S<<< [B<-partition> <I<partition name>>] >>> S<<< [B<-cell> <I<cell name>>] >>>
      [B<-noauth>] [B<-localauth>] [B<-verbose>] [B<-help>]
  
! B<vos p> S<<< B<-s> <I<machine name>> >>> S<<< [B<-p> <I<partition name>>] >>>
!     S<<< [B<-c> <I<cell name>>] >>> [B<-n>] [B<-l>] [B<-v>] [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod1/vos_release.pod
diff -c openafs/doc/man-pages/pod1/vos_release.pod:1.2 openafs/doc/man-pages/pod1/vos_release.pod:1.3
*** openafs/doc/man-pages/pod1/vos_release.pod:1.2	Fri Dec  9 08:26:31 2005
--- openafs/doc/man-pages/pod1/vos_release.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,16 ****
  
  =head1 SYNOPSIS
  
! B<vos release> B<-id> <I<volume name or ID>> [B<-f>]
!     [B<-cell> <I<cell name>>] [B<-noauth>] [B<-localauth>] [B<-verbose>]
      [B<-help>]
  
! B<vos rel> B<-i> <I<volume name or ID>> [B<-f>] [B<-c> <I<cell name>>]
      [B<-n>] [B<-l>] [B<-v>] [B<-h>]
  
  =head1 DESCRIPTION
  
  The B<vos release> command copies the contents of the indicated read/write
--- 4,22 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<vos release> S<<< B<-id> <I<volume name or ID>> >>> [B<-f>]
!     S<<< [B<-cell> <I<cell name>>] >>> [B<-noauth>] [B<-localauth>] [B<-verbose>]
      [B<-help>]
  
! B<vos rel> S<<< B<-i> <I<volume name or ID>> >>> [B<-f>] S<<< [B<-c> <I<cell name>>] >>>
      [B<-n>] [B<-l>] [B<-v>] [B<-h>]
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The B<vos release> command copies the contents of the indicated read/write
Index: openafs/doc/man-pages/pod1/vos_remove.pod
diff -c openafs/doc/man-pages/pod1/vos_remove.pod:1.2 openafs/doc/man-pages/pod1/vos_remove.pod:1.3
*** openafs/doc/man-pages/pod1/vos_remove.pod:1.2	Fri Dec  9 08:26:31 2005
--- openafs/doc/man-pages/pod1/vos_remove.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,18 ****
  
  =head1 SYNOPSIS
  
! B<vos remove> [B<-server> <I<machine name>>]
!     [B<-partition> <I<partition name>>]
!     B<-id> <I<volume name or ID>> [B<-cell> <I<cell name>>]
      [B<-noauth>] [B<-localauth>] [B<-verbose>] [B<-help>]
  
! B<vos remo> [B<-s> <I<machine name>>] [B<-p> <I<partition name>>]
!     B<-i> <I<volume name or ID>> [B<-c> <I<cell name>>] [B<-n>] [B<-l>]
      [B<-v>] [B<-h>]
  
  =head1 DESCRIPTION
  
  The B<vos remove> command removes the indicated volume from the partition
--- 4,24 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<vos remove> S<<< [B<-server> <I<machine name>>] >>>
!     S<<< [B<-partition> <I<partition name>>] >>>
!     S<<< B<-id> <I<volume name or ID>> >>> S<<< [B<-cell> <I<cell name>>] >>>
      [B<-noauth>] [B<-localauth>] [B<-verbose>] [B<-help>]
  
! B<vos remo> S<<< [B<-s> <I<machine name>>] >>> S<<< [B<-p> <I<partition name>>] >>>
!     S<<< B<-i> <I<volume name or ID>> >>> S<<< [B<-c> <I<cell name>>] >>> [B<-n>] [B<-l>]
      [B<-v>] [B<-h>]
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The B<vos remove> command removes the indicated volume from the partition
Index: openafs/doc/man-pages/pod1/vos_remsite.pod
diff -c openafs/doc/man-pages/pod1/vos_remsite.pod:1.2 openafs/doc/man-pages/pod1/vos_remsite.pod:1.3
*** openafs/doc/man-pages/pod1/vos_remsite.pod:1.2	Fri Dec  9 08:26:31 2005
--- openafs/doc/man-pages/pod1/vos_remsite.pod	Wed Mar  1 00:02:30 2006
***************
*** 4,18 ****
  
  =head1 SYNOPSIS
  
! B<vos remsite> B<-server> <I<machine name>>
!     B<-partition> <I<partition name>> B<-id> <I<volume name or ID>>
!     [B<-cell> <I<cell name>>] [B<-noauth>] [B<-localauth>] [B<-verbose>]
      [B<-help>]
  
! B<vos rems> B<-s> <I<machine name>> B<-p> <I<partition name>>
!     B<-i> <I<volume name or ID>> [B<-c> <I<cell name>>] [B<-n>] [B<-l>]
      [B<-v>] [B<-h>]
  
  =head1 DESCRIPTION
  
  The B<vos remsite> command removes the read-only replication site
--- 4,24 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<vos remsite> S<<< B<-server> <I<machine name>> >>>
!     S<<< B<-partition> <I<partition name>> >>> S<<< B<-id> <I<volume name or ID>> >>>
!     S<<< [B<-cell> <I<cell name>>] >>> [B<-noauth>] [B<-localauth>] [B<-verbose>]
      [B<-help>]
  
! B<vos rems> S<<< B<-s> <I<machine name>> >>> S<<< B<-p> <I<partition name>> >>>
!     S<<< B<-i> <I<volume name or ID>> >>> S<<< [B<-c> <I<cell name>>] >>> [B<-n>] [B<-l>]
      [B<-v>] [B<-h>]
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The B<vos remsite> command removes the read-only replication site
Index: openafs/doc/man-pages/pod1/vos_rename.pod
diff -c openafs/doc/man-pages/pod1/vos_rename.pod:1.2 openafs/doc/man-pages/pod1/vos_rename.pod:1.3
*** openafs/doc/man-pages/pod1/vos_rename.pod:1.2	Fri Dec  9 08:26:31 2005
--- openafs/doc/man-pages/pod1/vos_rename.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,16 ****
  
  =head1 SYNOPSIS
  
! B<vos rename> B<-oldname> <I<old volume name>>
!     B<-newname> <I<new volume name>> [B<-cell> <I<cell name>>]
      [B<-noauth>] [B<-localauth>] [B<-verbose>] [B<-help>]
  
! B<vos ren> B<-o> <I<old volume name>> B<-ne> <I<new volume name>>
      [-c <I<cell name>>] [B<-no>] [B<-l>] [B<-v>] [B<-h>]
  
  =head1 DESCRIPTION
  
  The B<vos rename> command changes the name of the read/write volume
--- 4,22 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<vos rename> S<<< B<-oldname> <I<old volume name>> >>>
!     S<<< B<-newname> <I<new volume name>> >>> S<<< [B<-cell> <I<cell name>>] >>>
      [B<-noauth>] [B<-localauth>] [B<-verbose>] [B<-help>]
  
! B<vos ren> S<<< B<-o> <I<old volume name>> >>> S<<< B<-ne> <I<new volume name>> >>>
      [-c <I<cell name>>] [B<-no>] [B<-l>] [B<-v>] [B<-h>]
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The B<vos rename> command changes the name of the read/write volume
Index: openafs/doc/man-pages/pod1/vos_restore.pod
diff -c openafs/doc/man-pages/pod1/vos_restore.pod:1.3 openafs/doc/man-pages/pod1/vos_restore.pod:1.4
*** openafs/doc/man-pages/pod1/vos_restore.pod:1.3	Tue Dec 20 19:41:17 2005
--- openafs/doc/man-pages/pod1/vos_restore.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,20 ****
  
  =head1 SYNOPSIS
  
! B<vos restore> B<-server> <I<machine name>> B<-partition> <I<partition name>>
!     B<-name> <I<name of volume to be restored>> [B<-file> <I<dump file>>]
!     [B<-id> <I<volume ID>>] [B<-overwrite> (abort | full | incremental)]
!     [B<-cell> <I<cell name>>] [B<-noauth>] [B<-localauth>] [-verbose]
      [B<-help>]
  
! B<vos res> B<-s> <I<machine name>> B<-p> <I<partition name>>
!     B<-na> <I<name of volume to be restored>> [B<-f> <I<dump file>>]
!     [B<-i> <I<volume ID>>] [B<-o> (a | f | i)] [B<-c> <I<cell name>>]
      [B<-no>] [B<-l>] [B<-v>] [B<-h>]
  
  =head1 DESCRIPTION
  
  The B<vos restore> command converts a volume dump file previously created
--- 4,26 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<vos restore> S<<< B<-server> <I<machine name>> >>> S<<< B<-partition> <I<partition name>> >>>
!     S<<< B<-name> <I<name of volume to be restored>> >>> S<<< [B<-file> <I<dump file>>] >>>
!     S<<< [B<-id> <I<volume ID>>] >>> S<<< [B<-overwrite> (abort | full | incremental)] >>>
!     S<<< [B<-cell> <I<cell name>>] >>> [B<-noauth>] [B<-localauth>] [-verbose]
      [B<-help>]
  
! B<vos res> S<<< B<-s> <I<machine name>> >>> S<<< B<-p> <I<partition name>> >>>
!     S<<< B<-na> <I<name of volume to be restored>> >>> S<<< [B<-f> <I<dump file>>] >>>
!     S<<< [B<-i> <I<volume ID>>] >>> S<<< [B<-o> (a | f | i)] >>> S<<< [B<-c> <I<cell name>>] >>>
      [B<-no>] [B<-l>] [B<-v>] [B<-h>]
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The B<vos restore> command converts a volume dump file previously created
Index: openafs/doc/man-pages/pod1/vos_status.pod
diff -c openafs/doc/man-pages/pod1/vos_status.pod:1.2 openafs/doc/man-pages/pod1/vos_status.pod:1.3
*** openafs/doc/man-pages/pod1/vos_status.pod:1.2	Fri Dec  9 08:26:31 2005
--- openafs/doc/man-pages/pod1/vos_status.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,15 ****
  
  =head1 SYNOPSIS
  
! B<vos status> B<-server> <I<machine name>> [B<-cell> <I<cell name>>]
      [B<-noauth>] [B<-localauth>] [B<-verbose>] [B<-help>]
  
! B<vos st> B<-s> <I<machine name>> [B<-c> <I<cell name>>] [B<-n>] [B<-l>]
      [B<-v>] [B<-h>]
  
  =head1 DESCRIPTION
  
  The B<vos status> command reports on what the Volume Server on a certain
--- 4,21 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<vos status> S<<< B<-server> <I<machine name>> >>> S<<< [B<-cell> <I<cell name>>] >>>
      [B<-noauth>] [B<-localauth>] [B<-verbose>] [B<-help>]
  
! B<vos st> S<<< B<-s> <I<machine name>> >>> S<<< [B<-c> <I<cell name>>] >>> [B<-n>] [B<-l>]
      [B<-v>] [B<-h>]
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The B<vos status> command reports on what the Volume Server on a certain
Index: openafs/doc/man-pages/pod1/vos_syncserv.pod
diff -c openafs/doc/man-pages/pod1/vos_syncserv.pod:1.3 openafs/doc/man-pages/pod1/vos_syncserv.pod:1.4
*** openafs/doc/man-pages/pod1/vos_syncserv.pod:1.3	Tue Dec 20 19:41:17 2005
--- openafs/doc/man-pages/pod1/vos_syncserv.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,15 ****
  
  =head1 SYNOPSIS
  
! B<vos syncserv> B<-server> <I<machine name>>
!     [B<-partition> <I<partition name>>] [B<-cell> <I<cell name>>]
      [B<-noauth>] [B<-localauth>] [B<-verbose>] [B<-help>]
  
! B<vos syncs> B<-s> <I<machine name>> [B<-p> <I<partition name>>]
!     [B<-c> <I<cell name>>] [B<-n>] [B<-l>] [B<-v>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,21 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<vos syncserv> S<<< B<-server> <I<machine name>> >>>
!     S<<< [B<-partition> <I<partition name>>] >>> S<<< [B<-cell> <I<cell name>>] >>>
      [B<-noauth>] [B<-localauth>] [B<-verbose>] [B<-help>]
  
! B<vos syncs> S<<< B<-s> <I<machine name>> >>> S<<< [B<-p> <I<partition name>>] >>>
!     S<<< [B<-c> <I<cell name>>] >>> [B<-n>] [B<-l>] [B<-v>] [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod1/vos_syncvldb.pod
diff -c openafs/doc/man-pages/pod1/vos_syncvldb.pod:1.2 openafs/doc/man-pages/pod1/vos_syncvldb.pod:1.3
*** openafs/doc/man-pages/pod1/vos_syncvldb.pod:1.2	Fri Dec  9 08:26:31 2005
--- openafs/doc/man-pages/pod1/vos_syncvldb.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,18 ****
  
  =head1 SYNOPSIS
  
! B<vos syncvldb> [B<-server> <I<machine name>>]
!     [B<-partition> <I<partition name>>] [B<-volume> <I<volume name or ID>>]
!     [B<-cell> <I<cell name>>] [B<-noauth>] [B<-localauth>] [B<-verbose>]
      [B<-help>]
  
! B<vos syncv> [B<-s> <I<machine name>>] [B<-p> <I<partition name>>]
!     [B<-vo> <I<volume name or ID>>] [B<-c> <I<cell name>>] [B<-n>] [B<-l>]
      [B<-ve>] [B<-h>]
  
  =head1 DESCRIPTION
  
  The B<vos syncvldb> command verifies that the status of the volumes housed
--- 4,24 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<vos syncvldb> S<<< [B<-server> <I<machine name>>] >>>
!     S<<< [B<-partition> <I<partition name>>] >>> S<<< [B<-volume> <I<volume name or ID>>] >>>
!     S<<< [B<-cell> <I<cell name>>] >>> [B<-noauth>] [B<-localauth>] [B<-verbose>]
      [B<-help>]
  
! B<vos syncv> S<<< [B<-s> <I<machine name>>] >>> S<<< [B<-p> <I<partition name>>] >>>
!     S<<< [B<-vo> <I<volume name or ID>>] >>> S<<< [B<-c> <I<cell name>>] >>> [B<-n>] [B<-l>]
      [B<-ve>] [B<-h>]
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The B<vos syncvldb> command verifies that the status of the volumes housed
Index: openafs/doc/man-pages/pod1/vos_unlock.pod
diff -c openafs/doc/man-pages/pod1/vos_unlock.pod:1.2 openafs/doc/man-pages/pod1/vos_unlock.pod:1.3
*** openafs/doc/man-pages/pod1/vos_unlock.pod:1.2	Fri Dec  9 08:26:31 2005
--- openafs/doc/man-pages/pod1/vos_unlock.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,15 ****
  
  =head1 SYNOPSIS
  
! B<vos unlock> B<-id> <I<volume name or ID>> [B<-cell> <I<cell name>>]
      [B<-noauth>] [B<-localauth>] [B<-verbose>] [B<-help>]
  
! B<vos unlock> B<-i> <I<volume name or ID>> [B<-c> <I<cell name>>] [B<-n>]
      [B<-l>] [B<-v>] [B<-h>]
  
  =head1 DESCRIPTION
  
  The B<vos unlock> command releases the lock on the Volume Location
--- 4,21 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<vos unlock> S<<< B<-id> <I<volume name or ID>> >>> S<<< [B<-cell> <I<cell name>>] >>>
      [B<-noauth>] [B<-localauth>] [B<-verbose>] [B<-help>]
  
! B<vos unlock> S<<< B<-i> <I<volume name or ID>> >>> S<<< [B<-c> <I<cell name>>] >>> [B<-n>]
      [B<-l>] [B<-v>] [B<-h>]
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The B<vos unlock> command releases the lock on the Volume Location
Index: openafs/doc/man-pages/pod1/vos_unlockvldb.pod
diff -c openafs/doc/man-pages/pod1/vos_unlockvldb.pod:1.3 openafs/doc/man-pages/pod1/vos_unlockvldb.pod:1.4
*** openafs/doc/man-pages/pod1/vos_unlockvldb.pod:1.3	Tue Dec 20 19:41:17 2005
--- openafs/doc/man-pages/pod1/vos_unlockvldb.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,15 ****
  
  =head1 SYNOPSIS
  
! B<vos unlockvldb> [B<-server> <I<machine name>>]
!     [B<-partition> <I<partition name>>] [B<-cell> <I<cell name>>]
      [B<-noauth>] [B<-localauth>] [B<-verbose>] [B<-help>]
  
! B<vos unlockv> [B<-s> <I<machine name>>] [B<-p> <I<partition name>>]
!     [B<-c> <I<cell name>>] [B<-n>] [B<-l>] [B<-v>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,21 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<vos unlockvldb> S<<< [B<-server> <I<machine name>>] >>>
!     S<<< [B<-partition> <I<partition name>>] >>> S<<< [B<-cell> <I<cell name>>] >>>
      [B<-noauth>] [B<-localauth>] [B<-verbose>] [B<-help>]
  
! B<vos unlockv> S<<< [B<-s> <I<machine name>>] >>> S<<< [B<-p> <I<partition name>>] >>>
!     S<<< [B<-c> <I<cell name>>] >>> [B<-n>] [B<-l>] [B<-v>] [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod1/vos_zap.pod
diff -c openafs/doc/man-pages/pod1/vos_zap.pod:1.3 openafs/doc/man-pages/pod1/vos_zap.pod:1.4
*** openafs/doc/man-pages/pod1/vos_zap.pod:1.3	Tue Dec 20 19:41:17 2005
--- openafs/doc/man-pages/pod1/vos_zap.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,18 ****
  
  =head1 SYNOPSIS
  
! B<vos zap> B<-server> <I<machine name>> B<-partition> <I<partition name>>
!     B<-id> <I<volume ID>> [B<-force>] [B<-backup>]
!     [B<-cell> <I<cell name>>] [B<-noauth>] [B<-localauth>] [B<-verbose>]
      [B<-help>]
  
! B<vos z> B<-s> <I<machine name>> B<-p> <I<partition name>>
!     B<-i> <I<volume ID>> [B<-f>] [B<-b>] [B<-c> <I<cell name>>] [B<-n>]
      [B<-l>] [B<-v>] [B<-h>]
  
  =head1 DESCRIPTION
  
  The B<vos zap> command removes the volume with the specified I<volume ID>
--- 4,24 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<vos zap> S<<< B<-server> <I<machine name>> >>> S<<< B<-partition> <I<partition name>> >>>
!     S<<< B<-id> <I<volume ID>> >>> [B<-force>] [B<-backup>]
!     S<<< [B<-cell> <I<cell name>>] >>> [B<-noauth>] [B<-localauth>] [B<-verbose>]
      [B<-help>]
  
! B<vos z> S<<< B<-s> <I<machine name>> >>> S<<< B<-p> <I<partition name>> >>>
!     S<<< B<-i> <I<volume ID>> >>> [B<-f>] [B<-b>] S<<< [B<-c> <I<cell name>>] >>> [B<-n>]
      [B<-l>] [B<-v>] [B<-h>]
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The B<vos zap> command removes the volume with the specified I<volume ID>
Index: openafs/doc/man-pages/pod1/xstat_cm_test.pod
diff -c openafs/doc/man-pages/pod1/xstat_cm_test.pod:1.2 openafs/doc/man-pages/pod1/xstat_cm_test.pod:1.3
*** openafs/doc/man-pages/pod1/xstat_cm_test.pod:1.2	Tue Dec 20 19:41:17 2005
--- openafs/doc/man-pages/pod1/xstat_cm_test.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,20 ****
  
  =head1 SYNOPSIS
  
  B<xstat_cm_test> [I<initcmd>]
!     B<-cmname> <I<cache manager name(s) to monitor>>+
!     B<-collID> <I<collection(s) to fetch>>+ [B<-onceonly>]
!     [B<-frequency> <I<poll frequency, in seconds>>]
!     [B<-period> <I<data collection time, in minutes>>] [B<-debug>]
      [B<-help>]
  
! B<xstat_cm_test> [I<i>] B<-cm> <I<cache manager name(s) to monitor>>+
!     B<-co> <I<collection(s) to fetch>>+ [B<-o>]
!     [B<-f> <I<poll frequency, in seconds>>]
!     [B<-p> <I<data collection time, in minutes>>] [B<-d>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,26 ----
  
  =head1 SYNOPSIS
  
+ =for html
+ <div class="synopsis">
+ 
  B<xstat_cm_test> [I<initcmd>]
!     S<<< B<-cmname> <I<cache manager name(s) to monitor>>+ >>>
!     S<<< B<-collID> <I<collection(s) to fetch>>+ >>> [B<-onceonly>]
!     S<<< [B<-frequency> <I<poll frequency, in seconds>>] >>>
!     S<<< [B<-period> <I<data collection time, in minutes>>] >>> [B<-debug>]
      [B<-help>]
  
! B<xstat_cm_test> [I<i>] S<<< B<-cm> <I<cache manager name(s) to monitor>>+ >>>
!     S<<< B<-co> <I<collection(s) to fetch>>+ >>> [B<-o>]
!     S<<< [B<-f> <I<poll frequency, in seconds>>] >>>
!     S<<< [B<-p> <I<data collection time, in minutes>>] >>> [B<-d>] [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod1/xstat_fs_test.pod
diff -c openafs/doc/man-pages/pod1/xstat_fs_test.pod:1.2 openafs/doc/man-pages/pod1/xstat_fs_test.pod:1.3
*** openafs/doc/man-pages/pod1/xstat_fs_test.pod:1.2	Tue Dec 20 19:41:17 2005
--- openafs/doc/man-pages/pod1/xstat_fs_test.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,18 ****
  
  =head1 SYNOPSIS
  
! B<xstat_fs_test> [I<initcmd>] B<-fsname> <I<file server name(s) to monitor>>+
!     B<-collID> <I<collection(s) to fetch>>+ [B<-onceonly>]
!     [B<-frequency> <I<poll frequency, in seconds>>]
!     [B<-period> <I<data collection time, in minutes>>] [B<-debug>] [B<-help>]
! 
! B<xstat_fs_test> [B<initcmd>] B<-fs> <I<File Server name(s) to monitor>>+
!     B<-c> <I<Collection(s) to fetch>>+ [B<-o>]
!     [B<-fr> <I<poll frequency, in seconds>>]
!     [B<-p> <I<data collection time, in minutes>>] [B<-d>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,24 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<xstat_fs_test> [I<initcmd>] S<<< B<-fsname> <I<file server name(s) to monitor>>+ >>>
!     S<<< B<-collID> <I<collection(s) to fetch>>+ >>> [B<-onceonly>]
!     S<<< [B<-frequency> <I<poll frequency, in seconds>>] >>>
!     S<<< [B<-period> <I<data collection time, in minutes>>] >>> [B<-debug>] [B<-help>]
! 
! B<xstat_fs_test> [B<initcmd>] S<<< B<-fs> <I<File Server name(s) to monitor>>+ >>>
!     S<<< B<-c> <I<Collection(s) to fetch>>+ >>> [B<-o>]
!     S<<< [B<-fr> <I<poll frequency, in seconds>>] >>>
!     S<<< [B<-p> <I<data collection time, in minutes>>] >>> [B<-d>] [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod5/cacheinfo.pod
diff -c openafs/doc/man-pages/pod5/cacheinfo.pod:1.2 openafs/doc/man-pages/pod5/cacheinfo.pod:1.3
*** openafs/doc/man-pages/pod5/cacheinfo.pod:1.2	Tue Dec 13 20:30:21 2005
--- openafs/doc/man-pages/pod5/cacheinfo.pod	Mon Feb 27 15:46:28 2006
***************
*** 60,67 ****
  =head1 SEE ALSO
  
  L<afsd(8)>,
! L<fs_getcacheparms(8)>,
! L<fs_setcachesize(8)>
  
  =head1 COPYRIGHT
  
--- 60,67 ----
  =head1 SEE ALSO
  
  L<afsd(8)>,
! L<fs_getcacheparms(1)>,
! L<fs_setcachesize(1)>
  
  =head1 COPYRIGHT
  
Index: openafs/doc/man-pages/pod5/prdb.DB0.pod
diff -c openafs/doc/man-pages/pod5/prdb.DB0.pod:1.2 openafs/doc/man-pages/pod5/prdb.DB0.pod:1.3
*** openafs/doc/man-pages/pod5/prdb.DB0.pod:1.2	Tue Dec 13 20:30:21 2005
--- openafs/doc/man-pages/pod5/prdb.DB0.pod	Mon Feb 27 15:46:28 2006
***************
*** 30,36 ****
  =head1 SEE ALSO
  
  L<prdb_check(8)>,
! L<pts(8)>,
  L<ptserver(8)>
  
  =head1 COPYRIGHT
--- 30,36 ----
  =head1 SEE ALSO
  
  L<prdb_check(8)>,
! L<pts(1)>,
  L<ptserver(8)>
  
  =head1 COPYRIGHT
Index: openafs/doc/man-pages/pod8/afsd.pod
diff -c openafs/doc/man-pages/pod8/afsd.pod:1.5 openafs/doc/man-pages/pod8/afsd.pod:1.6
*** openafs/doc/man-pages/pod8/afsd.pod:1.5	Tue Dec 20 19:41:18 2005
--- openafs/doc/man-pages/pod8/afsd.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,27 ****
  
  =head1 SYNOPSIS
  
! B<afsd> [B<-blocks> <I<1024 byte blocks in cache>>]
!      [B<-files> <I<files in cache>>]
!      [B<-rootvol> <I<name of AFS root volume>>]
!      [B<-stat> <I<number of stat entries>>]
!      [B<-memcache>] [B<-cachedir> <I<cache directory>>]
!      [B<-mountdir> <I<mount location>>]
!      [B<-daemons> <I<number of daemons to use>>]
       [B<-nosettime>] [B<-verbose>] [B<-rmtsys>] [B<-debug>]
!      [B<-chunksize> <I<log(2) of chunk size>>]
!      [B<-dcache> <I<number of dcache entries>>]
!      [B<-volumes> <I<number of volume entries>>]
!      [B<-biods> <I<number of bkg I/O daemons (aix vm)>>]
!      [B<-prealloc> <I<number of 'small' preallocated blocks>>]
!      [B<-confdir> <I<configuration directory>>]
!      [B<-logfile> <I<Place to keep the CM log>>]
       [B<-waitclose>] [B<-shutdown>] [B<-enable_peer_stats>]
       [B<-enable_process_stats>] [B<-help>]
  
  =head1 DESCRIPTION
  
  The B<afsd> command initializes the Cache Manager on an AFS client machine
--- 4,33 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<afsd> S<<< [B<-blocks> <I<1024 byte blocks in cache>>] >>>
!      S<<< [B<-files> <I<files in cache>>] >>>
!      S<<< [B<-rootvol> <I<name of AFS root volume>>] >>>
!      S<<< [B<-stat> <I<number of stat entries>>] >>>
!      [B<-memcache>] S<<< [B<-cachedir> <I<cache directory>>] >>>
!      S<<< [B<-mountdir> <I<mount location>>] >>>
!      S<<< [B<-daemons> <I<number of daemons to use>>] >>>
       [B<-nosettime>] [B<-verbose>] [B<-rmtsys>] [B<-debug>]
!      S<<< [B<-chunksize> <I<log(2) of chunk size>>] >>>
!      S<<< [B<-dcache> <I<number of dcache entries>>] >>>
!      S<<< [B<-volumes> <I<number of volume entries>>] >>>
!      S<<< [B<-biods> <I<number of bkg I/O daemons (aix vm)>>] >>>
!      S<<< [B<-prealloc> <I<number of 'small' preallocated blocks>>] >>>
!      S<<< [B<-confdir> <I<configuration directory>>] >>>
!      S<<< [B<-logfile> <I<Place to keep the CM log>>] >>>
       [B<-waitclose>] [B<-shutdown>] [B<-enable_peer_stats>]
       [B<-enable_process_stats>] [B<-help>]
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The B<afsd> command initializes the Cache Manager on an AFS client machine
Index: openafs/doc/man-pages/pod8/asetkey.pod
diff -c /dev/null openafs/doc/man-pages/pod8/asetkey.pod:1.1
*** /dev/null	Thu Apr 27 12:42:25 2006
--- openafs/doc/man-pages/pod8/asetkey.pod	Wed Mar 29 15:44:16 2006
***************
*** 0 ****
--- 1,108 ----
+ =head1 NAME
+ 
+ asetkey - Add a key from a keytab to an AFS KeyFile
+ 
+ =head1 SYNOPSIS
+ 
+ =for html
+ <div class="synopsis">
+ 
+ B<asetkey> add <I<kvno>> <I<keyfile>> <I<principal>>
+ 
+ B<asetkey> delete <I<kvno>>
+ 
+ B<asetkey> list
+ 
+ =for html
+ </div>
+ 
+ =head1 DESCRIPTION
+ 
+ The B<asetkey> command is used to add a key to an AFS KeyFile from a
+ Kerberos keytab.  It is similar to B<bos addkey> except that it must be
+ run locally on the system where the KeyFile is located and it takes the
+ new key from a Kerberos 5 keytab rather than prompting for the password.
+ 
+ B<asetkey delete> can be used to delete a key (similar to B<bos
+ removekeys>), and B<asetkey list> will list the keys in a KeyFile (similar
+ to B<bos listkeys>).
+ 
+ B<asetkey> is used when authentication for an AFS cell is provided by a
+ Kerberos 5 KDC rather than B<kaserver>.  The key for the C<afs> or
+ C<afs/I<cell name>> principal in the Kerberos 5 KDC must match the key
+ stored in the AFS KeyFile on all AFS database servers and file servers.
+ This is done by creating a keytab containing that key using the standard
+ Kerberos commands (generally the C<ktadd> function of the B<kadmin>
+ command) and then, on each AFS database server and file server, adding
+ that key to the KeyFile with B<asetkey add>.  The I<kvno> chosen should
+ match the kvno in the Kerberos KDC (checked with B<kvno> or the
+ C<getprinc> function of B<kadmin>).  I<principal> should be the name of
+ the AFS principal in the keytab, which must be either C<afs> or
+ C<afs/I<cell name>>.
+ 
+ In cells that use the Update Server to distribute the contents of the
+ F</usr/afs/etc> directory, it is conventional to run B<asetkey add> only
+ on the control machine and then let the Update Server propagate the new
+ KeyFile to all other systems.
+ 
+ =head1 CAUTIONS
+ 
+ AFS currently only supports des-cbc-crc:v4 Kerberos keys.  Make sure, when
+ creating the keytab with C<ktadd>, you pass C<-e des-cbc-crc:v4> to force
+ the encryption type.  Otherwise, AFS authentication may not work.
+ 
+ As soon as a new keytab is created with C<ktadd>, new AFS service tickets
+ will use the new key.  However, tokens formed from those service tickets
+ will only work if the new key is present in the KeyFile on the AFS file
+ server.  There is therefore an outage window between when the new keytab
+ is created and when the key had been added to the KeyFile of all AFS
+ servers with B<asetkey>, during which newly obtained AFS tokens will not
+ work properly.
+ 
+ All of the KeyFile entries must match the key in the Kerberos KDC, but
+ each time C<ktadd> is run, it creates a new key.  Either the Update Server
+ must be used to distribute the KeyFile to all servers or the same keytab
+ must be used with B<asetkey> on each server.
+ 
+ =head1 EXAMPLES
+ 
+ The following commands create a new keytab for the principal C<afs> and
+ then import the key into the KeyFile.  Note the kvno in the output from
+ C<ktadd>.
+ 
+     % kadmin
+     Authenticating as principal rra/admin@stanford.edu with password.
+     Password for rra/admin@stanford.edu:
+     kadmin:  ktadd -k /tmp/afs.keytab -e des-cbc-crc:v4 afs
+     Entry for principal afs with kvno 3, encryption type DES cbc mode
+     with CRC-32 added to keytab WRFILE:/tmp/afs.keytab.
+     kadmin:  exit
+     % asetkey 3 /tmp/afs.keytab afs
+ 
+ You may want to use C<afs/I<cell name>> instead of C<afs>, particularly if
+ you may have multiple AFS cells for a single Kerberos realm.
+ 
+ =head1 PRIVILEGE REQUIRED
+ 
+ The issuer must be able to read (for B<asetkey list>) and write (for
+ B<asetkey add> and B<asetkey delete>) the KeyFile, normally
+ F</usr/afs/etc/KeyFile>.  In practice, this means that the issuer must be
+ the local superuser C<root> on the AFS file server or database server.
+ For B<asetkey add>, the issuer must also be able to read the specified
+ keytab file.
+ 
+ =head1 SEE ALSO
+ 
+ L<KeyFile(5)>,
+ L<bos_addkey(8)>,
+ L<bos_listkeys(8)>,
+ L<bos_removekey(8)>,
+ kadmin(8),
+ kvno(1)
+ 
+ =head1 COPYRIGHT
+ 
+ Copyright 2006 Russ Allbery <rra@stanford.edu>
+ 
+ This documentation is covered by the IBM Public License Version 1.0.  This
+ man page was written by Russ Allbery for OpenAFS.
Index: openafs/doc/man-pages/pod8/backup_adddump.pod
diff -c openafs/doc/man-pages/pod8/backup_adddump.pod:1.3 openafs/doc/man-pages/pod8/backup_adddump.pod:1.4
*** openafs/doc/man-pages/pod8/backup_adddump.pod:1.3	Tue Dec 20 19:41:18 2005
--- openafs/doc/man-pages/pod8/backup_adddump.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,15 ****
  
  =head1 SYNOPSIS
  
! B<backup adddump> B<-dump> <I<dump level name>>+
!     [B<-expires> <I<expiration date>>+]
!     [B<-localauth>] [B<-cell> <I<cell name>>] [B<-help>]
  
! B<backup addd> B<-d> <I<dump level name>>+ [B<-e> <I<expiration date>>+]
!     [B<-l>] [B<-c> <I<cell name>>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,22 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<backup adddump> S<<< B<-dump> <I<dump level name>>+ >>>
!     S<<< [B<-expires> <I<expiration date>>+] >>>
!     [B<-localauth>] S<<< [B<-cell> <I<cell name>>] >>> [B<-help>]
! 
! B<backup addd> S<<< B<-d> <I<dump level name>>+ >>> 
!     S<<< [B<-e> <I<expiration date>>+] >>>
!     [B<-l>] S<<< [B<-c> <I<cell name>>] >>> [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod8/backup_addhost.pod
diff -c openafs/doc/man-pages/pod8/backup_addhost.pod:1.2 openafs/doc/man-pages/pod8/backup_addhost.pod:1.3
*** openafs/doc/man-pages/pod8/backup_addhost.pod:1.2	Tue Dec 13 14:21:15 2005
--- openafs/doc/man-pages/pod8/backup_addhost.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,15 ****
  
  =head1 SYNOPSIS
  
! B<backup addhost> B<-tapehost> <I<tape machine name>>
!     [B<-portoffset> <I<TC port offset>>]
!     [B<-localauth>] [B<-cell> <I<cell name>>] [B<-help>]
  
! B<backup addh> B<-t> <I<tape machine name>> [B<-p> <I<TC port offset>>]
!     [B<-l>] [B<-c> <I<cell name>>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,21 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<backup addhost> S<<< B<-tapehost> <I<tape machine name>> >>>
!     S<<< [B<-portoffset> <I<TC port offset>>] >>>
!     [B<-localauth>] S<<< [B<-cell> <I<cell name>>] >>> [B<-help>]
! 
! B<backup addh> S<<< B<-t> <I<tape machine name>> >>> S<<< [B<-p> <I<TC port offset>>] >>>
!     [B<-l>] S<<< [B<-c> <I<cell name>>] >>> [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod8/backup_addvolentry.pod
diff -c openafs/doc/man-pages/pod8/backup_addvolentry.pod:1.4 openafs/doc/man-pages/pod8/backup_addvolentry.pod:1.5
*** openafs/doc/man-pages/pod8/backup_addvolentry.pod:1.4	Tue Dec 20 19:41:18 2005
--- openafs/doc/man-pages/pod8/backup_addvolentry.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,17 ****
  
  =head1 SYNOPSIS
  
! B<backup addvolentry> B<-name> <I<volume set name>>
!     B<-server> <I<machine name>> B<-partition> <I<partition name>>
!     B<-volumes> <I<volume name (regular expression)>>
!     [B<-localauth>] [B<-cell> <I<cell name>>] [B<-help>]
! 
! B<backup addvole> B<-n> <I<volume set name>> B<-s> <I<machine name>>
!     B<-p> <I<partition name>> B<-v> <I<volume name (regular expression)>>
!     [B<-l>] [B<-c> <I<cell name>>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,23 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<backup addvolentry> S<<< B<-name> <I<volume set name>> >>>
!     S<<< B<-server> <I<machine name>> >>> S<<< B<-partition> <I<partition name>> >>>
!     S<<< B<-volumes> <I<volume name (regular expression)>> >>>
!     [B<-localauth>] S<<< [B<-cell> <I<cell name>>] >>> [B<-help>]
! 
! B<backup addvole> S<<< B<-n> <I<volume set name>> >>> S<<< B<-s> <I<machine name>> >>>
!     S<<< B<-p> <I<partition name>> >>> S<<< B<-v> <I<volume name (regular expression)>> >>>
!     [B<-l>] S<<< [B<-c> <I<cell name>>] >>> [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod8/backup_addvolset.pod
diff -c openafs/doc/man-pages/pod8/backup_addvolset.pod:1.2 openafs/doc/man-pages/pod8/backup_addvolset.pod:1.3
*** openafs/doc/man-pages/pod8/backup_addvolset.pod:1.2	Tue Dec 13 14:21:15 2005
--- openafs/doc/man-pages/pod8/backup_addvolset.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,14 ****
  
  =head1 SYNOPSIS
  
! B<backup addvolset> B<-name> <I<volume set name>> [B<-temporary>]
!     [B<-localauth>] [B<-cell> <I<cell name>>] [B<-help>]
  
! B<backup addvols> B<-n> <I<volume set name>> [B<-t>] [B<-l>]
!     [B<-c> <I<cell name>>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,20 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<backup addvolset> S<<< B<-name> <I<volume set name>> >>> [B<-temporary>]
!     [B<-localauth>] S<<< [B<-cell> <I<cell name>>] >>> [B<-help>]
! 
! B<backup addvols> S<<< B<-n> <I<volume set name>> >>> [B<-t>] [B<-l>]
!     S<<< [B<-c> <I<cell name>>] >>> [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod8/backup_apropos.pod
diff -c openafs/doc/man-pages/pod8/backup_apropos.pod:1.3 openafs/doc/man-pages/pod8/backup_apropos.pod:1.4
*** openafs/doc/man-pages/pod8/backup_apropos.pod:1.3	Tue Dec 20 19:41:18 2005
--- openafs/doc/man-pages/pod8/backup_apropos.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,12 ****
  
  =head1 SYNOPSIS
  
! B<backup apropos> B<-topic> <I<help string>> [B<-help>]
  
! B<backup ap> B<-t> <I<help string>> [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,18 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<backup apropos> S<<< B<-topic> <I<help string>> >>> [B<-help>]
! 
! B<backup ap> S<<< B<-t> <I<help string>> >>> [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod8/backup_dbverify.pod
diff -c openafs/doc/man-pages/pod8/backup_dbverify.pod:1.3 openafs/doc/man-pages/pod8/backup_dbverify.pod:1.4
*** openafs/doc/man-pages/pod8/backup_dbverify.pod:1.3	Tue Dec 13 14:21:15 2005
--- openafs/doc/man-pages/pod8/backup_dbverify.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,13 ****
  
  =head1 SYNOPSIS
  
! B<backup dbverify> [B<-detail>] [B<-localauth>] [B<-cell> <I<cell name>>]
      [B<-help>]
  
! B<backup db> [B<-d>] [B<-l>] [B<-c> <I<cell name>>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,19 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<backup dbverify> [B<-detail>] [B<-localauth>] S<<< [B<-cell> <I<cell name>>] >>>
      [B<-help>]
  
! B<backup db> [B<-d>] [B<-l>] S<<< [B<-c> <I<cell name>>] >>> [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod8/backup_deldump.pod
diff -c openafs/doc/man-pages/pod8/backup_deldump.pod:1.2 openafs/doc/man-pages/pod8/backup_deldump.pod:1.3
*** openafs/doc/man-pages/pod8/backup_deldump.pod:1.2	Tue Dec 13 14:21:15 2005
--- openafs/doc/man-pages/pod8/backup_deldump.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,14 ****
  
  =head1 SYNOPSIS
  
! B<backup deldump> B<-dump> <I<dump level name>> [B<-localauth>]
!     [B<-cell> <I<cell name>>] [B<-help>]
  
! B<backup deld> B<-d> <I<dump level name>> [B<-l>] [B<-c> <I<cell name>>]
!     [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,20 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<backup deldump> S<<< B<-dump> <I<dump level name>> >>> [B<-localauth>]
!     S<<< [B<-cell> <I<cell name>>] >>> [B<-help>]
! 
! B<backup deld> S<<< B<-d> <I<dump level name>> >>> [B<-l>] 
!     S<<< [B<-c> <I<cell name>>] >>> [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod8/backup_deletedump.pod
diff -c openafs/doc/man-pages/pod8/backup_deletedump.pod:1.3 openafs/doc/man-pages/pod8/backup_deletedump.pod:1.4
*** openafs/doc/man-pages/pod8/backup_deletedump.pod:1.3	Tue Dec 13 14:21:15 2005
--- openafs/doc/man-pages/pod8/backup_deletedump.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,15 ****
  
  =head1 SYNOPSIS
  
! B<backup deletedump> [B<-dumpid> <I<dump id>>+] [B<-from> <I<date time>>+]
!     [B<-to> <I<date time>>+] [B<-localauth>] [B<-cell> <I<cell name>>]
      [B<-help>]
  
! B<backup dele> [B<-d> <I<dump id>>+] [B<-f> <I<date time>>+]
!     [-t <I<date time>>+] [B<-l>] [B<-c> <I<cell name>>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,21 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<backup deletedump> S<<< [B<-dumpid> <I<dump id>>+] >>> S<<< [B<-from> <I<date time>>+] >>>
!     S<<< [B<-to> <I<date time>>+] >>> [B<-localauth>] S<<< [B<-cell> <I<cell name>>] >>>
      [B<-help>]
  
! B<backup dele> S<<< [B<-d> <I<dump id>>+] >>> S<<< [B<-f> <I<date time>>+] >>>
!     [-t <I<date time>>+] [B<-l>] S<<< [B<-c> <I<cell name>>] >>> [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod8/backup_delhost.pod
diff -c openafs/doc/man-pages/pod8/backup_delhost.pod:1.2 openafs/doc/man-pages/pod8/backup_delhost.pod:1.3
*** openafs/doc/man-pages/pod8/backup_delhost.pod:1.2	Tue Dec 13 14:21:15 2005
--- openafs/doc/man-pages/pod8/backup_delhost.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,15 ****
  
  =head1 SYNOPSIS
  
! B<backup delhost> B<-tapehost> <I<tape machine name>>
!     [B<-portoffset> <I<TC port offset>>] [B<-localauth>]
!     [B<-cell> <I<cell name>>] [B<-help>]
  
! B<backup delh> B<-t> <I<tape machine name>> [B<-p> <I<TC port offset>>]
!     [B<-l>] [B<-c> <I<cell name>>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,21 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<backup delhost> S<<< B<-tapehost> <I<tape machine name>> >>>
!     S<<< [B<-portoffset> <I<TC port offset>>] >>> [B<-localauth>]
!     S<<< [B<-cell> <I<cell name>>] >>> [B<-help>]
! 
! B<backup delh> S<<< B<-t> <I<tape machine name>> >>> S<<< [B<-p> <I<TC port offset>>] >>>
!     [B<-l>] S<<< [B<-c> <I<cell name>>] >>> [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod8/backup_delvolentry.pod
diff -c openafs/doc/man-pages/pod8/backup_delvolentry.pod:1.3 openafs/doc/man-pages/pod8/backup_delvolentry.pod:1.4
*** openafs/doc/man-pages/pod8/backup_delvolentry.pod:1.3	Tue Dec 13 14:21:15 2005
--- openafs/doc/man-pages/pod8/backup_delvolentry.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,15 ****
  
  =head1 SYNOPSIS
  
! B<backup delvolentry> B<-name> <I<volume set name>>
!     B<-entry> <I<volume set index>> [B<-localauth>]
!     [B<-cell> <I<cell name>>] [B<-help>]
  
! B<backup delvole> B<-n> <I<volume set name>> B<-e> <I<volume set index>>
!     [B<-l>] [B<-c> <I<cell name>>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,21 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<backup delvolentry> S<<< B<-name> <I<volume set name>> >>>
!     S<<< B<-entry> <I<volume set index>> >>> [B<-localauth>]
!     S<<< [B<-cell> <I<cell name>>] >>> [B<-help>]
! 
! B<backup delvole> S<<< B<-n> <I<volume set name>> >>> S<<< B<-e> <I<volume set index>> >>>
!     [B<-l>] S<<< [B<-c> <I<cell name>>] >>> [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod8/backup_delvolset.pod
diff -c openafs/doc/man-pages/pod8/backup_delvolset.pod:1.3 openafs/doc/man-pages/pod8/backup_delvolset.pod:1.4
*** openafs/doc/man-pages/pod8/backup_delvolset.pod:1.3	Tue Dec 13 14:21:15 2005
--- openafs/doc/man-pages/pod8/backup_delvolset.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,14 ****
  
  =head1 SYNOPSIS
  
! B<backup delvolset> B<-name> <I<volume set name>>+ [B<-localauth>]
!     [B<-cell> <I<cell name>>] [B<-help>]
  
! B<backup delvols> B<-n> <I<volume set name>>+ [B<-l>]
!     [B<-c> <I<cell name>>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,20 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<backup delvolset> S<<< B<-name> <I<volume set name>>+ >>> [B<-localauth>]
!     S<<< [B<-cell> <I<cell name>>] >>> [B<-help>]
! 
! B<backup delvols> S<<< B<-n> <I<volume set name>>+ >>> [B<-l>]
!     S<<< [B<-c> <I<cell name>>] >>> [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod8/backup_diskrestore.pod
diff -c openafs/doc/man-pages/pod8/backup_diskrestore.pod:1.5 openafs/doc/man-pages/pod8/backup_diskrestore.pod:1.6
*** openafs/doc/man-pages/pod8/backup_diskrestore.pod:1.5	Tue Dec 20 19:41:18 2005
--- openafs/doc/man-pages/pod8/backup_diskrestore.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,22 ****
  
  =head1 SYNOPSIS
  
! B<backup diskrestore> B<-server> <I<machine to restore>>
!     B<-partition> <I<partition to restore>>
!     [B<-portoffset> <I<TC port offset>>+]
!     [B<-newserver> <I<destination machine>>]
!     [B<-newpartition> <I<destination partition>>]
!     [B<-extension> <I<new volume name extension>>]
!     [B<-n>] [B<-localauth>] [B<-cell> <I<cell name>>] [B<-help>]
! 
! B<backup di> B<-s> <I<machine to restore>> B<-pa> <I<partition to restore>>
!     [B<-po> <I<TC port offset>>+] [B<-news> <I<destination machine>>]
!     [B<-newp> <I<destination partition>>]
!     [B<-e> <I<new volume name extension>>] [B<-n>] [B<-l>]
!     [B<-c> <I<cell name>>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,28 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<backup diskrestore> S<<< B<-server> <I<machine to restore>> >>>
!     S<<< B<-partition> <I<partition to restore>> >>>
!     S<<< [B<-portoffset> <I<TC port offset>>+] >>>
!     S<<< [B<-newserver> <I<destination machine>>] >>>
!     S<<< [B<-newpartition> <I<destination partition>>] >>>
!     S<<< [B<-extension> <I<new volume name extension>>] >>>
!     [B<-n>] [B<-localauth>] S<<< [B<-cell> <I<cell name>>] >>> [B<-help>]
! 
! B<backup di> S<<< B<-s> <I<machine to restore>> >>> S<<< B<-pa> <I<partition to restore>> >>>
!     S<<< [B<-po> <I<TC port offset>>+] >>> S<<< [B<-news> <I<destination machine>>] >>>
!     S<<< [B<-newp> <I<destination partition>>] >>>
!     S<<< [B<-e> <I<new volume name extension>>] >>> [B<-n>] [B<-l>]
!     S<<< [B<-c> <I<cell name>>] >>> [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod8/backup_dump.pod
diff -c openafs/doc/man-pages/pod8/backup_dump.pod:1.5 openafs/doc/man-pages/pod8/backup_dump.pod:1.6
*** openafs/doc/man-pages/pod8/backup_dump.pod:1.5	Tue Dec 20 19:41:18 2005
--- openafs/doc/man-pages/pod8/backup_dump.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,20 ****
  
  =head1 SYNOPSIS
  
! B<backup dump> [B<-volumeset> <I<volume set name>>]
!     [B<-dump> <I<dump level name>>] [B<-portoffset> <I<TC port offset>>]
!     [B<-at> <I<date/time to start dump>>+] [B<-append>] [B<-n>]
!     [B<-file> <I<load file>>] [B<-localauth>] [-B<cell> <I<cell name>>]
!     [B<-help>]
! 
! B<backup dump> [B<-v> <I<volume set name>>] [B<-d> <I<dump level name>>]
!     [B<-p> <I<TC port offset>>] [B<-at> <I<Date/time to start dump>>+]
!     [B<-ap>] [B<-n>] [B<-f> <I<load file>>] [B<-l>] [B<-c> <I<cell name>>]
      [B<-h>]
  
  =head1 DESCRIPTION
  
  The B<backup dump> command either dumps the volume set specified by the
--- 4,29 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<backup dump> S<<< [B<-volumeset> <I<volume set name>>] >>>
!     S<<< [B<-dump> <I<dump level name>>] >>> 
!     S<<< [B<-portoffset> <I<TC port offset>>] >>>
!     S<<< [B<-at> <I<date/time to start dump>>+] >>> [B<-append>] [B<-n>]
!     S<<< [B<-file> <I<load file>>] >>> [B<-localauth>] 
!     S<<< [B<-cell> <I<cell name>>] >>> [B<-help>]
! 
! B<backup dump> S<<< [B<-v> <I<volume set name>>] >>>
!     S<<< [B<-d> <I<dump level name>>] >>>
!     S<<< [B<-p> <I<TC port offset>>] >>>
!     S<<< [B<-at> <I<Date/time to start dump>>+] >>> [B<-ap>] [B<-n>]
!     S<<< [B<-f> <I<load file>>] >>> [B<-l>] S<<< [B<-c> <I<cell name>>] >>>
      [B<-h>]
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The B<backup dump> command either dumps the volume set specified by the
Index: openafs/doc/man-pages/pod8/backup_dumpinfo.pod
diff -c openafs/doc/man-pages/pod8/backup_dumpinfo.pod:1.4 openafs/doc/man-pages/pod8/backup_dumpinfo.pod:1.5
*** openafs/doc/man-pages/pod8/backup_dumpinfo.pod:1.4	Tue Dec 20 19:41:18 2005
--- openafs/doc/man-pages/pod8/backup_dumpinfo.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,14 ****
  
  =head1 SYNOPSIS
  
! B<backup dumpinfo> [B<-ndumps> <I<number of dumps>>] [B<-id> <I<dump id>>]
!     [B<-verbose>] [B<-localauth>] [B<-cell> <I<cell name>>] [B<-help>]
  
! B<backup dumpi> [B<-n> <I<no. of dumps>>] [-i <I<dump id>>] [B<-v>]
!     [B<-l>] [B<-c> <I<cell name>>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,21 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<backup dumpinfo> S<<< [B<-ndumps> <I<number of dumps>>] >>> 
!     S<<< [B<-id> <I<dump id>>] >>> [B<-verbose>] [B<-localauth>] 
!     S<<< [B<-cell> <I<cell name>>] >>> [B<-help>]
! 
! B<backup dumpi> S<<< [B<-n> <I<no. of dumps>>] >>> [-i <I<dump id>>] [B<-v>]
!     [B<-l>] S<<< [B<-c> <I<cell name>>] >>> [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod8/backup_help.pod
diff -c openafs/doc/man-pages/pod8/backup_help.pod:1.3 openafs/doc/man-pages/pod8/backup_help.pod:1.4
*** openafs/doc/man-pages/pod8/backup_help.pod:1.3	Tue Dec 20 19:41:18 2005
--- openafs/doc/man-pages/pod8/backup_help.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,12 ****
  
  =head1 SYNOPSIS
  
! B<backup help> [B<-topic> <I<help string>>+] [B<-help>]
  
! B<backup h> [B<-t> <I<help string>>+] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,18 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<backup help> S<<< [B<-topic> <I<help string>>+] >>> [B<-help>]
! 
! B<backup h> S<<< [B<-t> <I<help string>>+] >>> [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod8/backup_interactive.pod
diff -c openafs/doc/man-pages/pod8/backup_interactive.pod:1.3 openafs/doc/man-pages/pod8/backup_interactive.pod:1.4
*** openafs/doc/man-pages/pod8/backup_interactive.pod:1.3	Tue Dec 20 19:41:18 2005
--- openafs/doc/man-pages/pod8/backup_interactive.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,13 ****
  
  =head1 SYNOPSIS
  
! B<backup> [B<interactive>] [B<-localauth>] [B<-cell> <I<cell name>>]
      [B<-help>]
  
! B<backup> [B<i>] [B<-l>] [B<-c> <I<cell name>>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,19 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<backup> [B<interactive>] [B<-localauth>] S<<< [B<-cell> <I<cell name>>] >>>
      [B<-help>]
  
! B<backup> [B<i>] [B<-l>] S<<< [B<-c> <I<cell name>>] >>> [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod8/backup_jobs.pod
diff -c openafs/doc/man-pages/pod8/backup_jobs.pod:1.2 openafs/doc/man-pages/pod8/backup_jobs.pod:1.3
*** openafs/doc/man-pages/pod8/backup_jobs.pod:1.2	Tue Dec 13 14:21:15 2005
--- openafs/doc/man-pages/pod8/backup_jobs.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,13 ****
--- 4,19 ----
  
  =head1 SYNOPSIS
  
+ =for html
+ <div class="synopsis">
+ 
  B<jobs> [B<-help>]
  
  B<j> [B<-h>]
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The B<backup jobs> command lists the job ID number and status of each
Index: openafs/doc/man-pages/pod8/backup_kill.pod
diff -c openafs/doc/man-pages/pod8/backup_kill.pod:1.3 openafs/doc/man-pages/pod8/backup_kill.pod:1.4
*** openafs/doc/man-pages/pod8/backup_kill.pod:1.3	Tue Dec 13 14:21:15 2005
--- openafs/doc/man-pages/pod8/backup_kill.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,12 ****
  
  =head1 SYNOPSIS
  
! B<kill> B<-id> <I<job ID or dump set name>> [B<-help>]
  
! B<k -i> <I<job ID or dump set name>> [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,18 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<kill> S<<< B<-id> <I<job ID or dump set name>> >>> [B<-help>]
! 
! S<<< B<k -i> <I<job ID or dump set name>> >>> [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod8/backup_labeltape.pod
diff -c openafs/doc/man-pages/pod8/backup_labeltape.pod:1.3 openafs/doc/man-pages/pod8/backup_labeltape.pod:1.5
*** openafs/doc/man-pages/pod8/backup_labeltape.pod:1.3	Tue Dec 13 20:30:22 2005
--- openafs/doc/man-pages/pod8/backup_labeltape.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,18 ****
  
  =head1 SYNOPSIS
  
! B<backup labeltape> [B<-name> <I<AFS tape name, defaults to NULL>>]
!     [B<-size> <I<tape size in Kbytes, defaults to size in tapeconfig>>]
!     [B<-portoffset> <I<TC port offset>>] [B<-pname> <I<permanent tape name>>]
!     [B<-localauth>] [B<-cell> <I<cell name>>] [B<-help>]
! 
! B<backup la> [B<-n> <I<AFS tape name, defaults to NULL>>]
!     [B<-s> <I<tape size in Kbytes, defaults to size in tapeconfig>>]
!     [B<-po> <I<TC port offset>>] [B<-pn> <I<permanent tape name>>]
!     [B<-l>] [B<-c> <I<cell name>>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,24 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<backup labeltape> S<<< [B<-name> <I<AFS tape name, defaults to NULL>>] >>>
!     S<<< [B<-size> <I<tape size in Kbytes, defaults to size in tapeconfig>>] >>>
!     S<<< [B<-portoffset> <I<TC port offset>>] >>> S<<< [B<-pname> <I<permanent tape name>>] >>>
!     [B<-localauth>] S<<< [B<-cell> <I<cell name>>] >>> [B<-help>]
! 
! B<backup la> S<<< [B<-n> <I<AFS tape name, defaults to NULL>>] >>>
!     S<<< [B<-s> <I<tape size in Kbytes, defaults to size in tapeconfig>>] >>>
!     S<<< [B<-po> <I<TC port offset>>] >>> S<<< [B<-pn> <I<permanent tape name>>] >>>
!     [B<-l>] S<<< [B<-c> <I<cell name>>] >>> [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
***************
*** 202,208 ****
  L<butc(5)>,
  L<backup(8)>,
  L<backup_readlabel(8)>,
! L<butc(1)>
  
  =head1 COPYRIGHT
  
--- 208,214 ----
  L<butc(5)>,
  L<backup(8)>,
  L<backup_readlabel(8)>,
! L<butc(8)>
  
  =head1 COPYRIGHT
  
Index: openafs/doc/man-pages/pod8/backup_listdumps.pod
diff -c openafs/doc/man-pages/pod8/backup_listdumps.pod:1.3 openafs/doc/man-pages/pod8/backup_listdumps.pod:1.4
*** openafs/doc/man-pages/pod8/backup_listdumps.pod:1.3	Tue Dec 20 19:41:18 2005
--- openafs/doc/man-pages/pod8/backup_listdumps.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,12 ****
  
  =head1 SYNOPSIS
  
! B<backup listdumps> [B<-localauth>] [B<-cell> <I<cell name>>] [B<-help>]
  
! B<backup listd> [B<-l>] [B<-c> <I<cell name>>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,18 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<backup listdumps> [B<-localauth>] S<<< [B<-cell> <I<cell name>>] >>> [B<-help>]
! 
! B<backup listd> [B<-l>] S<<< [B<-c> <I<cell name>>] >>> [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod8/backup_listhosts.pod
diff -c openafs/doc/man-pages/pod8/backup_listhosts.pod:1.2 openafs/doc/man-pages/pod8/backup_listhosts.pod:1.3
*** openafs/doc/man-pages/pod8/backup_listhosts.pod:1.2	Tue Dec 13 14:21:15 2005
--- openafs/doc/man-pages/pod8/backup_listhosts.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,12 ****
  
  =head1 SYNOPSIS
  
! B<backup listhosts> [B<-localauth>] [B<-cell> <I<cell name>>] [B<-help>]
  
! B<backup listh> [B<-l>] [B<-c> <I<cell name>>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,18 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<backup listhosts> [B<-localauth>] S<<< [B<-cell> <I<cell name>>] >>> [B<-help>]
! 
! B<backup listh> [B<-l>] S<<< [B<-c> <I<cell name>>] >>> [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod8/backup_listvolsets.pod
diff -c openafs/doc/man-pages/pod8/backup_listvolsets.pod:1.2 openafs/doc/man-pages/pod8/backup_listvolsets.pod:1.3
*** openafs/doc/man-pages/pod8/backup_listvolsets.pod:1.2	Tue Dec 13 14:21:15 2005
--- openafs/doc/man-pages/pod8/backup_listvolsets.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,14 ****
  
  =head1 SYNOPSIS
  
! B<backup listvolsets> [B<-name> <I<volume set name>>] [B<-localauth>]
!     [B<-cell> <I<cell name>>] [B<-help>]
  
! B<backup listv> [B<-n> <I<volume set name>>] [B<-l>]
!     [B<-c> <I<cell name>>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,20 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<backup listvolsets> S<<< [B<-name> <I<volume set name>>] >>> [B<-localauth>]
!     S<<< [B<-cell> <I<cell name>>] >>> [B<-help>]
! 
! B<backup listv> S<<< [B<-n> <I<volume set name>>] >>> [B<-l>]
!     S<<< [B<-c> <I<cell name>>] >>> [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod8/backup_quit.pod
diff -c openafs/doc/man-pages/pod8/backup_quit.pod:1.3 openafs/doc/man-pages/pod8/backup_quit.pod:1.4
*** openafs/doc/man-pages/pod8/backup_quit.pod:1.3	Tue Dec 13 14:21:15 2005
--- openafs/doc/man-pages/pod8/backup_quit.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,13 ****
--- 4,19 ----
  
  =head1 SYNOPSIS
  
+ =for html
+ <div class="synopsis">
+ 
  B<quit> [B<-help>]
  
  B<q> [B<-h>]
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The B<backup quit> command exits interactive mode, returning the issuer to
Index: openafs/doc/man-pages/pod8/backup_readlabel.pod
diff -c openafs/doc/man-pages/pod8/backup_readlabel.pod:1.3 openafs/doc/man-pages/pod8/backup_readlabel.pod:1.4
*** openafs/doc/man-pages/pod8/backup_readlabel.pod:1.3	Tue Dec 13 20:30:22 2005
--- openafs/doc/man-pages/pod8/backup_readlabel.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,15 ****
  
  =head1 SYNOPSIS
  
! B<backup readlabel> [B<-portoffset> <I<TC port offset>>] [B<-localauth>]
!     [B<-cell> <I<cell name>>] [B<-help>]
  
! B<backup rea> [B<-p> <I<TC port offset>>] [B<-l>] [B<-c> <I<cell name>>]
      [B<-h>]
  
  =head1 DESCRIPTION
  
  The B<backup readlabel> command displays information from the magnetic
--- 4,21 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<backup readlabel> S<<< [B<-portoffset> <I<TC port offset>>] >>> [B<-localauth>]
!     S<<< [B<-cell> <I<cell name>>] >>> [B<-help>]
! 
! B<backup rea> S<<< [B<-p> <I<TC port offset>>] >>> [B<-l>] S<<< [B<-c> <I<cell name>>] >>>
      [B<-h>]
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The B<backup readlabel> command displays information from the magnetic
Index: openafs/doc/man-pages/pod8/backup_restoredb.pod
diff -c openafs/doc/man-pages/pod8/backup_restoredb.pod:1.4 openafs/doc/man-pages/pod8/backup_restoredb.pod:1.5
*** openafs/doc/man-pages/pod8/backup_restoredb.pod:1.4	Tue Dec 13 20:30:22 2005
--- openafs/doc/man-pages/pod8/backup_restoredb.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,15 ****
  
  =head1 SYNOPSIS
  
! B<backup restoredb> [B<-portoffset> <I<TC port offset>>] [B<-localauth>]
!     [B<-cell> <I<cell name>>] [B<-help>]
  
! B<backup res> [B<-p> <I<TC port offset>>] [B<-l>] [B<-c> <I<cell name>>]
      [B<-h>]
  
  =head1 DESCRIPTION
  
  The B<backup restoredb> command restores to the Backup Server machine's
--- 4,21 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<backup restoredb> S<<< [B<-portoffset> <I<TC port offset>>] >>> [B<-localauth>]
!     S<<< [B<-cell> <I<cell name>>] >>> [B<-help>]
! 
! B<backup res> S<<< [B<-p> <I<TC port offset>>] >>> [B<-l>] S<<< [B<-c> <I<cell name>>] >>>
      [B<-h>]
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The B<backup restoredb> command restores to the Backup Server machine's
Index: openafs/doc/man-pages/pod8/backup_savedb.pod
diff -c openafs/doc/man-pages/pod8/backup_savedb.pod:1.4 openafs/doc/man-pages/pod8/backup_savedb.pod:1.5
*** openafs/doc/man-pages/pod8/backup_savedb.pod:1.4	Tue Dec 20 19:41:18 2005
--- openafs/doc/man-pages/pod8/backup_savedb.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,15 ****
  
  =head1 SYNOPSIS
  
! B<backup savedb> [B<-portoffset> <I<TC port offset>>]
!     [B<-archive> <I<date time>>+] [B<-localauth>]
!     [B<-cell> <I<cell name>>] [B<-help>]
  
! B<backup sa> [B<-p> <I<TC port offset>>] [B<-a> <I<date time>>+]
!     [B<-l>] [B<-c> <I<cell name>>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,21 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<backup savedb> S<<< [B<-portoffset> <I<TC port offset>>] >>>
!     S<<< [B<-archive> <I<date time>>+] >>> [B<-localauth>]
!     S<<< [B<-cell> <I<cell name>>] >>> [B<-help>]
! 
! B<backup sa> S<<< [B<-p> <I<TC port offset>>] >>> S<<< [B<-a> <I<date time>>+] >>>
!     [B<-l>] S<<< [B<-c> <I<cell name>>] >>> [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod8/backup_scantape.pod
diff -c openafs/doc/man-pages/pod8/backup_scantape.pod:1.4 openafs/doc/man-pages/pod8/backup_scantape.pod:1.6
*** openafs/doc/man-pages/pod8/backup_scantape.pod:1.4	Tue Dec 13 20:30:22 2005
--- openafs/doc/man-pages/pod8/backup_scantape.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,14 ****
  
  =head1 SYNOPSIS
  
! B<backup scantape> [B<-dbadd>] [B<-portoffset> <I<TC port offset>>]
!     [B<-localauth>] [B<-cell> <I<cell name>>] [B<-help>]
  
! B<backup sc> [B<-d>] [B<-p> <I<TC port offset>>] [B<-l>]
!     [B<-c> <I<cell name>>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,20 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<backup scantape> [B<-dbadd>] S<<< [B<-portoffset> <I<TC port offset>>] >>>
!     [B<-localauth>] S<<< [B<-cell> <I<cell name>>] >>> [B<-help>]
! 
! B<backup sc> [B<-d>] S<<< [B<-p> <I<TC port offset>>] >>> [B<-l>]
!     S<<< [B<-c> <I<cell name>>] >>> [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
***************
*** 337,343 ****
  L<backup(8)>,
  L<backup_dump(8)>,
  L<backup_dumpinfo(8)>,
! L<butc(1)>
  
  =head1 COPYRIGHT
  
--- 343,349 ----
  L<backup(8)>,
  L<backup_dump(8)>,
  L<backup_dumpinfo(8)>,
! L<butc(8)>
  
  =head1 COPYRIGHT
  
Index: openafs/doc/man-pages/pod8/backup_setexp.pod
diff -c openafs/doc/man-pages/pod8/backup_setexp.pod:1.3 openafs/doc/man-pages/pod8/backup_setexp.pod:1.4
*** openafs/doc/man-pages/pod8/backup_setexp.pod:1.3	Tue Dec 20 19:41:18 2005
--- openafs/doc/man-pages/pod8/backup_setexp.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,15 ****
  
  =head1 SYNOPSIS
  
! B<backup setexp> B<-dump> <I<dump level name>>+
!     [B<-expires> <I<expiration date>>+] [B<-localauth>]
!     [B<-cell> <I<cell name>>] [B<-help>]
  
! B<backup se> B<-d> <I<dump level name>>+ [B<-e> <I<expiration date>>+]
!     [B<-l>] [B<-c> <I<cell name>>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,21 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<backup setexp> S<<< B<-dump> <I<dump level name>>+ >>>
!     S<<< [B<-expires> <I<expiration date>>+] >>> [B<-localauth>]
!     S<<< [B<-cell> <I<cell name>>] >>> [B<-help>]
! 
! B<backup se> S<<< B<-d> <I<dump level name>>+ >>> S<<< [B<-e> <I<expiration date>>+] >>>
!     [B<-l>] S<<< [B<-c> <I<cell name>>] >>> [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod8/backup_status.pod
diff -c openafs/doc/man-pages/pod8/backup_status.pod:1.2 openafs/doc/man-pages/pod8/backup_status.pod:1.3
*** openafs/doc/man-pages/pod8/backup_status.pod:1.2	Tue Dec 13 14:21:16 2005
--- openafs/doc/man-pages/pod8/backup_status.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,15 ****
  
  =head1 SYNOPSIS
  
! B<backup status> [B<-portoffset> <I<TC port offset>>] [B<-localauth>]
!     [B<-cell> <I<cell name>>] [B<-help>]
  
! B<backup st> [B<-p> <I<TC port offset>>] [B<-l>] [B<-c> <I<cell name>>]
      [B<-h>]
  
  =head1 DESCRIPTION
  
  The B<backup status> command displays which operation, if any, the
--- 4,21 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<backup status> S<<< [B<-portoffset> <I<TC port offset>>] >>> [B<-localauth>]
!     S<<< [B<-cell> <I<cell name>>] >>> [B<-help>]
! 
! B<backup st> S<<< [B<-p> <I<TC port offset>>] >>> [B<-l>] S<<< [B<-c> <I<cell name>>] >>>
      [B<-h>]
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The B<backup status> command displays which operation, if any, the
Index: openafs/doc/man-pages/pod8/backup_volinfo.pod
diff -c openafs/doc/man-pages/pod8/backup_volinfo.pod:1.3 openafs/doc/man-pages/pod8/backup_volinfo.pod:1.4
*** openafs/doc/man-pages/pod8/backup_volinfo.pod:1.3	Tue Dec 20 19:41:18 2005
--- openafs/doc/man-pages/pod8/backup_volinfo.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,13 ****
  
  =head1 SYNOPSIS
  
! B<backup volinfo> B<-volume> <I<volume name>> [B<-localauth>]
!     [B<-cell> <I<cell name>>] [B<-help>]
  
! B<backup voli> B<-v> <I<volume name>> [B<-l>] [B<-c> <I<cell name>>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,19 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<backup volinfo> S<<< B<-volume> <I<volume name>> >>> [B<-localauth>]
!     S<<< [B<-cell> <I<cell name>>] >>> [B<-help>]
! 
! B<backup voli> S<<< B<-v> <I<volume name>> >>> [B<-l>] S<<< [B<-c> <I<cell name>>] >>> [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod8/backup_volrestore.pod
diff -c openafs/doc/man-pages/pod8/backup_volrestore.pod:1.4 openafs/doc/man-pages/pod8/backup_volrestore.pod:1.5
*** openafs/doc/man-pages/pod8/backup_volrestore.pod:1.4	Tue Dec 20 19:41:18 2005
--- openafs/doc/man-pages/pod8/backup_volrestore.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,22 ****
  
  =head1 SYNOPSIS
  
! B<backup volrestore> B<-server> <I<destination machine>>
!     B<-partition> <I<destination partition>>
!     B<-volume> <I<volume(s) to restore>>+
!     [B<-extension> <I<new volume name extension>>]
!     [B<-date> <I<date from which to restore>>+]
!     [B<-portoffset> <I<TC port offsets>>+] [B<-n>]
!     [B<-localauth>] [B<-cell> <I<cell name>>] [B<-help>]
! 
! B<backup volr> B<-s> <I<destination machine>>
!     B<-pa> <I<destination partition>> B<-v> <I<volume(s) to restore>>+
!     [B<-e> <I<new volume name extension>>]
!     [B<-d> <I<date from which to restore>>+] [B<-po> <I<TC port offsets>>+]
!     [B<-n>] [B<-l>] [B<-c> <I<cell name>>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,28 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<backup volrestore> S<<< B<-server> <I<destination machine>> >>>
!     S<<< B<-partition> <I<destination partition>> >>>
!     S<<< B<-volume> <I<volume(s) to restore>>+ >>>
!     S<<< [B<-extension> <I<new volume name extension>>] >>>
!     S<<< [B<-date> <I<date from which to restore>>+] >>>
!     S<<< [B<-portoffset> <I<TC port offsets>>+] >>> [B<-n>]
!     [B<-localauth>] S<<< [B<-cell> <I<cell name>>] >>> [B<-help>]
! 
! B<backup volr> S<<< B<-s> <I<destination machine>> >>>
!     S<<< B<-pa> <I<destination partition>> >>> S<<< B<-v> <I<volume(s) to restore>>+ >>>
!     S<<< [B<-e> <I<new volume name extension>>] >>>
!     S<<< [B<-d> <I<date from which to restore>>+] >>> S<<< [B<-po> <I<TC port offsets>>+] >>>
!     [B<-n>] [B<-l>] S<<< [B<-c> <I<cell name>>] >>> [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod8/backup_volsetrestore.pod
diff -c openafs/doc/man-pages/pod8/backup_volsetrestore.pod:1.4 openafs/doc/man-pages/pod8/backup_volsetrestore.pod:1.5
*** openafs/doc/man-pages/pod8/backup_volsetrestore.pod:1.4	Tue Dec 20 19:41:18 2005
--- openafs/doc/man-pages/pod8/backup_volsetrestore.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,17 ****
  
  =head1 SYNOPSIS
  
! B<backup volsetrestore> [B<-name> <I<volume set name>>]
!     [B<-file> <I<file name>>] [B<-portoffset> <I<TC port offset>>+]
!     [B<-extension> <I<new volume name extension>>] [B<-n>]
!     [B<-localauth>] [B<-cell> <I<cell name>>] [B<-help>]
! 
! B<backup vols> [B<-na> <I<volume set name>>] [B<-f> <I<file name>>]
!     [B<-p> <I<TC port offset>>+] [B<-e> <I<new volume name extension>>]
!     [B<-n>] [B<-l>] [B<-c> <I<cell name>>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,23 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<backup volsetrestore> S<<< [B<-name> <I<volume set name>>] >>>
!     S<<< [B<-file> <I<file name>>] >>> S<<< [B<-portoffset> <I<TC port offset>>+] >>>
!     S<<< [B<-extension> <I<new volume name extension>>] >>> [B<-n>]
!     [B<-localauth>] S<<< [B<-cell> <I<cell name>>] >>> [B<-help>]
! 
! B<backup vols> S<<< [B<-na> <I<volume set name>>] >>> S<<< [B<-f> <I<file name>>] >>>
!     S<<< [B<-p> <I<TC port offset>>+] >>> S<<< [B<-e> <I<new volume name extension>>] >>>
!     [B<-n>] [B<-l>] S<<< [B<-c> <I<cell name>>] >>> [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod8/bos_addhost.pod
diff -c openafs/doc/man-pages/pod8/bos_addhost.pod:1.3 openafs/doc/man-pages/pod8/bos_addhost.pod:1.4
*** openafs/doc/man-pages/pod8/bos_addhost.pod:1.3	Tue Dec 13 14:21:16 2005
--- openafs/doc/man-pages/pod8/bos_addhost.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,14 ****
  
  =head1 SYNOPSIS
  
! B<bos addhost> B<-server> <I<machine name>> B<-host> <I<host name>>+
!     [B<-cell> <I<cell name>>] [B<-noauth>] [B<-localauth>] [B<-help>]
  
! B<bos addh> B<-s> <I<machine name>> B<-ho> <I<host name>>+
!     [B<-c> <I<cell name>>] [B<-n>] [B<-l>] [B<-he>]
  
  =head1 DESCRIPTION
  
--- 4,20 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<bos addhost> S<<< B<-server> <I<machine name>> >>> S<<< B<-host> <I<host name>>+ >>>
!     S<<< [B<-cell> <I<cell name>>] >>> [B<-noauth>] [B<-localauth>] [B<-help>]
! 
! B<bos addh> S<<< B<-s> <I<machine name>> >>> S<<< B<-ho> <I<host name>>+ >>>
!     S<<< [B<-c> <I<cell name>>] >>> [B<-n>] [B<-l>] [B<-he>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod8/bos_addkey.pod
diff -c openafs/doc/man-pages/pod8/bos_addkey.pod:1.2 openafs/doc/man-pages/pod8/bos_addkey.pod:1.3
*** openafs/doc/man-pages/pod8/bos_addkey.pod:1.2	Tue Dec 13 14:21:16 2005
--- openafs/doc/man-pages/pod8/bos_addkey.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,17 ****
  
  =head1 SYNOPSIS
  
! B<bos addkey> B<-server> <I<machine name>> [B<-key> <I<key>>]
!     B<-kvno> <I<key version number>> [B<-cell> <I<cell name>>]
      [B<-noauth>] [B<-localauth>] [B<-help>]
  
! B<bos addk> B<-s> <I<machine name>> [B<-ke> <I<key>>]
!     B<-kv> <I<key version number>> [B<-ce> <I<cell name>>] [B<-n>]
      [B<-l>] [B<-h>]
  
  =head1 DESCRIPTION
  
  The B<bos addkey> command constructs a server encryption key from the text
--- 4,23 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<bos addkey> S<<< B<-server> <I<machine name>> >>> S<<< [B<-key> <I<key>>] >>>
!     S<<< B<-kvno> <I<key version number>> >>> S<<< [B<-cell> <I<cell name>>] >>>
      [B<-noauth>] [B<-localauth>] [B<-help>]
  
! B<bos addk> S<<< B<-s> <I<machine name>> >>> S<<< [B<-ke> <I<key>>] >>>
!     S<<< B<-kv> <I<key version number>> >>> S<<< [B<-ce> <I<cell name>>] >>> [B<-n>]
      [B<-l>] [B<-h>]
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The B<bos addkey> command constructs a server encryption key from the text
Index: openafs/doc/man-pages/pod8/bos_adduser.pod
diff -c openafs/doc/man-pages/pod8/bos_adduser.pod:1.2 openafs/doc/man-pages/pod8/bos_adduser.pod:1.3
*** openafs/doc/man-pages/pod8/bos_adduser.pod:1.2	Tue Dec 13 14:21:16 2005
--- openafs/doc/man-pages/pod8/bos_adduser.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,14 ****
  
  =head1 SYNOPSIS
  
! B<bos adduser> B<-server> <I<machine name>> B<-user> <I<user names>>+
!     [B<-cell> <I<cell name>>] [B<-noauth>] [B<-localauth>] [B<-help>]
  
! B<bos addu> B<-s> <I<machine name>> B<-u> <I<user names>>+
!     [B<-c> <I<cell name>>] [B<-n>] [B<-l>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,20 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<bos adduser> S<<< B<-server> <I<machine name>> >>> S<<< B<-user> <I<user names>>+ >>>
!     S<<< [B<-cell> <I<cell name>>] >>> [B<-noauth>] [B<-localauth>] [B<-help>]
! 
! B<bos addu> S<<< B<-s> <I<machine name>> >>> S<<< B<-u> <I<user names>>+ >>>
!     S<<< [B<-c> <I<cell name>>] >>> [B<-n>] [B<-l>] [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod8/bos_apropos.pod
diff -c openafs/doc/man-pages/pod8/bos_apropos.pod:1.2 openafs/doc/man-pages/pod8/bos_apropos.pod:1.3
*** openafs/doc/man-pages/pod8/bos_apropos.pod:1.2	Tue Dec 13 14:21:16 2005
--- openafs/doc/man-pages/pod8/bos_apropos.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,12 ****
  
  =head1 SYNOPSIS
  
! B<bos apropos> B<-topic> <I<help string>> [B<-help>]
  
! B<bos ap> B<-t> <I<help string>> [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,18 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<bos apropos> S<<< B<-topic> <I<help string>> >>> [B<-help>]
! 
! B<bos ap> S<<< B<-t> <I<help string>> >>> [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod8/bos_create.pod
diff -c openafs/doc/man-pages/pod8/bos_create.pod:1.2 openafs/doc/man-pages/pod8/bos_create.pod:1.3
*** openafs/doc/man-pages/pod8/bos_create.pod:1.2	Tue Dec 13 14:21:16 2005
--- openafs/doc/man-pages/pod8/bos_create.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,19 ****
  
  =head1 SYNOPSIS
  
! B<bos create> B<-server> <I<machine name>>
!     B<-instance> <I<server process name>> B<-type> <I<server type>>
!     B<-cmd> <I<command lines>>+ [B<-notifier> <I<notifier program>>]
!     [B<-cell> <I<cell name>>] [B<-noauth>] [B<-localauth>] [B<-help>]
! 
! B<bos c> B<-s> <I<machine name>> B<-i> <I<server process name>>
!     B<-t> <I<server type>> B<-cm> <I<command lines>>+
!     [B<-not> <I<notifier program>>] [B<-ce> <I<cell name>>] [B<-noa>]
      [B<-l>] [B<-h>]
  
  =head1 DESCRIPTION
  
  The B<bos create> command creates a server process entry in the
--- 4,25 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<bos create> S<<< B<-server> <I<machine name>> >>>
!     S<<< B<-instance> <I<server process name>> >>> S<<< B<-type> <I<server type>> >>>
!     S<<< B<-cmd> <I<command lines>>+ >>> S<<< [B<-notifier> <I<notifier program>>] >>>
!     S<<< [B<-cell> <I<cell name>>] >>> [B<-noauth>] [B<-localauth>] [B<-help>]
! 
! B<bos c> S<<< B<-s> <I<machine name>> >>> S<<< B<-i> <I<server process name>> >>>
!     S<<< B<-t> <I<server type>> >>> S<<< B<-cm> <I<command lines>>+ >>>
!     S<<< [B<-not> <I<notifier program>>] >>> S<<< [B<-ce> <I<cell name>>] >>> [B<-noa>]
      [B<-l>] [B<-h>]
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The B<bos create> command creates a server process entry in the
Index: openafs/doc/man-pages/pod8/bos_delete.pod
diff -c openafs/doc/man-pages/pod8/bos_delete.pod:1.2 openafs/doc/man-pages/pod8/bos_delete.pod:1.3
*** openafs/doc/man-pages/pod8/bos_delete.pod:1.2	Tue Dec 13 14:21:16 2005
--- openafs/doc/man-pages/pod8/bos_delete.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,15 ****
  
  =head1 SYNOPSIS
  
! B<bos delete> B<-server> <I<machine name>>
!     B<-instance> <I<server process name>>+ [B<-cell> <I<cell name>>]
      [B<-noauth>] [B<-localauth>] [B<-help>]
  
! B<bos d> B<-s> <I<machine name>> B<-i> <I<server process name>>+
!     [B<-c> <I<cell name>>] [B<-n>] [B<-l>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,21 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<bos delete> S<<< B<-server> <I<machine name>> >>>
!     S<<< B<-instance> <I<server process name>>+ >>> S<<< [B<-cell> <I<cell name>>] >>>
      [B<-noauth>] [B<-localauth>] [B<-help>]
  
! B<bos d> S<<< B<-s> <I<machine name>> >>> S<<< B<-i> <I<server process name>>+ >>>
!     S<<< [B<-c> <I<cell name>>] >>> [B<-n>] [B<-l>] [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod8/bos_exec.pod
diff -c openafs/doc/man-pages/pod8/bos_exec.pod:1.2 openafs/doc/man-pages/pod8/bos_exec.pod:1.3
*** openafs/doc/man-pages/pod8/bos_exec.pod:1.2	Tue Dec 13 14:21:16 2005
--- openafs/doc/man-pages/pod8/bos_exec.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,14 ****
  
  =head1 SYNOPSIS
  
! B<bos exec> B<-server> <I<machine name>> B<-cmd> <I<command to execute>>
!     [B<-cell> <I<cell name>>] [B<-noauth>] [B<-localauth>] [B<-help>]
  
! B<bos e> B<-s> <I<machine name>> B<-cm> <I<command to execute>>
!     [B<-ce> <I<cell name>>] [B<-n>] [B<-l>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,20 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<bos exec> S<<< B<-server> <I<machine name>> >>> S<<< B<-cmd> <I<command to execute>> >>>
!     S<<< [B<-cell> <I<cell name>>] >>> [B<-noauth>] [B<-localauth>] [B<-help>]
! 
! B<bos e> S<<< B<-s> <I<machine name>> >>> S<<< B<-cm> <I<command to execute>> >>>
!     S<<< [B<-ce> <I<cell name>>] >>> [B<-n>] [B<-l>] [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod8/bos_getdate.pod
diff -c openafs/doc/man-pages/pod8/bos_getdate.pod:1.2 openafs/doc/man-pages/pod8/bos_getdate.pod:1.3
*** openafs/doc/man-pages/pod8/bos_getdate.pod:1.2	Tue Dec 13 14:21:16 2005
--- openafs/doc/man-pages/pod8/bos_getdate.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,17 ****
  
  =head1 SYNOPSIS
  
! B<bos getdate> B<-server> <I<machine name>> B<-file> <I<files to check>>+
!     [B<-dir> <I<destination dir>>] [B<-cell> <I<cell name>>]
      [B<-noauth>] [B<-localauth>] [B<-help>]
  
! B<bos getd> B<-s> <I<machine name>> B<-f> <I<files to check>>+
!     [B<-d> <I<destination dir>>] [B<-c> <I<cell name>>] [B<-n>] [B<-l>]
      [B<-h>]
  
  =head1 DESCRIPTION
  
  The B<bos getdate> command displays the time stamps on the current
--- 4,23 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<bos getdate> S<<< B<-server> <I<machine name>> >>> S<<< B<-file> <I<files to check>>+ >>>
!     S<<< [B<-dir> <I<destination dir>>] >>> S<<< [B<-cell> <I<cell name>>] >>>
      [B<-noauth>] [B<-localauth>] [B<-help>]
  
! B<bos getd> S<<< B<-s> <I<machine name>> >>> S<<< B<-f> <I<files to check>>+ >>>
!     S<<< [B<-d> <I<destination dir>>] >>> S<<< [B<-c> <I<cell name>>] >>> [B<-n>] [B<-l>]
      [B<-h>]
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The B<bos getdate> command displays the time stamps on the current
Index: openafs/doc/man-pages/pod8/bos_getlog.pod
diff -c openafs/doc/man-pages/pod8/bos_getlog.pod:1.4 openafs/doc/man-pages/pod8/bos_getlog.pod:1.5
*** openafs/doc/man-pages/pod8/bos_getlog.pod:1.4	Tue Dec 20 19:41:18 2005
--- openafs/doc/man-pages/pod8/bos_getlog.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,14 ****
  
  =head1 SYNOPSIS
  
! B<bos getlog> B<-server> <I<machine name>> B<-file> <I<log file to examine>>
!     [B<-cell> <I<cell name>>] [B<-noauth>] [B<-localauth>] [B<-help>]
  
! B<bos getl> B<-s> <I<machine name>> B<-f> <I<log file to examine>>
!     [B<-c> <I<cell name>>] [B<-n>] [B<-l>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,20 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<bos getlog> S<<< B<-server> <I<machine name>> >>> S<<< B<-file> <I<log file to examine>> >>>
!     S<<< [B<-cell> <I<cell name>>] >>> [B<-noauth>] [B<-localauth>] [B<-help>]
! 
! B<bos getl> S<<< B<-s> <I<machine name>> >>> S<<< B<-f> <I<log file to examine>> >>>
!     S<<< [B<-c> <I<cell name>>] >>> [B<-n>] [B<-l>] [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod8/bos_getrestart.pod
diff -c openafs/doc/man-pages/pod8/bos_getrestart.pod:1.3 openafs/doc/man-pages/pod8/bos_getrestart.pod:1.4
*** openafs/doc/man-pages/pod8/bos_getrestart.pod:1.3	Tue Dec 20 19:41:18 2005
--- openafs/doc/man-pages/pod8/bos_getrestart.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,15 ****
  
  =head1 SYNOPSIS
  
! B<bos getrestart> B<-server> <I<machine name>> [B<-cell> <I<cell name>>]
      [B<-noauth>] [B<-localauth>] [B<-help>]
  
! B<bos getr> B<-s> <I<machine name>> [B<-c> <I<cell name>>] [B<-n>]
      [B<-l>] [B<-h>]
  
  =head1 DESCRIPTION
  
  The bos getrestart command displays two restart times from the
--- 4,21 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<bos getrestart> S<<< B<-server> <I<machine name>> >>> S<<< [B<-cell> <I<cell name>>] >>>
      [B<-noauth>] [B<-localauth>] [B<-help>]
  
! B<bos getr> S<<< B<-s> <I<machine name>> >>> S<<< [B<-c> <I<cell name>>] >>> [B<-n>]
      [B<-l>] [B<-h>]
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The bos getrestart command displays two restart times from the
Index: openafs/doc/man-pages/pod8/bos_help.pod
diff -c openafs/doc/man-pages/pod8/bos_help.pod:1.3 openafs/doc/man-pages/pod8/bos_help.pod:1.4
*** openafs/doc/man-pages/pod8/bos_help.pod:1.3	Tue Dec 20 19:41:18 2005
--- openafs/doc/man-pages/pod8/bos_help.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,12 ****
  
  =head1 SYNOPSIS
  
! B<bos help> [B<-topic> <I<help string>>+] [B<-help>]
  
! B<bos h> [B<-t> <I<help string>>+] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,18 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<bos help> S<<< [B<-topic> <I<help string>>+] >>> [B<-help>]
! 
! B<bos h> S<<< [B<-t> <I<help string>>+] >>> [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod8/bos_install.pod
diff -c openafs/doc/man-pages/pod8/bos_install.pod:1.3 openafs/doc/man-pages/pod8/bos_install.pod:1.4
*** openafs/doc/man-pages/pod8/bos_install.pod:1.3	Tue Dec 20 19:41:18 2005
--- openafs/doc/man-pages/pod8/bos_install.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,17 ****
  
  =head1 SYNOPSIS
  
! B<bos install> B<-server> <I<machine name>> B<-file> <I<files to install>>+
!     [B<-dir> <I<destination dir>>] [B<-cell> <I<cell name>>]
      [B<-noauth>] [B<-localauth>] [B<-help>]
  
! B<bos i> B<-s> <I<machine name>> B<-f> <I<files to install>>+
!     [B<-d> <I<destination dir>>] [B<-c> <I<cell name>>] [B<-n>]
      [B<-l>] [B<-h>]
  
  =head1 DESCRIPTION
  
  The B<bos install> command copies each binary file specified with the
--- 4,23 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<bos install> S<<< B<-server> <I<machine name>> >>> S<<< B<-file> <I<files to install>>+ >>>
!     S<<< [B<-dir> <I<destination dir>>] >>> S<<< [B<-cell> <I<cell name>>] >>>
      [B<-noauth>] [B<-localauth>] [B<-help>]
  
! B<bos i> S<<< B<-s> <I<machine name>> >>> S<<< B<-f> <I<files to install>>+ >>>
!     S<<< [B<-d> <I<destination dir>>] >>> S<<< [B<-c> <I<cell name>>] >>> [B<-n>]
      [B<-l>] [B<-h>]
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The B<bos install> command copies each binary file specified with the
Index: openafs/doc/man-pages/pod8/bos_listhosts.pod
diff -c openafs/doc/man-pages/pod8/bos_listhosts.pod:1.3 openafs/doc/man-pages/pod8/bos_listhosts.pod:1.4
*** openafs/doc/man-pages/pod8/bos_listhosts.pod:1.3	Tue Dec 20 19:41:18 2005
--- openafs/doc/man-pages/pod8/bos_listhosts.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,21 ****
  
  =head1 SYNOPSIS
  
! B<bos listhosts> B<-server> <I<machine name>> [B<-cell> <I<cell name>>]
      [B<-noauth>] [B<-localauth>] [B<-help>]
  
! B<bos listh> B<-s> <I<machine name>> [B<-c> <I<cell name>>] [B<-n>]
      [B<-l>]  [-h]
  
! B<bos getcell> B<-server> <I<machine name>> [B<-cell> <I<cell name>>]
      [B<-noauth>] [B<-localauth>] [B<-help>]
  
! B<bos getc> B<-s> <I<machine name>> [B<-c> <I<cell name>>] [B<-n>]
      [B<-l>] [-h]
  
  =head1 DESCRIPTION
  
  The B<bos listhosts> command formats and displays the list of a cell's
--- 4,27 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<bos listhosts> S<<< B<-server> <I<machine name>> >>> S<<< [B<-cell> <I<cell name>>] >>>
      [B<-noauth>] [B<-localauth>] [B<-help>]
  
! B<bos listh> S<<< B<-s> <I<machine name>> >>> S<<< [B<-c> <I<cell name>>] >>> [B<-n>]
      [B<-l>]  [-h]
  
! B<bos getcell> S<<< B<-server> <I<machine name>> >>> S<<< [B<-cell> <I<cell name>>] >>>
      [B<-noauth>] [B<-localauth>] [B<-help>]
  
! B<bos getc> S<<< B<-s> <I<machine name>> >>> S<<< [B<-c> <I<cell name>>] >>> [B<-n>]
      [B<-l>] [-h]
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The B<bos listhosts> command formats and displays the list of a cell's
Index: openafs/doc/man-pages/pod8/bos_listkeys.pod
diff -c openafs/doc/man-pages/pod8/bos_listkeys.pod:1.3 openafs/doc/man-pages/pod8/bos_listkeys.pod:1.4
*** openafs/doc/man-pages/pod8/bos_listkeys.pod:1.3	Tue Dec 13 14:21:16 2005
--- openafs/doc/man-pages/pod8/bos_listkeys.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,15 ****
  
  =head1 SYNOPSIS
  
! B<bos listkeys> B<-server> <I<machine name>> [B<-showkey>]
!     [B<-cell> <I<cell name>>] [B<-noauth>] [B<-localauth>] [B<-help>]
  
! B<bos listk> B<-se> <I<machine name>> [B<-sh>] [B<-c> <I<cell name>>]
      [B<-n>] [B<-l>] [B<-h>]
  
  =head1 DESCRIPTION
  
  The B<bos listkeys> command formats and displays the list of server
--- 4,21 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<bos listkeys> S<<< B<-server> <I<machine name>> >>> [B<-showkey>]
!     S<<< [B<-cell> <I<cell name>>] >>> [B<-noauth>] [B<-localauth>] [B<-help>]
! 
! B<bos listk> S<<< B<-se> <I<machine name>> >>> [B<-sh>] S<<< [B<-c> <I<cell name>>] >>>
      [B<-n>] [B<-l>] [B<-h>]
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The B<bos listkeys> command formats and displays the list of server
Index: openafs/doc/man-pages/pod8/bos_listusers.pod
diff -c openafs/doc/man-pages/pod8/bos_listusers.pod:1.3 openafs/doc/man-pages/pod8/bos_listusers.pod:1.4
*** openafs/doc/man-pages/pod8/bos_listusers.pod:1.3	Tue Dec 20 19:41:18 2005
--- openafs/doc/man-pages/pod8/bos_listusers.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,15 ****
  
  =head1 SYNOPSIS
  
! B<bos listusers> B<-server> <I<machine name>> [B<-cell> <I<cell name>>]
      [B<-noauth>] [B<-localauth>] [B<-help>]
  
! B<bos listu> B<-s> <I<machine name>> [B<-c> <I<cell name>>] [B<-n>]
      [B<-l>] [B<-h>]
  
  =head1 DESCRIPTION
  
  The B<bos listusers> command lists the user names from the
--- 4,21 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<bos listusers> S<<< B<-server> <I<machine name>> >>> S<<< [B<-cell> <I<cell name>>] >>>
      [B<-noauth>] [B<-localauth>] [B<-help>]
  
! B<bos listu> S<<< B<-s> <I<machine name>> >>> S<<< [B<-c> <I<cell name>>] >>> [B<-n>]
      [B<-l>] [B<-h>]
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The B<bos listusers> command lists the user names from the
Index: openafs/doc/man-pages/pod8/bos_prune.pod
diff -c openafs/doc/man-pages/pod8/bos_prune.pod:1.3 openafs/doc/man-pages/pod8/bos_prune.pod:1.4
*** openafs/doc/man-pages/pod8/bos_prune.pod:1.3	Tue Dec 20 19:41:18 2005
--- openafs/doc/man-pages/pod8/bos_prune.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,15 ****
  
  =head1 SYNOPSIS
  
! B<bos prune> B<-server> <I<machine name>> [B<-bak>] [B<-old>] [B<-core>]
!     [B<-all>] [B<-cell> <I<cell name>>] [B<-noauth>] [B<-localauth>]
      [B<-help>]
  
! B<bos p> B<-s> <I<machine name>> [B<-b>] [B<-o>] [B<-co>] [B<-a>]
!     [B<-ce> <I<cell name>>] [B<-n>] [B<-l>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,21 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<bos prune> S<<< B<-server> <I<machine name>> >>> [B<-bak>] [B<-old>] [B<-core>]
!     [B<-all>] S<<< [B<-cell> <I<cell name>>] >>> [B<-noauth>] [B<-localauth>]
      [B<-help>]
  
! B<bos p> S<<< B<-s> <I<machine name>> >>> [B<-b>] [B<-o>] [B<-co>] [B<-a>]
!     S<<< [B<-ce> <I<cell name>>] >>> [B<-n>] [B<-l>] [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod8/bos_removehost.pod
diff -c openafs/doc/man-pages/pod8/bos_removehost.pod:1.4 openafs/doc/man-pages/pod8/bos_removehost.pod:1.5
*** openafs/doc/man-pages/pod8/bos_removehost.pod:1.4	Tue Dec 20 19:41:18 2005
--- openafs/doc/man-pages/pod8/bos_removehost.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,14 ****
  
  =head1 SYNOPSIS
  
! B<bos removehost> B<-server> <I<machine name>> B<-host> <I<host name>>+
!     [B<-cell> <I<cell name>>] [B<-noauth>] [B<-localauth>] [B<-help>]
  
! B<bos removeh> B<-s> <I<machine name>> B<-ho> <I<host name>>+
!     [B<-c> <I<cell name>>] [B<-n>] [B<-l>] [B<-he>]
  
  =head1 DESCRIPTION
  
--- 4,20 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<bos removehost> S<<< B<-server> <I<machine name>> >>> S<<< B<-host> <I<host name>>+ >>>
!     S<<< [B<-cell> <I<cell name>>] >>> [B<-noauth>] [B<-localauth>] [B<-help>]
! 
! B<bos removeh> S<<< B<-s> <I<machine name>> >>> S<<< B<-ho> <I<host name>>+ >>>
!     S<<< [B<-c> <I<cell name>>] >>> [B<-n>] [B<-l>] [B<-he>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod8/bos_removekey.pod
diff -c openafs/doc/man-pages/pod8/bos_removekey.pod:1.4 openafs/doc/man-pages/pod8/bos_removekey.pod:1.5
*** openafs/doc/man-pages/pod8/bos_removekey.pod:1.4	Tue Dec 20 19:41:18 2005
--- openafs/doc/man-pages/pod8/bos_removekey.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,15 ****
  
  =head1 SYNOPSIS
  
! B<bos removekey> B<-server> <I<machine name>>
!     B<-kvno> <I<key version number>>+ [B<-cell> <I<cell name>>]
      [B<-noauth>] [B<-localauth>] [B<-help>]
  
! B<bos removek> B<-s> <I<machine name>> B<-k> <I<key version number>>+
!     [B<-c> <I<cell name>>] [B<-n>] [B<-l>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,21 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<bos removekey> S<<< B<-server> <I<machine name>> >>>
!     S<<< B<-kvno> <I<key version number>>+ >>> S<<< [B<-cell> <I<cell name>>] >>>
      [B<-noauth>] [B<-localauth>] [B<-help>]
  
! B<bos removek> S<<< B<-s> <I<machine name>> >>> S<<< B<-k> <I<key version number>>+ >>>
!     S<<< [B<-c> <I<cell name>>] >>> [B<-n>] [B<-l>] [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod8/bos_removeuser.pod
diff -c openafs/doc/man-pages/pod8/bos_removeuser.pod:1.3 openafs/doc/man-pages/pod8/bos_removeuser.pod:1.4
*** openafs/doc/man-pages/pod8/bos_removeuser.pod:1.3	Tue Dec 20 19:41:18 2005
--- openafs/doc/man-pages/pod8/bos_removeuser.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,14 ****
  
  =head1 SYNOPSIS
  
! B<bos removeuser> B<-server> <I<machine name>> B<-user> <I<user names>>+
!     [B<-cell> <I<cell name>>] [B<-noauth>] [B<-localauth>] [B<-help>]
  
! B<bos removeu> B<-s> <I<machine name>> B<-u> <I<user names>>+
!     [B<-c> <I<cell name>>] [B<-n>] [B<-l>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,20 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<bos removeuser> S<<< B<-server> <I<machine name>> >>> S<<< B<-user> <I<user names>>+ >>>
!     S<<< [B<-cell> <I<cell name>>] >>> [B<-noauth>] [B<-localauth>] [B<-help>]
! 
! B<bos removeu> S<<< B<-s> <I<machine name>> >>> S<<< B<-u> <I<user names>>+ >>>
!     S<<< [B<-c> <I<cell name>>] >>> [B<-n>] [B<-l>] [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod8/bos_restart.pod
diff -c openafs/doc/man-pages/pod8/bos_restart.pod:1.2 openafs/doc/man-pages/pod8/bos_restart.pod:1.3
*** openafs/doc/man-pages/pod8/bos_restart.pod:1.2	Tue Dec 13 14:21:16 2005
--- openafs/doc/man-pages/pod8/bos_restart.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,15 ****
  
  =head1 SYNOPSIS
  
! B<bos restart> B<-server> <I<machine name>> [B<-instance> <I<instances>>+]
!     [B<-bosserver>] [B<-all>] [B<-cell> <I<cell name>>] [B<-noauth>]
      [B<-localauth>] [B<-help>]
  
! B<bos res> B<-s> <I<machine name>> [B<-i> <I<instances>>+] [B<-b>]
!     [B<-a>] [B<-c> <I<cell name>>] [B<-n>] [B<-l>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,21 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<bos restart> S<<< B<-server> <I<machine name>> >>> S<<< [B<-instance> <I<instances>>+] >>>
!     [B<-bosserver>] [B<-all>] S<<< [B<-cell> <I<cell name>>] >>> [B<-noauth>]
      [B<-localauth>] [B<-help>]
  
! B<bos res> S<<< B<-s> <I<machine name>> >>> S<<< [B<-i> <I<instances>>+] >>> [B<-b>]
!     [B<-a>] S<<< [B<-c> <I<cell name>>] >>> [B<-n>] [B<-l>] [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod8/bos_salvage.pod
diff -c openafs/doc/man-pages/pod8/bos_salvage.pod:1.4 openafs/doc/man-pages/pod8/bos_salvage.pod:1.5
*** openafs/doc/man-pages/pod8/bos_salvage.pod:1.4	Tue Dec 20 19:41:19 2005
--- openafs/doc/man-pages/pod8/bos_salvage.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,26 ****
  
  =head1 SYNOPSIS
  
! B<bos salvage> B<-server> <I<machine name>>
!     [B<-partition> <I<salvage partition>>]
!     [B<-volume> <I<salvage volume number or volume name>>]
!     [B<-file> <I<salvage log output file>>] [B<-all>] [B<-showlog>]
!     [B<-parallel> <I<# of max parallel partition salvaging>>]
!     [B<-tmpdir> <I<directory to place tmp files>>]
!     [B<-orphans> (ignore | remove | attach)] [B<-cell> <I<cell name>>]
      [B<-noauth>] [B<-localauth>] [B<-help>]
  
! B<bos sa> B<-se> <I<machine name>> [B<-part> <I<salvage partition>>]
!     [B<-v> <I<salvage volume number or volume name>>]
!     [B<-f> <I<salvage log output file>>] [B<-a>] [B<-sh>]
      [<-para> <I<# of max parallel partition salvaging>>]
!     [B<-t> <I<directory to place tmp files>>]
!     [B<-o> (ignore | remove | attach)] [B<-c> <I<cell name>>] [B<-n>]
      [B<-l>] [B<-h>]
  
  =head1 DESCRIPTION
  
  The B<bos salvage> command salvages (restores internal consistency to) one
--- 4,32 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<bos salvage> S<<< B<-server> <I<machine name>> >>>
!     S<<< [B<-partition> <I<salvage partition>>] >>>
!     S<<< [B<-volume> <I<salvage volume number or volume name>>] >>>
!     S<<< [B<-file> <I<salvage log output file>>] >>> [B<-all>] [B<-showlog>]
!     S<<< [B<-parallel> <I<# of max parallel partition salvaging>>] >>>
!     S<<< [B<-tmpdir> <I<directory to place tmp files>>] >>>
!     S<<< [B<-orphans> (ignore | remove | attach)] >>> S<<< [B<-cell> <I<cell name>>] >>>
      [B<-noauth>] [B<-localauth>] [B<-help>]
  
! B<bos sa> S<<< B<-se> <I<machine name>> >>> S<<< [B<-part> <I<salvage partition>>] >>>
!     S<<< [B<-v> <I<salvage volume number or volume name>>] >>>
!     S<<< [B<-f> <I<salvage log output file>>] >>> [B<-a>] [B<-sh>]
      [<-para> <I<# of max parallel partition salvaging>>]
!     S<<< [B<-t> <I<directory to place tmp files>>] >>>
!     S<<< [B<-o> (ignore | remove | attach)] >>> S<<< [B<-c> <I<cell name>>] >>> [B<-n>]
      [B<-l>] [B<-h>]
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The B<bos salvage> command salvages (restores internal consistency to) one
Index: openafs/doc/man-pages/pod8/bos_setauth.pod
diff -c openafs/doc/man-pages/pod8/bos_setauth.pod:1.3 openafs/doc/man-pages/pod8/bos_setauth.pod:1.4
*** openafs/doc/man-pages/pod8/bos_setauth.pod:1.3	Tue Dec 13 14:21:16 2005
--- openafs/doc/man-pages/pod8/bos_setauth.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,14 ****
  
  =head1 SYNOPSIS
  
! B<bos setauth> B<-server> <I<machine name>> B<-authrequired> (on | off)
!     [B<-cell> <I<cell name>>] [B<-noauth>] [B<-localauth>] [B<-help>]
  
! B<bos seta> B<-s> <I<machine name>> B<-a> (on | off)
!     [B<-c> <I<cell name>>] [B<-n>] [B<-l>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,20 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<bos setauth> S<<< B<-server> <I<machine name>> >>> S<<< B<-authrequired> (on | off) >>>
!     S<<< [B<-cell> <I<cell name>>] >>> [B<-noauth>] [B<-localauth>] [B<-help>]
! 
! B<bos seta> S<<< B<-s> <I<machine name>> >>> S<<< B<-a> (on | off) >>>
!     S<<< [B<-c> <I<cell name>>] >>> [B<-n>] [B<-l>] [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod8/bos_setcellname.pod
diff -c openafs/doc/man-pages/pod8/bos_setcellname.pod:1.4 openafs/doc/man-pages/pod8/bos_setcellname.pod:1.5
*** openafs/doc/man-pages/pod8/bos_setcellname.pod:1.4	Tue Dec 20 19:41:19 2005
--- openafs/doc/man-pages/pod8/bos_setcellname.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,14 ****
  
  =head1 SYNOPSIS
  
! B<bos setcellname> B<-server> <I<machine name>> B<-name> <I<cell name>>
!     [B<-cell> <I<cell name>>] [B<-noauth>] [B<-localauth>] [B<-help>]
  
! B<bos setc> B<-s> <I<machine name>> B<-n> <I<cell name>>
!     [B<-c> <I<cell name>>] [B<-n>] [B<-l>] [-h]
  
  =head1 DESCRIPTION
  
--- 4,20 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<bos setcellname> S<<< B<-server> <I<machine name>> >>> S<<< B<-name> <I<cell name>> >>>
!     S<<< [B<-cell> <I<cell name>>] >>> [B<-noauth>] [B<-localauth>] [B<-help>]
! 
! B<bos setc> S<<< B<-s> <I<machine name>> >>> S<<< B<-n> <I<cell name>> >>>
!     S<<< [B<-c> <I<cell name>>] >>> [B<-n>] [B<-l>] [-h]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod8/bos_setrestart.pod
diff -c openafs/doc/man-pages/pod8/bos_setrestart.pod:1.4 openafs/doc/man-pages/pod8/bos_setrestart.pod:1.5
*** openafs/doc/man-pages/pod8/bos_setrestart.pod:1.4	Tue Dec 20 19:41:19 2005
--- openafs/doc/man-pages/pod8/bos_setrestart.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,15 ****
  
  =head1 SYNOPSIS
  
! B<bos setrestart> B<-server> <I<machine name>>
!     B<-time> <I<time to restart server>> [B<-general>] [B<-newbinary>]
!     [B<-cell> <I<cell name>>] [B<-noauth>] [B<-localauth>] [B<-help>]
  
! B<bos setr> B<-s> <I<machine name>> B<-t> <I<time to restart server>>
!     [B<-g>] [B<-ne>] [B<-c> <I<cell name>>] [B<-no>] [B<-l>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,21 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<bos setrestart> S<<< B<-server> <I<machine name>> >>>
!     S<<< B<-time> <I<time to restart server>> >>> [B<-general>] [B<-newbinary>]
!     S<<< [B<-cell> <I<cell name>>] >>> [B<-noauth>] [B<-localauth>] [B<-help>]
! 
! B<bos setr> S<<< B<-s> <I<machine name>> >>> S<<< B<-t> <I<time to restart server>> >>>
!     [B<-g>] [B<-ne>] S<<< [B<-c> <I<cell name>>] >>> [B<-no>] [B<-l>] [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod8/bos_shutdown.pod
diff -c openafs/doc/man-pages/pod8/bos_shutdown.pod:1.2 openafs/doc/man-pages/pod8/bos_shutdown.pod:1.3
*** openafs/doc/man-pages/pod8/bos_shutdown.pod:1.2	Tue Dec 13 14:21:16 2005
--- openafs/doc/man-pages/pod8/bos_shutdown.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,15 ****
  
  =head1 SYNOPSIS
  
! B<bos shutdown> B<-server> <I<machine name>>
!     [B<-instance> <I<instances>>+] [B<-wait>] [B<-cell> <I<cell name>>]
      [B<-noauth>] [B<-localauth>] [B<-help>]
  
! B<bos sh> B<-s> <I<machine name>> [B<-i> <I<instances>>+] [B<-w>]
!     [B<-c> <I<cell name>>] [B<-n>] [B<-l>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,21 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<bos shutdown> S<<< B<-server> <I<machine name>> >>>
!     S<<< [B<-instance> <I<instances>>+] >>> [B<-wait>] S<<< [B<-cell> <I<cell name>>] >>>
      [B<-noauth>] [B<-localauth>] [B<-help>]
  
! B<bos sh> S<<< B<-s> <I<machine name>> >>> S<<< [B<-i> <I<instances>>+] >>> [B<-w>]
!     S<<< [B<-c> <I<cell name>>] >>> [B<-n>] [B<-l>] [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod8/bos_start.pod
diff -c openafs/doc/man-pages/pod8/bos_start.pod:1.3 openafs/doc/man-pages/pod8/bos_start.pod:1.4
*** openafs/doc/man-pages/pod8/bos_start.pod:1.3	Tue Dec 20 19:41:19 2005
--- openafs/doc/man-pages/pod8/bos_start.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,15 ****
  
  =head1 SYNOPSIS
  
! B<bos start> B<-server> <I<machine name>>
!     B<-instance> <I<server process name>>+ [B<-cell> <I<cell name>>]
      [B<-noauth>] [B<-localauth>] [B<-help>]
  
! B<bos start> B<-s> <I<machine name>> B<-i> <I<server process name>>+
!     [B<-c> <I<cell name>>] [B<-n>] [B<-l>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,21 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<bos start> S<<< B<-server> <I<machine name>> >>>
!     S<<< B<-instance> <I<server process name>>+ >>> S<<< [B<-cell> <I<cell name>>] >>>
      [B<-noauth>] [B<-localauth>] [B<-help>]
  
! B<bos start> S<<< B<-s> <I<machine name>> >>> S<<< B<-i> <I<server process name>>+ >>>
!     S<<< [B<-c> <I<cell name>>] >>> [B<-n>] [B<-l>] [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod8/bos_startup.pod
diff -c openafs/doc/man-pages/pod8/bos_startup.pod:1.3 openafs/doc/man-pages/pod8/bos_startup.pod:1.4
*** openafs/doc/man-pages/pod8/bos_startup.pod:1.3	Tue Dec 20 19:41:19 2005
--- openafs/doc/man-pages/pod8/bos_startup.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,14 ****
  
  =head1 SYNOPSIS
  
! B<bos startup> B<-server> <I<machine name>> [B<-instance> <I<instances>>+]
!     [B<-cell> <I<cell name>>] [B<-noauth>] [B<-localauth>] [B<-help>]
  
! B<bos startu> B<-s> <I<machine name>> [B<-i> <I<instances>>+]
!     [B<-c> <I<cell name>>] [B<-n>] [B<-l>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,20 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<bos startup> S<<< B<-server> <I<machine name>> >>> S<<< [B<-instance> <I<instances>>+] >>>
!     S<<< [B<-cell> <I<cell name>>] >>> [B<-noauth>] [B<-localauth>] [B<-help>]
! 
! B<bos startu> S<<< B<-s> <I<machine name>> >>> S<<< [B<-i> <I<instances>>+] >>>
!     S<<< [B<-c> <I<cell name>>] >>> [B<-n>] [B<-l>] [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod8/bos_status.pod
diff -c openafs/doc/man-pages/pod8/bos_status.pod:1.3 openafs/doc/man-pages/pod8/bos_status.pod:1.5
*** openafs/doc/man-pages/pod8/bos_status.pod:1.3	Tue Dec 20 19:41:19 2005
--- openafs/doc/man-pages/pod8/bos_status.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,14 ****
  
  =head1 SYNOPSIS
  
! B<bos status -server> <I<machine name>>  [-instance <I<server process name>>+]
! [B<-long>]  [B<-cell> <I<cell name>>]  [B<-noauth>]  [B<-localauth>]  [B<-help>]
  
! B<bos stat -s> <I<machine name>>  [-i <I<server process name>>+]
! [B<-lon>]  [B<-c> <I<cell name>>]  [B<-n>]  [B<-loc>]  [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,20 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! S<<< B<bos status -server> <I<machine name>> >>>  [-instance <I<server process name>>+]
! [B<-long>]  S<<< [B<-cell> <I<cell name>>] >>>  [B<-noauth>]  [B<-localauth>]  [B<-help>]
! 
! S<<< B<bos stat -s> <I<machine name>> >>>  [-i <I<server process name>>+]
! [B<-lon>]  S<<< [B<-c> <I<cell name>>] >>>  [B<-n>]  [B<-loc>]  [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
***************
*** 255,262 ****
  
  =head1 SEE ALSO
  
! L<BosConfig(1)>,
! L<KeyFile(1)>,
  L<bos(8)>,
  L<bos_create(8)>,
  L<bos_shutdown(8)>,
--- 261,268 ----
  
  =head1 SEE ALSO
  
! L<BosConfig(5)>,
! L<KeyFile(5)>,
  L<bos(8)>,
  L<bos_create(8)>,
  L<bos_shutdown(8)>,
Index: openafs/doc/man-pages/pod8/bos_stop.pod
diff -c openafs/doc/man-pages/pod8/bos_stop.pod:1.2 openafs/doc/man-pages/pod8/bos_stop.pod:1.3
*** openafs/doc/man-pages/pod8/bos_stop.pod:1.2	Tue Dec 13 14:21:16 2005
--- openafs/doc/man-pages/pod8/bos_stop.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,15 ****
  
  =head1 SYNOPSIS
  
! B<bos stop> B<-server> <I<machine name>>
!     B<-instance> <I<server process name>>+ [B<-wait>]
!     [B<-cell> <I<cell name>>] [B<-noauth>] [B<-localauth>] [B<-help>]
  
! B<bos sto> B<-s> <I<machine name>> B<-i> <I<server process name>>+
!     [B<-w>] [B<-c> <I<cell name>>] [B<-n>] [B<-l>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,21 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<bos stop> S<<< B<-server> <I<machine name>> >>>
!     S<<< B<-instance> <I<server process name>>+ >>> [B<-wait>]
!     S<<< [B<-cell> <I<cell name>>] >>> [B<-noauth>] [B<-localauth>] [B<-help>]
! 
! B<bos sto> S<<< B<-s> <I<machine name>> >>> S<<< B<-i> <I<server process name>>+ >>>
!     [B<-w>] S<<< [B<-c> <I<cell name>>] >>> [B<-n>] [B<-l>] [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod8/bos_uninstall.pod
diff -c openafs/doc/man-pages/pod8/bos_uninstall.pod:1.2 openafs/doc/man-pages/pod8/bos_uninstall.pod:1.3
*** openafs/doc/man-pages/pod8/bos_uninstall.pod:1.2	Tue Dec 13 14:21:16 2005
--- openafs/doc/man-pages/pod8/bos_uninstall.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,17 ****
  
  =head1 SYNOPSIS
  
! B<bos uninstall> B<-server> <I<machine name>>
!     B<-file> <I<files to uninstall>>+ [B<-dir> <I<destination dir>>]
!     [B<-cell> <I<cell name>>] [B<-noauth>] [B<-localauth>] [B<-help>]
  
! B<bos u> B<-s> <I<machine name>> B<-f> <I<files to uninstall>>+
!     [B<-d> <I<destination dir>>] [B<-c> <I<cell name>>] [B<-n>] [B<-l>]
      [B<-h>]
  
  =head1 DESCRIPTION
  
  The B<bos uninstall> command replaces each binary file specified by the
--- 4,23 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<bos uninstall> S<<< B<-server> <I<machine name>> >>>
!     S<<< B<-file> <I<files to uninstall>>+ >>> S<<< [B<-dir> <I<destination dir>>] >>>
!     S<<< [B<-cell> <I<cell name>>] >>> [B<-noauth>] [B<-localauth>] [B<-help>]
! 
! B<bos u> S<<< B<-s> <I<machine name>> >>> S<<< B<-f> <I<files to uninstall>>+ >>>
!     S<<< [B<-d> <I<destination dir>>] >>> S<<< [B<-c> <I<cell name>>] >>> [B<-n>] [B<-l>]
      [B<-h>]
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The B<bos uninstall> command replaces each binary file specified by the
Index: openafs/doc/man-pages/pod8/bosserver.pod
diff -c openafs/doc/man-pages/pod8/bosserver.pod:1.2 openafs/doc/man-pages/pod8/bosserver.pod:1.3
*** openafs/doc/man-pages/pod8/bosserver.pod:1.2	Tue Dec 13 14:21:16 2005
--- openafs/doc/man-pages/pod8/bosserver.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,12 ****
--- 4,18 ----
  
  =head1 SYNOPSIS
  
+ =for html
+ <div class="synopsis">
+ 
  B<bosserver> [B<-noauth>] [B<-log>] [B<-enable_peer_stats>]
      [B<-enable_process_stats>] [B<-help>]
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The bosserver command initializes the Basic OverSeer (BOS) Server
Index: openafs/doc/man-pages/pod8/buserver.pod
diff -c openafs/doc/man-pages/pod8/buserver.pod:1.4 openafs/doc/man-pages/pod8/buserver.pod:1.5
*** openafs/doc/man-pages/pod8/buserver.pod:1.4	Tue Dec 20 19:41:19 2005
--- openafs/doc/man-pages/pod8/buserver.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,14 ****
  
  =head1 SYNOPSIS
  
! B<buserver> [B<-database> <I<database directory>>]
!     [B<-cellservdb> <I<cell configuration directory>>] [B<-resetdb>]
      [B<-noauth>] [B<-smallht>] [-servers <I<list of ubik database servers>>+]
      [B<-enable_peer_stats>]  [-enable_process_stats] [B<-help>]
  
  =head1 DESCRIPTION
  
  The B<buserver> command initializes the Backup Server, which runs on
--- 4,20 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<buserver> S<<< [B<-database> <I<database directory>>] >>>
!     S<<< [B<-cellservdb> <I<cell configuration directory>>] >>> [B<-resetdb>]
      [B<-noauth>] [B<-smallht>] [-servers <I<list of ubik database servers>>+]
      [B<-enable_peer_stats>]  [-enable_process_stats] [B<-help>]
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The B<buserver> command initializes the Backup Server, which runs on
Index: openafs/doc/man-pages/pod8/butc.pod
diff -c openafs/doc/man-pages/pod8/butc.pod:1.5 openafs/doc/man-pages/pod8/butc.pod:1.6
*** openafs/doc/man-pages/pod8/butc.pod:1.5	Tue Dec 20 19:41:19 2005
--- openafs/doc/man-pages/pod8/butc.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,14 ****
  
  =head1 SYNOPSIS
  
! B<butc> [B<-port> <I<port offset>>] [B<-debuglevel> (0 | 1 | 2)]
!     [B<-cell> <I<cell name>>] [B<-noautoquery>] [B<-localauth>] [B<-help>]
  
! B<butc> [B<-p> <I<port offset>>] [B<-d> (0 | 1 | 2)]
!     [B<-c> <I<cell name>>] [B<-n>] [B<-l>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,20 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<butc> S<<< [B<-port> <I<port offset>>] >>> S<<< [B<-debuglevel> (0 | 1 | 2)] >>>
!     S<<< [B<-cell> <I<cell name>>] >>> [B<-noautoquery>] [B<-localauth>] [B<-help>]
! 
! B<butc> S<<< [B<-p> <I<port offset>>] >>> S<<< [B<-d> (0 | 1 | 2)] >>>
!     S<<< [B<-c> <I<cell name>>] >>> [B<-n>] [B<-l>] [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod8/fileserver.pod
diff -c openafs/doc/man-pages/pod8/fileserver.pod:1.4 openafs/doc/man-pages/pod8/fileserver.pod:1.5
*** openafs/doc/man-pages/pod8/fileserver.pod:1.4	Tue Dec 20 19:41:19 2005
--- openafs/doc/man-pages/pod8/fileserver.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,25 ****
  
  =head1 SYNOPSIS
  
! B<fileserver> [B<-d> <I<debug level>>] [B<-p> <I<number of processes>>]
!     [B<-spare> <I<number of spare blocks>>]
!     [B<-pctspare> <I<percentage spare>>] [B<-b> <I<buffers>>]
!     [B<-l> <I<large vnodes>>] [B<-s> <I<small nodes>>]
!     [B<-vc> <I<volume cachesize>>] [B<-w> <I<call back wait interval>>]
!     [B<-cb> <I<number of call backs>>] [B<-banner>] [B<-novbc>]
!     [B<-implicit> <I<admin mode bits: rlidwka>>]
!     [B<-hr> <I<number of hours between refreshing the host cps>>]
      [B<-busyat> <I<< redirect clients when queue > n >>>]
!     [B<-rxpck> <I<number of rx extra packets>>]
!     [B<-rxdbg>] [B<-rxdbge>] [B<-m> <I<min percentage spare in partition>>]
!     [B<-lock>] [B<-L>] [B<-S>] [B<-k> <I<stack size>>]
!     [B<-realm> <I<Kerberos realm name>>]
!     [B<-udpsize> <I<size of socket buffer in bytes>>]
      [B<-enable_peer_stats>] [B<-enable_process_stats>] [B<-help>]
  
  =head1 DESCRIPTION
  
  The B<fileserver> command initializes the File Server component of the
--- 4,31 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<fileserver> S<<< [B<-d> <I<debug level>>] >>> S<<< [B<-p> <I<number of processes>>] >>>
!     S<<< [B<-spare> <I<number of spare blocks>>] >>>
!     S<<< [B<-pctspare> <I<percentage spare>>] >>> S<<< [B<-b> <I<buffers>>] >>>
!     S<<< [B<-l> <I<large vnodes>>] >>> S<<< [B<-s> <I<small nodes>>] >>>
!     S<<< [B<-vc> <I<volume cachesize>>] >>> S<<< [B<-w> <I<call back wait interval>>] >>>
!     S<<< [B<-cb> <I<number of call backs>>] >>> [B<-banner>] [B<-novbc>]
!     S<<< [B<-implicit> <I<admin mode bits: rlidwka>>] >>>
!     S<<< [B<-hr> <I<number of hours between refreshing the host cps>>] >>>
      [B<-busyat> <I<< redirect clients when queue > n >>>]
!     S<<< [B<-rxpck> <I<number of rx extra packets>>] >>>
!     [B<-rxdbg>] [B<-rxdbge>] S<<< [B<-m> <I<min percentage spare in partition>>] >>>
!     [B<-lock>] [B<-L>] [B<-S>] S<<< [B<-k> <I<stack size>>] >>>
!     S<<< [B<-realm> <I<Kerberos realm name>>] >>>
!     S<<< [B<-udpsize> <I<size of socket buffer in bytes>>] >>>
      [B<-enable_peer_stats>] [B<-enable_process_stats>] [B<-help>]
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The B<fileserver> command initializes the File Server component of the
Index: openafs/doc/man-pages/pod8/fms.pod
diff -c openafs/doc/man-pages/pod8/fms.pod:1.3 openafs/doc/man-pages/pod8/fms.pod:1.4
*** openafs/doc/man-pages/pod8/fms.pod:1.3	Tue Dec 13 14:21:16 2005
--- openafs/doc/man-pages/pod8/fms.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,12 ****
  
  =head1 SYNOPSIS
  
! B<fms> B<-tape> <I<tape special file>> [B<-help>]
  
! B<fms> B<-t> <I<tape special file>> [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,18 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<fms> S<<< B<-tape> <I<tape special file>> >>> [B<-help>]
! 
! B<fms> S<<< B<-t> <I<tape special file>> >>> [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod8/fstrace_apropos.pod
diff -c openafs/doc/man-pages/pod8/fstrace_apropos.pod:1.2 openafs/doc/man-pages/pod8/fstrace_apropos.pod:1.3
*** openafs/doc/man-pages/pod8/fstrace_apropos.pod:1.2	Tue Dec 13 14:21:16 2005
--- openafs/doc/man-pages/pod8/fstrace_apropos.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,12 ****
  
  =head1 SYNOPSIS
  
! B<fstrace apropos> B<-topic> <I<help string>> [B<-help>]
  
! B<fstrace ap> B<-t> <I<help string>> [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,18 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<fstrace apropos> S<<< B<-topic> <I<help string>> >>> [B<-help>]
! 
! B<fstrace ap> S<<< B<-t> <I<help string>> >>> [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod8/fstrace_clear.pod
diff -c openafs/doc/man-pages/pod8/fstrace_clear.pod:1.3 openafs/doc/man-pages/pod8/fstrace_clear.pod:1.4
*** openafs/doc/man-pages/pod8/fstrace_clear.pod:1.3	Tue Dec 20 19:41:19 2005
--- openafs/doc/man-pages/pod8/fstrace_clear.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,13 ****
  
  =head1 SYNOPSIS
  
! B<fstrace clear> [B<-set> <I<set name>>+] [B<-log> <I<log name>>+]
      [B<-help>]
  
! B<fstrace c> [B<-s> <I<set name>>+] [B<-l> <I<log name>>+] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,19 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<fstrace clear> S<<< [B<-set> <I<set name>>+] >>> S<<< [B<-log> <I<log name>>+] >>>
      [B<-help>]
  
! B<fstrace c> S<<< [B<-s> <I<set name>>+] >>> S<<< [B<-l> <I<log name>>+] >>> [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod8/fstrace_dump.pod
diff -c openafs/doc/man-pages/pod8/fstrace_dump.pod:1.4 openafs/doc/man-pages/pod8/fstrace_dump.pod:1.6
*** openafs/doc/man-pages/pod8/fstrace_dump.pod:1.4	Tue Dec 20 19:41:19 2005
--- openafs/doc/man-pages/pod8/fstrace_dump.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,17 ****
  
  =head1 SYNOPSIS
  
! B<fstrace dump> [B<-set> <I<set name>>+] [B<-follow> <I<log name>>]
!     [B<-file> <I<output filename>>] [B<-sleep> <I<seconds between reads>>]
      [B<-help>]
  
! B<fstrace d> [B<-se> <I<set name>>+] [B<-fo> <I<log name>>]
!     [B<-fi> <I<output filename>>] [B<-sl> <I<seconds between reads>>]
      [B<-h>]
  
  =head1 DESCRIPTION
  
  The B<fstrace dump> command displays the current contents of the C<cmfx>
--- 4,23 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<fstrace dump> S<<< [B<-set> <I<set name>>+] >>> S<<< [B<-follow> <I<log name>>] >>>
!     S<<< [B<-file> <I<output filename>>] >>> S<<< [B<-sleep> <I<seconds between reads>>] >>>
      [B<-help>]
  
! B<fstrace d> S<<< [B<-se> <I<set name>>+] >>> S<<< [B<-fo> <I<log name>>] >>>
!     S<<< [B<-fi> <I<output filename>>] >>> S<<< [B<-sl> <I<seconds between reads>>] >>>
      [B<-h>]
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The B<fstrace dump> command displays the current contents of the C<cmfx>
***************
*** 186,191 ****
--- 192,199 ----
  
     AFS Trace Dump - Completed
  
+ =back
+ 
  =head1 EXAMPLES
  
  The following command dumps the log associated with the cm event set to
Index: openafs/doc/man-pages/pod8/fstrace_help.pod
diff -c openafs/doc/man-pages/pod8/fstrace_help.pod:1.3 openafs/doc/man-pages/pod8/fstrace_help.pod:1.4
*** openafs/doc/man-pages/pod8/fstrace_help.pod:1.3	Tue Dec 20 19:41:19 2005
--- openafs/doc/man-pages/pod8/fstrace_help.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,12 ****
  
  =head1 SYNOPSIS
  
! B<fstrace help> [B<-topic> <I<help string>>+] [B<-help>]
  
! B<fstrace h> [B<-t> <I<help string>>+] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,18 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<fstrace help> S<<< [B<-topic> <I<help string>>+] >>> [B<-help>]
! 
! B<fstrace h> S<<< [B<-t> <I<help string>>+] >>> [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod8/fstrace_lslog.pod
diff -c openafs/doc/man-pages/pod8/fstrace_lslog.pod:1.3 openafs/doc/man-pages/pod8/fstrace_lslog.pod:1.4
*** openafs/doc/man-pages/pod8/fstrace_lslog.pod:1.3	Tue Dec 20 19:41:19 2005
--- openafs/doc/man-pages/pod8/fstrace_lslog.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,15 ****
  
  =head1 SYNOPSIS
  
! B<fstrace lslog> [B<-set> <I<set name>>+] [B<-log> <I<log name>>]
      [B<-long>] [B<-help>]
  
! B<fstrace lsl> [B<-s> <I<set name>>+] [B<-log> <I<log name>>] [B<-lon>]
      [B<-h>]
  
  =head1 DESCRIPTION
  
  The B<fstrace lslog> command reports whether the C<cmfx> log is available
--- 4,21 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<fstrace lslog> S<<< [B<-set> <I<set name>>+] >>> S<<< [B<-log> <I<log name>>] >>>
      [B<-long>] [B<-help>]
  
! B<fstrace lsl> S<<< [B<-s> <I<set name>>+] >>> S<<< [B<-log> <I<log name>>] >>> [B<-lon>]
      [B<-h>]
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The B<fstrace lslog> command reports whether the C<cmfx> log is available
Index: openafs/doc/man-pages/pod8/fstrace_lsset.pod
diff -c openafs/doc/man-pages/pod8/fstrace_lsset.pod:1.2 openafs/doc/man-pages/pod8/fstrace_lsset.pod:1.3
*** openafs/doc/man-pages/pod8/fstrace_lsset.pod:1.2	Tue Dec 13 14:21:16 2005
--- openafs/doc/man-pages/pod8/fstrace_lsset.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,12 ****
  
  =head1 SYNOPSIS
  
! B<fstrace lsset> [B<-set> <I<set name>>+] [B<-help>]
  
! B<fstrace lss> [B<-s> <I<set name>>+] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,18 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<fstrace lsset> S<<< [B<-set> <I<set name>>+] >>> [B<-help>]
! 
! B<fstrace lss> S<<< [B<-s> <I<set name>>+] >>> [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod8/fstrace_setlog.pod
diff -c openafs/doc/man-pages/pod8/fstrace_setlog.pod:1.2 openafs/doc/man-pages/pod8/fstrace_setlog.pod:1.3
*** openafs/doc/man-pages/pod8/fstrace_setlog.pod:1.2	Tue Dec 13 14:21:16 2005
--- openafs/doc/man-pages/pod8/fstrace_setlog.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,15 ****
  
  =head1 SYNOPSIS
  
! B<fstrace setlog> [B<-log> <I<log name>>+]
!     B<-buffersize> <I<1-kilobyte units>> [B<-help>]
  
! B<fstrace setl> [B<-l> <I<log name>>+] B<-b> <I<1-kilobyte units>> [B<-h>]
  
! B<fstrace sl> [B<-l> <I<log name>>+] B<-b> <I<1-kilobyte units>> [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,21 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<fstrace setlog> S<<< [B<-log> <I<log name>>+] >>>
!     S<<< B<-buffersize> <I<1-kilobyte units>> >>> [B<-help>]
  
! B<fstrace setl> S<<< [B<-l> <I<log name>>+] >>> S<<< B<-b> <I<1-kilobyte units>> >>> [B<-h>]
! 
! B<fstrace sl> S<<< [B<-l> <I<log name>>+] >>> S<<< B<-b> <I<1-kilobyte units>> >>> [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod8/fstrace_setset.pod
diff -c openafs/doc/man-pages/pod8/fstrace_setset.pod:1.3 openafs/doc/man-pages/pod8/fstrace_setset.pod:1.4
*** openafs/doc/man-pages/pod8/fstrace_setset.pod:1.3	Tue Dec 20 19:41:19 2005
--- openafs/doc/man-pages/pod8/fstrace_setset.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,13 ****
  
  =head1 SYNOPSIS
  
! B<fstrace setset> [B<-set> <I<set name>>+] [B<-active>] [B<-inactive>]
      [B<-dormant>] [B<-help>]
  
! B<fs set> [B<-s> <I<set name>>+] [B<-a>] [B<-i>] [B<-d>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,19 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<fstrace setset> S<<< [B<-set> <I<set name>>+] >>> [B<-active>] [B<-inactive>]
      [B<-dormant>] [B<-help>]
  
! B<fs set> S<<< [B<-s> <I<set name>>+] >>> [B<-a>] [B<-i>] [B<-d>] [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod8/kadb_check.pod
diff -c openafs/doc/man-pages/pod8/kadb_check.pod:1.3 openafs/doc/man-pages/pod8/kadb_check.pod:1.4
*** openafs/doc/man-pages/pod8/kadb_check.pod:1.3	Tue Dec 13 14:21:16 2005
--- openafs/doc/man-pages/pod8/kadb_check.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,14 ****
  
  =head1 SYNOPSIS
  
! B<kadb_check> B<-database> <I<kadb file>> [B<-uheader>] [B<-kheader>]
!     [B<-entries>] [B<-verbose>] [B<-rebuild> <I<out file>>] [B<-help>]
  
! B<kadb_check> B<-d> <I<kadb file>> [B<-u>] [B<-k>] [B<-e>] [B<-v>]
!     [B<-r> <I<out file>>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,20 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<kadb_check> S<<< B<-database> <I<kadb file>> >>> [B<-uheader>] [B<-kheader>]
!     [B<-entries>] [B<-verbose>] S<<< [B<-rebuild> <I<out file>>] >>> [B<-help>]
! 
! B<kadb_check> S<<< B<-d> <I<kadb file>> >>> [B<-u>] [B<-k>] [B<-e>] [B<-v>]
!     S<<< [B<-r> <I<out file>>] >>> [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod8/kas_apropos.pod
diff -c openafs/doc/man-pages/pod8/kas_apropos.pod:1.2 openafs/doc/man-pages/pod8/kas_apropos.pod:1.3
*** openafs/doc/man-pages/pod8/kas_apropos.pod:1.2	Tue Dec 13 14:21:16 2005
--- openafs/doc/man-pages/pod8/kas_apropos.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,12 ****
  
  =head1 SYNOPSIS
  
! B<kas apropos> B<-topic> <I<help string>> [B<-help>]
  
! B<kas a> B<-t> <I<help string>> [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,18 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<kas apropos> S<<< B<-topic> <I<help string>> >>> [B<-help>]
! 
! B<kas a> S<<< B<-t> <I<help string>> >>> [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod8/kas_create.pod
diff -c openafs/doc/man-pages/pod8/kas_create.pod:1.3 openafs/doc/man-pages/pod8/kas_create.pod:1.4
*** openafs/doc/man-pages/pod8/kas_create.pod:1.3	Tue Dec 20 19:41:19 2005
--- openafs/doc/man-pages/pod8/kas_create.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,20 ****
  
  =head1 SYNOPSIS
  
! B<kas create> B<-name> <I<name of user>>
!     [B<-initial_password> <I<initial password>>]
!     [B<-admin_username> <I<admin principal to use for authentication>>]
!     [B<-password_for_admin> <I<admin password>>] [B<-cell> <I<cell name>>]
!     [B<-servers> <I<explicit list of authentication servers>>+]
      [B<-noauth>] [B<-help>]
  
! B<kas c> B<-na> <I<name of user>> [B<-i> <I<initial password>>]
!     [B<-a> <I<admin principal to use for authentication>>]
!     [B<-p> <I<admin password>>] [B<-c> <I<cell name>>]
!     [B<-s> <I<explicit list of authentication servers>>+] [B<-no>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,26 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<kas create> S<<< B<-name> <I<name of user>> >>>
!     S<<< [B<-initial_password> <I<initial password>>] >>>
!     S<<< [B<-admin_username> <I<admin principal to use for authentication>>] >>>
!     S<<< [B<-password_for_admin> <I<admin password>>] >>> S<<< [B<-cell> <I<cell name>>] >>>
!     S<<< [B<-servers> <I<explicit list of authentication servers>>+] >>>
      [B<-noauth>] [B<-help>]
  
! B<kas c> S<<< B<-na> <I<name of user>> >>> S<<< [B<-i> <I<initial password>>] >>>
!     S<<< [B<-a> <I<admin principal to use for authentication>>] >>>
!     S<<< [B<-p> <I<admin password>>] >>> S<<< [B<-c> <I<cell name>>] >>>
!     S<<< [B<-s> <I<explicit list of authentication servers>>+] >>> [B<-no>] [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod8/kas_delete.pod
diff -c openafs/doc/man-pages/pod8/kas_delete.pod:1.3 openafs/doc/man-pages/pod8/kas_delete.pod:1.4
*** openafs/doc/man-pages/pod8/kas_delete.pod:1.3	Tue Dec 20 19:41:19 2005
--- openafs/doc/man-pages/pod8/kas_delete.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,24 ****
  
  =head1 SYNOPSIS
  
! B<kas delete> B<-name> <I<name of user>>
!     [B<-admin_username> <I<admin principal to use for authentication>>]
!     [B<-password_for_admin> <I<admin password>>] [B<-cell> <I<cell name>>]
!     [B<-servers> <I<explicit list of authentication servers>>+]
      [B<-noauth>] [B<-help>]
  
! B<kas d> B<-na> <I<name of user>>
!     [B<-a> <I<admin principal to use for authentication>>]
!     [B<-p> <I<admin password>>] [B<-c> <I<cell name>>]
!     [B<-s> <I<explicit list of authentication servers>>+] [B<-no>] [B<-h>]
! 
! B<kas rm> B<-na> <I<name of user>>
!     [B<-a> <I<admin principal to use for authentication>>]
!     [B<-p> <I<admin password>>] [B<-c> <I<cell name>>]
!     [B<-s> <I<explicit list of authentication servers>>+] [B<-no>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,30 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<kas delete> S<<< B<-name> <I<name of user>> >>>
!     S<<< [B<-admin_username> <I<admin principal to use for authentication>>] >>>
!     S<<< [B<-password_for_admin> <I<admin password>>] >>> S<<< [B<-cell> <I<cell name>>] >>>
!     S<<< [B<-servers> <I<explicit list of authentication servers>>+] >>>
      [B<-noauth>] [B<-help>]
  
! B<kas d> S<<< B<-na> <I<name of user>> >>>
!     S<<< [B<-a> <I<admin principal to use for authentication>>] >>>
!     S<<< [B<-p> <I<admin password>>] >>> S<<< [B<-c> <I<cell name>>] >>>
!     S<<< [B<-s> <I<explicit list of authentication servers>>+] >>> [B<-no>] [B<-h>]
! 
! B<kas rm> S<<< B<-na> <I<name of user>> >>>
!     S<<< [B<-a> <I<admin principal to use for authentication>>] >>>
!     S<<< [B<-p> <I<admin password>>] >>> S<<< [B<-c> <I<cell name>>] >>>
!     S<<< [B<-s> <I<explicit list of authentication servers>>+] >>> [B<-no>] [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod8/kas_examine.pod
diff -c openafs/doc/man-pages/pod8/kas_examine.pod:1.4 openafs/doc/man-pages/pod8/kas_examine.pod:1.5
*** openafs/doc/man-pages/pod8/kas_examine.pod:1.4	Tue Dec 20 19:41:19 2005
--- openafs/doc/man-pages/pod8/kas_examine.pod	Wed Mar  1 00:02:31 2006
***************
*** 4,19 ****
  
  =head1 SYNOPSIS
  
! B<kas examine> B<-name> <I<name of user>> [B<-showkey>]
!     [B<-admin_username> <I<admin principal to use for authentication>>]
!     [B<-password_for_admin> <I<admin password>>] [B<-cell> <I<cell name>>]
!     [B<-servers> <I<explicit list of authentication servers>>+]
      [B<-noauth>] [B<-help>]
  
! B<kas e> B<-na> <I<name of user>> [B<-sh>]
!     [B<-a> <I<admin principal to use for authentication>>]
!     [B<-p> <I<admin password>>] [B<-c> <I<cell name>>]
!     [B<-se> <I<explicit list of authentication servers>>+] [B<-no>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,25 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<kas examine> S<<< B<-name> <I<name of user>> >>> [B<-showkey>]
!     S<<< [B<-admin_username> <I<admin principal to use for authentication>>] >>>
!     S<<< [B<-password_for_admin> <I<admin password>>] >>> S<<< [B<-cell> <I<cell name>>] >>>
!     S<<< [B<-servers> <I<explicit list of authentication servers>>+] >>>
      [B<-noauth>] [B<-help>]
  
! B<kas e> S<<< B<-na> <I<name of user>> >>> [B<-sh>]
!     S<<< [B<-a> <I<admin principal to use for authentication>>] >>>
!     S<<< [B<-p> <I<admin password>>] >>> S<<< [B<-c> <I<cell name>>] >>>
!     S<<< [B<-se> <I<explicit list of authentication servers>>+] >>> [B<-no>] [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod8/kas_forgetticket.pod
diff -c openafs/doc/man-pages/pod8/kas_forgetticket.pod:1.2 openafs/doc/man-pages/pod8/kas_forgetticket.pod:1.3
*** openafs/doc/man-pages/pod8/kas_forgetticket.pod:1.2	Tue Dec 13 14:21:16 2005
--- openafs/doc/man-pages/pod8/kas_forgetticket.pod	Wed Mar  1 00:02:32 2006
***************
*** 4,13 ****
--- 4,19 ----
  
  =head1 SYNOPSIS
  
+ =for html
+ <div class="synopsis">
+ 
  B<kas forgetticket> [B<-all>] [B<-help>]
  
  B<kas f> [B<-a>] [B<-h>]
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The B<kas forgetticket> command discards all of the issuer's tickets
Index: openafs/doc/man-pages/pod8/kas_help.pod
diff -c openafs/doc/man-pages/pod8/kas_help.pod:1.3 openafs/doc/man-pages/pod8/kas_help.pod:1.4
*** openafs/doc/man-pages/pod8/kas_help.pod:1.3	Tue Dec 20 19:41:19 2005
--- openafs/doc/man-pages/pod8/kas_help.pod	Wed Mar  1 00:02:32 2006
***************
*** 4,12 ****
  
  =head1 SYNOPSIS
  
! B<kas help> [B<-topic> <I<help string>>+] [B<-help>]
  
! B<kas h> [B<-t> <I<help string>>+] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,18 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<kas help> S<<< [B<-topic> <I<help string>>+] >>> [B<-help>]
! 
! B<kas h> S<<< [B<-t> <I<help string>>+] >>> [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod8/kas_interactive.pod
diff -c openafs/doc/man-pages/pod8/kas_interactive.pod:1.3 openafs/doc/man-pages/pod8/kas_interactive.pod:1.4
*** openafs/doc/man-pages/pod8/kas_interactive.pod:1.3	Tue Dec 20 19:41:19 2005
--- openafs/doc/man-pages/pod8/kas_interactive.pod	Wed Mar  1 00:02:32 2006
***************
*** 4,18 ****
  
  =head1 SYNOPSIS
  
  B<kas interactive>
!     [B<-admin_username> <I<admin principal to use for authentication>>]
!     [B<-password_for_admin> <I<admin password>>] [B<-cell> <I<cell name>>]
!     [B<-servers> <I<explicit list of authentication servers>>+]
      [B<-noauth>] [B<-help>]
  
! B<kas i> [B<-a> <I<admin principal to use for authentication>>]
!     [B<-p> <I<admin password>>] [B<-c> <I<cell name>>]
!     [B<-s> <I<explicit list of authentication servers>>+] [B<-n>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,24 ----
  
  =head1 SYNOPSIS
  
+ =for html
+ <div class="synopsis">
+ 
  B<kas interactive>
!     S<<< [B<-admin_username> <I<admin principal to use for authentication>>] >>>
!     S<<< [B<-password_for_admin> <I<admin password>>] >>> S<<< [B<-cell> <I<cell name>>] >>>
!     S<<< [B<-servers> <I<explicit list of authentication servers>>+] >>>
      [B<-noauth>] [B<-help>]
  
! B<kas i> S<<< [B<-a> <I<admin principal to use for authentication>>] >>>
!     S<<< [B<-p> <I<admin password>>] >>> S<<< [B<-c> <I<cell name>>] >>>
!     S<<< [B<-s> <I<explicit list of authentication servers>>+] >>> [B<-n>] [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod8/kas_list.pod
diff -c openafs/doc/man-pages/pod8/kas_list.pod:1.3 openafs/doc/man-pages/pod8/kas_list.pod:1.4
*** openafs/doc/man-pages/pod8/kas_list.pod:1.3	Tue Dec 20 19:41:19 2005
--- openafs/doc/man-pages/pod8/kas_list.pod	Wed Mar  1 00:02:32 2006
***************
*** 4,19 ****
  
  =head1 SYNOPSIS
  
  B<kas list> [B<-long>] [B<-showadmin>] [B<-showkey>]
!     [B<-admin_username> <I<admin principal to use for authentication>>]
!     [B<-password_for_admin> <I<admin password>>] [B<-cell> <I<cell name>>]
!     [B<-servers> <I<explicit list of authentication servers>>+]
      [B<-noauth>] [B<-help>]
  
  B<kas ls> [B<-l>] [B<-showa>] [B<-showk>]
!     [B<-a> <I<admin principal to use for authentication>>]
!     [B<-p> <I<admin password>>] [B<-c> <I<cell name>>]
!     [B<-se> <I<explicit list of authentication servers>>+] [B<-n>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,25 ----
  
  =head1 SYNOPSIS
  
+ =for html
+ <div class="synopsis">
+ 
  B<kas list> [B<-long>] [B<-showadmin>] [B<-showkey>]
!     S<<< [B<-admin_username> <I<admin principal to use for authentication>>] >>>
!     S<<< [B<-password_for_admin> <I<admin password>>] >>> S<<< [B<-cell> <I<cell name>>] >>>
!     S<<< [B<-servers> <I<explicit list of authentication servers>>+] >>>
      [B<-noauth>] [B<-help>]
  
  B<kas ls> [B<-l>] [B<-showa>] [B<-showk>]
!     S<<< [B<-a> <I<admin principal to use for authentication>>] >>>
!     S<<< [B<-p> <I<admin password>>] >>> S<<< [B<-c> <I<cell name>>] >>>
!     S<<< [B<-se> <I<explicit list of authentication servers>>+] >>> [B<-n>] [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod8/kas_listtickets.pod
diff -c openafs/doc/man-pages/pod8/kas_listtickets.pod:1.2 openafs/doc/man-pages/pod8/kas_listtickets.pod:1.3
*** openafs/doc/man-pages/pod8/kas_listtickets.pod:1.2	Tue Dec 13 14:21:16 2005
--- openafs/doc/man-pages/pod8/kas_listtickets.pod	Wed Mar  1 00:02:32 2006
***************
*** 4,12 ****
  
  =head1 SYNOPSIS
  
! B<kas listtickets> [B<-name> <I<name of server>>] [B<-long>] [B<-help>]
  
! B<kas listt> [B<-n> <I<name of server>>] [B<-l>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,18 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<kas listtickets> S<<< [B<-name> <I<name of server>>] >>> [B<-long>] [B<-help>]
! 
! B<kas listt> S<<< [B<-n> <I<name of server>>] >>> [B<-l>] [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod8/kas_noauthentication.pod
diff -c openafs/doc/man-pages/pod8/kas_noauthentication.pod:1.2 openafs/doc/man-pages/pod8/kas_noauthentication.pod:1.3
*** openafs/doc/man-pages/pod8/kas_noauthentication.pod:1.2	Tue Dec 13 14:21:16 2005
--- openafs/doc/man-pages/pod8/kas_noauthentication.pod	Wed Mar  1 00:02:32 2006
***************
*** 4,13 ****
--- 4,19 ----
  
  =head1 SYNOPSIS
  
+ =for html
+ <div class="synopsis">
+ 
  B<noauthentication> [B<-help>]
  
  B<n> [B<-h>]
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The B<kas noauthentication> command closes the (presumably authenticated)
Index: openafs/doc/man-pages/pod8/kas_quit.pod
diff -c openafs/doc/man-pages/pod8/kas_quit.pod:1.2 openafs/doc/man-pages/pod8/kas_quit.pod:1.3
*** openafs/doc/man-pages/pod8/kas_quit.pod:1.2	Tue Dec 13 14:21:16 2005
--- openafs/doc/man-pages/pod8/kas_quit.pod	Wed Mar  1 00:02:32 2006
***************
*** 4,13 ****
--- 4,19 ----
  
  =head1 SYNOPSIS
  
+ =for html
+ <div class="synopsis">
+ 
  B<quit> [B<-help>]
  
  B<q> [B<-h>]
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The B<kas quit> command ends interactive mode, severing the authenticated
Index: openafs/doc/man-pages/pod8/kas_setfields.pod
diff -c openafs/doc/man-pages/pod8/kas_setfields.pod:1.4 openafs/doc/man-pages/pod8/kas_setfields.pod:1.5
*** openafs/doc/man-pages/pod8/kas_setfields.pod:1.4	Tue Dec 20 19:41:19 2005
--- openafs/doc/man-pages/pod8/kas_setfields.pod	Wed Mar  1 00:02:32 2006
***************
*** 4,45 ****
  
  =head1 SYNOPSIS
  
! B<kas setfields> B<-name> <I<name of user>>
!     [B<-flags> <I<hex flag value or flag name expression>>]
!     [B<-expiration> <I<date of account expiration>>]
!     [B<-lifetime> <I<maximum ticket lifetime>>]
!     [B<-pwexpires> <I<number days password is valid ([0..254])>>]
!     [B<-reuse> <I<permit password reuse (yes/no)>>]
!     [B<-attempts> <I<maximum successive failed login tries ([0..254])>>]
!     [B<-locktime> <I<failure penalty [hh:mm or minutes]>>]
!     [B<-admin_username> <I<admin principal to use for authentication>>]
!     [B<-password_for_admin> <I<admin password>>] [B<-cell> <I<cell name>>]
!     [B<-servers> <I<explicit list of authentication servers>>+]
      [B<-noauth>] [B<-help>]
  
! B<kas setf> B<-na> <I<name of user>>
!     [B<-f> <I<hex flag value or flag name expression>>]
!     [B<-e> <I<date of account expiration>>]
!     [B<-li> <I<maximum ticket lifetime>>]
!     [B<-pw> <I<number days password is valid ([0..254])>>]
!     [B<-r> <I<permit password reuse (yes/no)>>]
!     [B<-at> <I<maximum successive failed login tries ([0..254])>>]
!     [B<-lo> <I<failure penalty [hh:mm or minutes]>>]
!     [B<-ad> <I<admin principal to use for authentication>>]
!     [B<-pa> <I<admin password>>] [B<-c> <I<cell name>>]
!     [B<-s> <I<explicit list of authentication servers>>+] [B<-no>] [B<-h>]
! 
! B<kas sf> B<-na> <I<name of user>>
!     [B<-f> <I<hex flag value or flag name expression>>]
!     [B<-e> <I<date of account expiration>>]
!     [B<-li> <I<maximum ticket lifetime>>]
!     [B<-pw> <I<number days password is valid ([0..254])>>]
!     [B<-r> <I<permit password reuse (yes/no)>>]
!     [B<-at> <I<maximum successive failed login tries ([0..254])>>]
!     [B<-lo> <I<failure penalty [hh:mm or minutes]>>]
!     [B<-ad> <I<admin principal to use for authentication>>]
!     [B<-pa> <I<admin password>>] [B<-c> <I<cell name>>]
!     [B<-s> <I<explicit list of authentication servers>>+] [B<-no>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,51 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<kas setfields> S<<< B<-name> <I<name of user>> >>>
!     S<<< [B<-flags> <I<hex flag value or flag name expression>>] >>>
!     S<<< [B<-expiration> <I<date of account expiration>>] >>>
!     S<<< [B<-lifetime> <I<maximum ticket lifetime>>] >>>
!     S<<< [B<-pwexpires> <I<number days password is valid ([0..254])>>] >>>
!     S<<< [B<-reuse> <I<permit password reuse (yes/no)>>] >>>
!     S<<< [B<-attempts> <I<maximum successive failed login tries ([0..254])>>] >>>
!     S<<< [B<-locktime> <I<failure penalty [hh:mm or minutes]>>] >>>
!     S<<< [B<-admin_username> <I<admin principal to use for authentication>>] >>>
!     S<<< [B<-password_for_admin> <I<admin password>>] >>> S<<< [B<-cell> <I<cell name>>] >>>
!     S<<< [B<-servers> <I<explicit list of authentication servers>>+] >>>
      [B<-noauth>] [B<-help>]
  
! B<kas setf> S<<< B<-na> <I<name of user>> >>>
!     S<<< [B<-f> <I<hex flag value or flag name expression>>] >>>
!     S<<< [B<-e> <I<date of account expiration>>] >>>
!     S<<< [B<-li> <I<maximum ticket lifetime>>] >>>
!     S<<< [B<-pw> <I<number days password is valid ([0..254])>>] >>>
!     S<<< [B<-r> <I<permit password reuse (yes/no)>>] >>>
!     S<<< [B<-at> <I<maximum successive failed login tries ([0..254])>>] >>>
!     S<<< [B<-lo> <I<failure penalty [hh:mm or minutes]>>] >>>
!     S<<< [B<-ad> <I<admin principal to use for authentication>>] >>>
!     S<<< [B<-pa> <I<admin password>>] >>> S<<< [B<-c> <I<cell name>>] >>>
!     S<<< [B<-s> <I<explicit list of authentication servers>>+] >>> [B<-no>] [B<-h>]
! 
! B<kas sf> S<<< B<-na> <I<name of user>> >>>
!     S<<< [B<-f> <I<hex flag value or flag name expression>>] >>>
!     S<<< [B<-e> <I<date of account expiration>>] >>>
!     S<<< [B<-li> <I<maximum ticket lifetime>>] >>>
!     S<<< [B<-pw> <I<number days password is valid ([0..254])>>] >>>
!     S<<< [B<-r> <I<permit password reuse (yes/no)>>] >>>
!     S<<< [B<-at> <I<maximum successive failed login tries ([0..254])>>] >>>
!     S<<< [B<-lo> <I<failure penalty [hh:mm or minutes]>>] >>>
!     S<<< [B<-ad> <I<admin principal to use for authentication>>] >>>
!     S<<< [B<-pa> <I<admin password>>] >>> S<<< [B<-c> <I<cell name>>] >>>
!     S<<< [B<-s> <I<explicit list of authentication servers>>+] >>> [B<-no>] [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod8/kas_setpassword.pod
diff -c openafs/doc/man-pages/pod8/kas_setpassword.pod:1.3 openafs/doc/man-pages/pod8/kas_setpassword.pod:1.5
*** openafs/doc/man-pages/pod8/kas_setpassword.pod:1.3	Tue Dec 20 19:41:19 2005
--- openafs/doc/man-pages/pod8/kas_setpassword.pod	Wed Mar  1 00:02:32 2006
***************
*** 4,33 ****
  
  =head1 SYNOPSIS
  
! B<kas setpassword> B<-name> <I<name of user>>
!     [B<-new_password> <I<new password>>] [B<-kvno> <I<key version number>>]
!     [B<-admin_username> <I<admin principal to use for authentication>>]
!     [B<-password_for_admin> <I<admin password>>] [B<-cell> <I<cell name>>]
!     [B<-servers> <I<explicit list of authentication servers>>+]
      [B<-noauth>] [B<-help>]
  
! B<kas setpasswd> B<-na> <I<name of user>> [B<-ne> <I<new password>>]
!     [B<-k> <I<key version number>>]
!     [B<-a> <I<admin principal to use for authentication>>]
!     [B<-p> <I<admin password>>] [B<-c> <I<cell name>>]
!     [B<-s> <I<explicit list of authentication servers>>+] [B<-no>] [B<-h>]
! 
! B<kas setp> B<-na> <I<name of user>> [B<-ne> <I<new password>>]
!     [B<-k> <I<key version number>>]
!     [B<-a> <I<admin principal to use for authentication>>]
!     [B<-p> <I<admin password>>] [B<-c> <I<cell name>>]
!     [B<-s> <I<explicit list of authentication servers>>+] [B<-no>] [B<-h>]
! 
! B<kas sp> B<-na> <I<name of user>> [B<-ne> <I<new password>>]
!     [B<-k> <I<key version number>>]
!     [B<-a> <I<admin principal to use for authentication>>]
!     [B<-p> <I<admin password>>] [B<-c> <I<cell name>>]
!     [B<-s> <I<explicit list of authentication servers>>+] [B<-no>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,39 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<kas setpassword> S<<< B<-name> <I<name of user>> >>>
!     S<<< [B<-new_password> <I<new password>>] >>> S<<< [B<-kvno> <I<key version number>>] >>>
!     S<<< [B<-admin_username> <I<admin principal to use for authentication>>] >>>
!     S<<< [B<-password_for_admin> <I<admin password>>] >>> S<<< [B<-cell> <I<cell name>>] >>>
!     S<<< [B<-servers> <I<explicit list of authentication servers>>+] >>>
      [B<-noauth>] [B<-help>]
  
! B<kas setpasswd> S<<< B<-na> <I<name of user>> >>> S<<< [B<-ne> <I<new password>>] >>>
!     S<<< [B<-k> <I<key version number>>] >>>
!     S<<< [B<-a> <I<admin principal to use for authentication>>] >>>
!     S<<< [B<-p> <I<admin password>>] >>> S<<< [B<-c> <I<cell name>>] >>>
!     S<<< [B<-s> <I<explicit list of authentication servers>>+] >>> [B<-no>] [B<-h>]
! 
! B<kas setp> S<<< B<-na> <I<name of user>> >>> S<<< [B<-ne> <I<new password>>] >>>
!     S<<< [B<-k> <I<key version number>>] >>>
!     S<<< [B<-a> <I<admin principal to use for authentication>>] >>>
!     S<<< [B<-p> <I<admin password>>] >>> S<<< [B<-c> <I<cell name>>] >>>
!     S<<< [B<-s> <I<explicit list of authentication servers>>+] >>> [B<-no>] [B<-h>]
! 
! B<kas sp> S<<< B<-na> <I<name of user>> >>> S<<< [B<-ne> <I<new password>>] >>>
!     S<<< [B<-k> <I<key version number>>] >>>
!     S<<< [B<-a> <I<admin principal to use for authentication>>] >>>
!     S<<< [B<-p> <I<admin password>>] >>> S<<< [B<-c> <I<cell name>>] >>>
!     S<<< [B<-s> <I<explicit list of authentication servers>>+] >>> [B<-no>] [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
***************
*** 154,161 ****
  
  L<bos_addkey(8)>,
  L<kas(8)>,
! L<kaserver(1)>,
! L<kpwvalid(1)>
  
  =head1 COPYRIGHT
  
--- 160,167 ----
  
  L<bos_addkey(8)>,
  L<kas(8)>,
! L<kaserver(8)>,
! L<kpwvalid(8)>
  
  =head1 COPYRIGHT
  
Index: openafs/doc/man-pages/pod8/kas_statistics.pod
diff -c openafs/doc/man-pages/pod8/kas_statistics.pod:1.4 openafs/doc/man-pages/pod8/kas_statistics.pod:1.5
*** openafs/doc/man-pages/pod8/kas_statistics.pod:1.4	Tue Dec 20 19:41:19 2005
--- openafs/doc/man-pages/pod8/kas_statistics.pod	Wed Mar  1 00:02:32 2006
***************
*** 4,18 ****
  
  =head1 SYNOPSIS
  
  B<kas statistics>
!     [B<-admin_username> <I<admin principal to use for authentication>>]
!     [B<-password_for_admin> <I<admin password>>] [B<-cell> <I<cell name>>]
!     [B<-servers> <I<explicit list of authentication servers>>+]
      [B<-noauth>] [B<-help>]
  
! B<kas sta> [B<-a> <I<admin principal to use for authentication>>]
!     [B<-p> <I<admin password>>]  [B<-c> <I<cell name>>]
!     [B<-s> <I<explicit list of authentication servers>>+] [B<-n>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,24 ----
  
  =head1 SYNOPSIS
  
+ =for html
+ <div class="synopsis">
+ 
  B<kas statistics>
!     S<<< [B<-admin_username> <I<admin principal to use for authentication>>] >>>
!     S<<< [B<-password_for_admin> <I<admin password>>] >>> S<<< [B<-cell> <I<cell name>>] >>>
!     S<<< [B<-servers> <I<explicit list of authentication servers>>+] >>>
      [B<-noauth>] [B<-help>]
  
! B<kas sta> S<<< [B<-a> <I<admin principal to use for authentication>>] >>>
!     S<<< [B<-p> <I<admin password>>] >>>  S<<< [B<-c> <I<cell name>>] >>>
!     S<<< [B<-s> <I<explicit list of authentication servers>>+] >>> [B<-n>] [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod8/kas_stringtokey.pod
diff -c openafs/doc/man-pages/pod8/kas_stringtokey.pod:1.3 openafs/doc/man-pages/pod8/kas_stringtokey.pod:1.4
*** openafs/doc/man-pages/pod8/kas_stringtokey.pod:1.3	Tue Dec 13 14:21:16 2005
--- openafs/doc/man-pages/pod8/kas_stringtokey.pod	Wed Mar  1 00:02:32 2006
***************
*** 4,13 ****
  
  =head1 SYNOPSIS
  
! B<kas stringtokey> B<-string> <I<password string>>
!     [B<-cell> <I<cell name>>] [B<-help>]
  
! B<kas str> B<-s> <I<password string>> [B<-c> <I<cell name>>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,19 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<kas stringtokey> S<<< B<-string> <I<password string>> >>>
!     S<<< [B<-cell> <I<cell name>>] >>> [B<-help>]
! 
! B<kas str> S<<< B<-s> <I<password string>> >>> S<<< [B<-c> <I<cell name>>] >>> [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod8/kas_unlock.pod
diff -c openafs/doc/man-pages/pod8/kas_unlock.pod:1.3 openafs/doc/man-pages/pod8/kas_unlock.pod:1.4
*** openafs/doc/man-pages/pod8/kas_unlock.pod:1.3	Tue Dec 20 19:41:19 2005
--- openafs/doc/man-pages/pod8/kas_unlock.pod	Wed Mar  1 00:02:32 2006
***************
*** 4,19 ****
  
  =head1 SYNOPSIS
  
! B<kas unlock> B<-name> <I<authentication ID>>
!     [B<-admin_username> <I<admin principal to use for authentication>>]
!     [B<-password_for_admin> <I<admin password>>] [B<-cell> <I<cell name>>]
!     [B<-servers> <I<explicit list of authentication servers>>+]
      [B<-noauth>] [B<-help>]
  
! B<kas u> B<-na> <I<authentication ID>>
!     [B<-a> <I<admin principal to use for authentication>>]
!     [B<-p> <I<admin password>>] [B<-c> <I<cell name>>]
!     [B<-s> <I<explicit list of authentication servers>>+] [B<-no>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,25 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<kas unlock> S<<< B<-name> <I<authentication ID>> >>>
!     S<<< [B<-admin_username> <I<admin principal to use for authentication>>] >>>
!     S<<< [B<-password_for_admin> <I<admin password>>] >>> S<<< [B<-cell> <I<cell name>>] >>>
!     S<<< [B<-servers> <I<explicit list of authentication servers>>+] >>>
      [B<-noauth>] [B<-help>]
  
! B<kas u> S<<< B<-na> <I<authentication ID>> >>>
!     S<<< [B<-a> <I<admin principal to use for authentication>>] >>>
!     S<<< [B<-p> <I<admin password>>] >>> S<<< [B<-c> <I<cell name>>] >>>
!     S<<< [B<-s> <I<explicit list of authentication servers>>+] >>> [B<-no>] [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod8/kaserver.pod
diff -c openafs/doc/man-pages/pod8/kaserver.pod:1.3 openafs/doc/man-pages/pod8/kaserver.pod:1.4
*** openafs/doc/man-pages/pod8/kaserver.pod:1.3	Tue Dec 20 19:41:19 2005
--- openafs/doc/man-pages/pod8/kaserver.pod	Wed Mar 29 15:00:50 2006
***************
*** 2,14 ****
  
  kaserver - Initializes the Authentication Server
  
! =head1 DESCRIPTION
  
  B<kaserver> [B<-noAuth>] [B<-fastKeys>] [B<-database> <I<dbpath>>]
!     [B<-localfiles> <I<lclpath>>] [B<-minhours> <I<n>>]
!     [B<-servers> <I<serverlist>>] [B<-enable_peer_stats>]
      [B<-enable_process_stats>] [B<-help>]
  
  =head1 DESCRIPTION
  
  The B<kaserver> command initializes the Authentication Server, which runs
--- 2,20 ----
  
  kaserver - Initializes the Authentication Server
  
! =head1 SYNOPSIS
! 
! =for html
! <div class="synopsis">
  
  B<kaserver> [B<-noAuth>] [B<-fastKeys>] [B<-database> <I<dbpath>>]
!     S<<< [B<-localfiles> <I<lclpath>>] >>> S<<< [B<-minhours> <I<n>>] >>>
!     S<<< [B<-servers> <I<serverlist>>] >>> [B<-enable_peer_stats>]
      [B<-enable_process_stats>] [B<-help>]
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The B<kaserver> command initializes the Authentication Server, which runs
Index: openafs/doc/man-pages/pod8/kdb.pod
diff -c openafs/doc/man-pages/pod8/kdb.pod:1.4 openafs/doc/man-pages/pod8/kdb.pod:1.5
*** openafs/doc/man-pages/pod8/kdb.pod:1.4	Tue Dec 20 19:41:19 2005
--- openafs/doc/man-pages/pod8/kdb.pod	Wed Mar  1 00:02:32 2006
***************
*** 4,11 ****
  
  =head1 SYNOPSIS
  
! B<kdb> [B<-dbmfile> <I<dbmfile to use (default /usr/afs/logs/AuthLog)>>]
!     [B<-key> <I<extract entries that match specified key>>] [B<-help>]
  
  =head1 DESCRIPTION
  
--- 4,17 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<kdb> S<<< [B<-dbmfile> <I<dbmfile to use (default /usr/afs/logs/AuthLog)>>] >>>
!     S<<< [B<-key> <I<extract entries that match specified key>>] >>> [B<-help>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod8/kpwvalid.pod
diff -c openafs/doc/man-pages/pod8/kpwvalid.pod:1.3 openafs/doc/man-pages/pod8/kpwvalid.pod:1.4
*** openafs/doc/man-pages/pod8/kpwvalid.pod:1.3	Tue Dec 20 19:41:19 2005
--- openafs/doc/man-pages/pod8/kpwvalid.pod	Wed Mar  1 00:02:32 2006
***************
*** 4,11 ****
--- 4,17 ----
  
  =head1 SYNOPSIS
  
+ =for html
+ <div class="synopsis">
+ 
  B<kpwvalid>
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The B<kpwvalid> command checks the quality of a new password passed to it
Index: openafs/doc/man-pages/pod8/package.pod
diff -c openafs/doc/man-pages/pod8/package.pod:1.2 openafs/doc/man-pages/pod8/package.pod:1.3
*** openafs/doc/man-pages/pod8/package.pod:1.2	Tue Dec 13 14:21:16 2005
--- openafs/doc/man-pages/pod8/package.pod	Wed Mar  1 00:02:32 2006
***************
*** 4,18 ****
  
  =head1 SYNOPSIS
  
! B<package> [I<initcmd>] [B<-config> <I<base name of configuration file>>]
!     [B<-fullconfig> <I<full name of configuration file, or stdin>>]
      [B<-overwrite>] [B<-noaction>] [B<-verbose>] [B<-silent>]
      [B<-rebootfiles>] [B<-debug>] [B<-help>]
  
! B<package> [B<i>] [B<-c> <I<base name of configuration file>>]
!     [B<-f> <I<full name of configuration file, or stdin>>]
      [B<-o>] [B<-n>] [B<-v>] [B<-s>] [B<-r>] [B<-d>] [B<-h>]
  
  =head1 DESCRIPTION
  
  The B<package> command configures the machine's local disk to comply with
--- 4,24 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<package> [I<initcmd>] S<<< [B<-config> <I<base name of configuration file>>] >>>
!     S<<< [B<-fullconfig> <I<full name of configuration file, or stdin>>] >>>
      [B<-overwrite>] [B<-noaction>] [B<-verbose>] [B<-silent>]
      [B<-rebootfiles>] [B<-debug>] [B<-help>]
  
! B<package> [B<i>] S<<< [B<-c> <I<base name of configuration file>>] >>>
!     S<<< [B<-f> <I<full name of configuration file, or stdin>>] >>>
      [B<-o>] [B<-n>] [B<-v>] [B<-s>] [B<-r>] [B<-d>] [B<-h>]
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The B<package> command configures the machine's local disk to comply with
Index: openafs/doc/man-pages/pod8/prdb_check.pod
diff -c openafs/doc/man-pages/pod8/prdb_check.pod:1.3 openafs/doc/man-pages/pod8/prdb_check.pod:1.4
*** openafs/doc/man-pages/pod8/prdb_check.pod:1.3	Tue Dec 13 14:21:16 2005
--- openafs/doc/man-pages/pod8/prdb_check.pod	Wed Mar  1 00:02:32 2006
***************
*** 4,13 ****
  
  =head1 SYNOPSIS
  
! B<prdb_check> B<-database> <I<ptdb file>> [B<-uheader>] [B<-pheader>]
      [B<-entries>] [B<-verbose>] [B<-help>]
  
! B<prdb_check> B<-d> <I<ptdb file>> [B<-u>] [B<-p>] [B<-e>] [B<-v>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,19 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<prdb_check> S<<< B<-database> <I<ptdb file>> >>> [B<-uheader>] [B<-pheader>]
      [B<-entries>] [B<-verbose>] [B<-help>]
  
! B<prdb_check> S<<< B<-d> <I<ptdb file>> >>> [B<-u>] [B<-p>] [B<-e>] [B<-v>] [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod8/ptserver.pod
diff -c openafs/doc/man-pages/pod8/ptserver.pod:1.2 openafs/doc/man-pages/pod8/ptserver.pod:1.3
*** openafs/doc/man-pages/pod8/ptserver.pod:1.2	Tue Dec 13 14:21:16 2005
--- openafs/doc/man-pages/pod8/ptserver.pod	Wed Mar  1 00:02:32 2006
***************
*** 4,13 ****
  
  =head1 SYNOPSIS
  
! B<ptserver> [B<-database> <I<db path>>] [B<-p> <I<number of processes>>]
      [B<-rebuildDB>] [B<-enable_peer_stats>] [B<-enable_process_stats>]
      [B<-help>]
  
  =head1 DESCRIPTION
  
  The B<ptserver> command initializes the Protection Server, which must run
--- 4,19 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<ptserver> S<<< [B<-database> <I<db path>>] >>> S<<< [B<-p> <I<number of processes>>] >>>
      [B<-rebuildDB>] [B<-enable_peer_stats>] [B<-enable_process_stats>]
      [B<-help>]
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The B<ptserver> command initializes the Protection Server, which must run
Index: openafs/doc/man-pages/pod8/salvager.pod
diff -c openafs/doc/man-pages/pod8/salvager.pod:1.3 openafs/doc/man-pages/pod8/salvager.pod:1.4
*** openafs/doc/man-pages/pod8/salvager.pod:1.3	Tue Dec 20 19:41:19 2005
--- openafs/doc/man-pages/pod8/salvager.pod	Wed Mar  1 00:02:32 2006
***************
*** 4,17 ****
  
  =head1 SYNOPSIS
  
! B<salvager> [I<initcmd>] [B<-partition> <I<name of partition to salvage>>]
!     [B<-volumeid> <I<volume id to salvage>>] [B<-debug>] [B<-nowrite>]
      [B<-inodes>] [B<-force>] [B<-oktozap>] [B<-rootinodes>]
      [B<-salvagedirs>] [B<-blockreads>]
!     [B<-parallel> <I<# of max parallel partition salvaging>>]
!     [B<-tmpdir> <I<name of dir to place tmp files>>]
      [B<-showlog>] [B<-showsuid>] [B<-showmounts>]
!     [B<-orphans> (ignore | remove | attach)] [B<-help>]
  
  =head1 DESCRIPTION
  
--- 4,23 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<salvager> [I<initcmd>] S<<< [B<-partition> <I<name of partition to salvage>>] >>>
!     S<<< [B<-volumeid> <I<volume id to salvage>>] >>> [B<-debug>] [B<-nowrite>]
      [B<-inodes>] [B<-force>] [B<-oktozap>] [B<-rootinodes>]
      [B<-salvagedirs>] [B<-blockreads>]
!     S<<< [B<-parallel> <I<# of max parallel partition salvaging>>] >>>
!     S<<< [B<-tmpdir> <I<name of dir to place tmp files>>] >>>
      [B<-showlog>] [B<-showsuid>] [B<-showmounts>]
!     S<<< [B<-orphans> (ignore | remove | attach)] >>> [B<-help>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod8/upclient.pod
diff -c openafs/doc/man-pages/pod8/upclient.pod:1.3 openafs/doc/man-pages/pod8/upclient.pod:1.4
*** openafs/doc/man-pages/pod8/upclient.pod:1.3	Tue Dec 13 14:21:16 2005
--- openafs/doc/man-pages/pod8/upclient.pod	Wed Mar  1 00:02:32 2006
***************
*** 4,12 ****
  
  =head1 SYNOPSIS
  
! B<upclient> <I<hostname>> [B<-crypt>] [B<-clear>] [B<-t> <I<retry time>>]
      [B<-verbose>]* <I<dir>>+ [B<-help>]
  
  =head1 DESCRIPTION
  
  The upclient command initializes the client portion of the Update
--- 4,18 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! S<<< B<upclient> <I<hostname>> >>> [B<-crypt>] [B<-clear>] S<<< [B<-t> <I<retry time>>] >>>
      [B<-verbose>]* <I<dir>>+ [B<-help>]
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The upclient command initializes the client portion of the Update
Index: openafs/doc/man-pages/pod8/upserver.pod
diff -c openafs/doc/man-pages/pod8/upserver.pod:1.3 openafs/doc/man-pages/pod8/upserver.pod:1.4
*** openafs/doc/man-pages/pod8/upserver.pod:1.3	Tue Dec 13 14:21:17 2005
--- openafs/doc/man-pages/pod8/upserver.pod	Wed Mar  1 00:02:32 2006
***************
*** 4,11 ****
  
  =head1 SYNOPSIS
  
! B<upserver> [<I<directory>>+] [B<-crypt> <I<directory>>+]
!     [B<-clear> <I<directory>>+] [B<-auth> <I<directory>>+] [B<-help>]
  
  =head1 DESCRIPTION
  
--- 4,17 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<upserver> [<I<directory>>+] S<<< [B<-crypt> <I<directory>>+] >>>
!     S<<< [B<-clear> <I<directory>>+] >>> S<<< [B<-auth> <I<directory>>+] >>> [B<-help>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod8/uss_add.pod
diff -c openafs/doc/man-pages/pod8/uss_add.pod:1.3 openafs/doc/man-pages/pod8/uss_add.pod:1.4
*** openafs/doc/man-pages/pod8/uss_add.pod:1.3	Tue Dec 20 19:41:19 2005
--- openafs/doc/man-pages/pod8/uss_add.pod	Wed Mar  1 00:02:32 2006
***************
*** 4,33 ****
  
  =head1 SYNOPSIS
  
! B<uss add> B<-user> <I<login name>> [B<-realname> <I<full name in quotes>>]
!     [B<-pass> <I<initial password>>]
      [B<-pwexpires> <I<< password expires in [0..254] days (0 => never) >>>]
!     [B<-server> <I<file server for home volume>>]
!     [B<-partition> <I<file server's disk partition for home volume>>]
!     [B<-mount> <I<home directory mount point>>]
!     [B<-uid> <I<uid to assign the user>>]
!     [B<-template> <I<pathname of template file>>]
!     [B<-verbose>] [B<-var> <I<auxiliary argument pairs (Num val)>>+]
!     [B<-cell> <I<cell name>>] [B<-admin> <I<administrator to authenticate>>]
      [B<-dryrun>] [B<-skipauth>] [B<-overwrite>] [B<-help>]
  
! B<uss ad> B<-us> <I<login name>> [B<-r> <I<full name in quotes>>]
!     [B<-pas> <I<initial password>>]
      [B<-pw> <I<< password expires in [0..254] days (0 => never) >>>]
!     [B<-se> <I<FileServer for home volume>>]
!     [B<-par> <I<FileServer's disk partition for home volume>>]
!     [B<-m> <I<home directory mount point>>]
!     [B<-ui> <I<uid to assign the user>>]
!     [B<-t> <I<pathname of template file>>] [B<-ve>]
!     [B<-va> <I<auxiliary argument pairs (Num val)>>+] [B<-c> <I<cell name>>]
!     [B<-a> <I<administrator to authenticate>>] [B<-d>] [B<-sk>] [B<-o>]
      [B<-h>]
  
  =head1 DESCRIPTION
  
  The B<uss add> command creates entries in the Protection Database and
--- 4,39 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<uss add> S<<< B<-user> <I<login name>> >>> S<<< [B<-realname> <I<full name in quotes>>] >>>
!     S<<< [B<-pass> <I<initial password>>] >>>
      [B<-pwexpires> <I<< password expires in [0..254] days (0 => never) >>>]
!     S<<< [B<-server> <I<file server for home volume>>] >>>
!     S<<< [B<-partition> <I<file server's disk partition for home volume>>] >>>
!     S<<< [B<-mount> <I<home directory mount point>>] >>>
!     S<<< [B<-uid> <I<uid to assign the user>>] >>>
!     S<<< [B<-template> <I<pathname of template file>>] >>>
!     [B<-verbose>] S<<< [B<-var> <I<auxiliary argument pairs (Num val)>>+] >>>
!     S<<< [B<-cell> <I<cell name>>] >>> S<<< [B<-admin> <I<administrator to authenticate>>] >>>
      [B<-dryrun>] [B<-skipauth>] [B<-overwrite>] [B<-help>]
  
! B<uss ad> S<<< B<-us> <I<login name>> >>> S<<< [B<-r> <I<full name in quotes>>] >>>
!     S<<< [B<-pas> <I<initial password>>] >>>
      [B<-pw> <I<< password expires in [0..254] days (0 => never) >>>]
!     S<<< [B<-se> <I<FileServer for home volume>>] >>>
!     S<<< [B<-par> <I<FileServer's disk partition for home volume>>] >>>
!     S<<< [B<-m> <I<home directory mount point>>] >>>
!     S<<< [B<-ui> <I<uid to assign the user>>] >>>
!     S<<< [B<-t> <I<pathname of template file>>] >>> [B<-ve>]
!     S<<< [B<-va> <I<auxiliary argument pairs (Num val)>>+] >>> S<<< [B<-c> <I<cell name>>] >>>
!     S<<< [B<-a> <I<administrator to authenticate>>] >>> [B<-d>] [B<-sk>] [B<-o>]
      [B<-h>]
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The B<uss add> command creates entries in the Protection Database and
Index: openafs/doc/man-pages/pod8/uss_apropos.pod
diff -c openafs/doc/man-pages/pod8/uss_apropos.pod:1.2 openafs/doc/man-pages/pod8/uss_apropos.pod:1.3
*** openafs/doc/man-pages/pod8/uss_apropos.pod:1.2	Tue Dec 13 14:21:17 2005
--- openafs/doc/man-pages/pod8/uss_apropos.pod	Wed Mar  1 00:02:32 2006
***************
*** 4,12 ****
  
  =head1 SYNOPSIS
  
! B<uss apropos> B<-topic> <I<help string>> [B<-help>]
  
! B<uss ap> B<-t> <I<help string>> [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,18 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<uss apropos> S<<< B<-topic> <I<help string>> >>> [B<-help>]
! 
! B<uss ap> S<<< B<-t> <I<help string>> >>> [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod8/uss_bulk.pod
diff -c openafs/doc/man-pages/pod8/uss_bulk.pod:1.3 openafs/doc/man-pages/pod8/uss_bulk.pod:1.4
*** openafs/doc/man-pages/pod8/uss_bulk.pod:1.3	Tue Dec 20 19:41:19 2005
--- openafs/doc/man-pages/pod8/uss_bulk.pod	Wed Mar  1 00:02:32 2006
***************
*** 4,23 ****
  
  =head1 SYNOPSIS
  
! B<uss bulk> B<-file> <I<bulk input file>>
!     [B<-template> <I<pathname of template file>>] [B<-verbose>]
!     [B<-cell> <I<cell name>>]
!     [B<-admin> <I<administrator to authenticate>>] [B<-dryrun>]
      [B<-skipauth>] [B<-overwrite>]
      [B<-pwexpires> <I<password expires in [0..254] days (0 => never)>>]
      [B<-pipe>] [B<-help>]
  
! B<uss b> B<-f> <I<bulk input file>> [B<-t> <I<pathname of template file>>]
!     [B<-v>] [B<-c> <I<cell name>>]
!     [B<-a> <I<administrator to authenticate>>] [B<-d>] [B<-s>]
      [B<-o>] [B<-pw> <I<password expires in [0..254] days (0 => never)>>]
      [B<-pi>] [B<-h>]
  
  =head1 DESCRIPTION
  
  The B<uss bulk> command executes the uss commands listed in the I<bulk
--- 4,29 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<uss bulk> S<<< B<-file> <I<bulk input file>> >>>
!     S<<< [B<-template> <I<pathname of template file>>] >>> [B<-verbose>]
!     S<<< [B<-cell> <I<cell name>>] >>>
!     S<<< [B<-admin> <I<administrator to authenticate>>] >>> [B<-dryrun>]
      [B<-skipauth>] [B<-overwrite>]
      [B<-pwexpires> <I<password expires in [0..254] days (0 => never)>>]
      [B<-pipe>] [B<-help>]
  
! B<uss b> S<<< B<-f> <I<bulk input file>> >>> S<<< [B<-t> <I<pathname of template file>>] >>>
!     [B<-v>] S<<< [B<-c> <I<cell name>>] >>>
!     S<<< [B<-a> <I<administrator to authenticate>>] >>> [B<-d>] [B<-s>]
      [B<-o>] [B<-pw> <I<password expires in [0..254] days (0 => never)>>]
      [B<-pi>] [B<-h>]
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The B<uss bulk> command executes the uss commands listed in the I<bulk
Index: openafs/doc/man-pages/pod8/uss_delete.pod
diff -c openafs/doc/man-pages/pod8/uss_delete.pod:1.3 openafs/doc/man-pages/pod8/uss_delete.pod:1.4
*** openafs/doc/man-pages/pod8/uss_delete.pod:1.3	Tue Dec 20 19:41:19 2005
--- openafs/doc/man-pages/pod8/uss_delete.pod	Wed Mar  1 00:02:32 2006
***************
*** 4,18 ****
  
  =head1 SYNOPSIS
  
! B<uss delete> B<-user> <I<login name>>
!     [B<-mountpoint> <I<mountpoint for user's volume>>]
!     [B<-savevolume>] [B<-verbose>] [B<-cell> <I<cell name>>]
!     [B<-admin> <I<administrator to authenticate>>] [B<-dryrun>]
      [B<-skipauth>] [B<-help>]
  
! B<uss d> B<-u> <I<login name>> [B<-m> <I<mountpoint for user's volume>>]
!     [B<-sa>] [B<-v>] [B<-c> <I<cell name>>]
!     [B<-a> <I<administrator to authenticate>>] [B<-d>] [B<-sk>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,24 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<uss delete> S<<< B<-user> <I<login name>> >>>
!     S<<< [B<-mountpoint> <I<mountpoint for user's volume>>] >>>
!     [B<-savevolume>] [B<-verbose>] S<<< [B<-cell> <I<cell name>>] >>>
!     S<<< [B<-admin> <I<administrator to authenticate>>] >>> [B<-dryrun>]
      [B<-skipauth>] [B<-help>]
  
! B<uss d> S<<< B<-u> <I<login name>> >>> S<<< [B<-m> <I<mountpoint for user's volume>>] >>>
!     [B<-sa>] [B<-v>] S<<< [B<-c> <I<cell name>>] >>>
!     S<<< [B<-a> <I<administrator to authenticate>>] >>> [B<-d>] [B<-sk>] [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod8/uss_help.pod
diff -c openafs/doc/man-pages/pod8/uss_help.pod:1.3 openafs/doc/man-pages/pod8/uss_help.pod:1.4
*** openafs/doc/man-pages/pod8/uss_help.pod:1.3	Tue Dec 20 19:41:19 2005
--- openafs/doc/man-pages/pod8/uss_help.pod	Wed Mar  1 00:02:32 2006
***************
*** 4,12 ****
  
  =head1 SYNOPSIS
  
! B<uss help> [B<-topic> <I<help string>>+] [B<-help>]
  
! B<uss h> [B<-t> <I<help string>>+] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,18 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<uss help> S<<< [B<-topic> <I<help string>>+] >>> [B<-help>]
! 
! B<uss h> S<<< [B<-t> <I<help string>>+] >>> [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod8/vldb_check.pod
diff -c openafs/doc/man-pages/pod8/vldb_check.pod:1.3 openafs/doc/man-pages/pod8/vldb_check.pod:1.4
*** openafs/doc/man-pages/pod8/vldb_check.pod:1.3	Tue Dec 13 14:21:17 2005
--- openafs/doc/man-pages/pod8/vldb_check.pod	Wed Mar  1 00:02:32 2006
***************
*** 4,15 ****
  
  =head1 SYNOPSIS
  
! B<vldb_check> B<-database> <I<vldb file>> [B<-uheader>] [B<-vheader>]
      [B<-servers>] [B<-entries>] [B<-verbose>] [B<-help>]
  
! B<vldb_check> B<-d> <I<vldb file>> [B<-u>] [B<-vh>] [B<-s>] [B<-e>]
      [B<-ve>] [B<-h>]
  
  =head1 DESCRIPTION
  
  The B<vldb_check> command checks the integrity of the Volume Location
--- 4,21 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<vldb_check> S<<< B<-database> <I<vldb file>> >>> [B<-uheader>] [B<-vheader>]
      [B<-servers>] [B<-entries>] [B<-verbose>] [B<-help>]
  
! B<vldb_check> S<<< B<-d> <I<vldb file>> >>> [B<-u>] [B<-vh>] [B<-s>] [B<-e>]
      [B<-ve>] [B<-h>]
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The B<vldb_check> command checks the integrity of the Volume Location
Index: openafs/doc/man-pages/pod8/vlserver.pod
diff -c openafs/doc/man-pages/pod8/vlserver.pod:1.2 openafs/doc/man-pages/pod8/vlserver.pod:1.3
*** openafs/doc/man-pages/pod8/vlserver.pod:1.2	Tue Dec 13 14:21:17 2005
--- openafs/doc/man-pages/pod8/vlserver.pod	Wed Mar  1 00:02:32 2006
***************
*** 4,12 ****
  
  =head1 SYNOPSIS
  
! B<vlserver> [B<-p> <I<lwp processes>>] [B<-nojumbo>]
      [B<-enable_peer_stats>] [B<-enable_process_stats>] [B<-help>]
  
  =head1 DESCRIPTION
  
  The B<vlserver> command initializes the Volume Location (VL) Server, which
--- 4,18 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<vlserver> S<<< [B<-p> <I<lwp processes>>] >>> [B<-nojumbo>]
      [B<-enable_peer_stats>] [B<-enable_process_stats>] [B<-help>]
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The B<vlserver> command initializes the Volume Location (VL) Server, which
Index: openafs/doc/man-pages/pod8/voldump.pod
diff -c openafs/doc/man-pages/pod8/voldump.pod:1.1 openafs/doc/man-pages/pod8/voldump.pod:1.2
*** openafs/doc/man-pages/pod8/voldump.pod:1.1	Thu Dec 22 02:34:51 2005
--- openafs/doc/man-pages/pod8/voldump.pod	Wed Mar  1 00:02:32 2006
***************
*** 4,14 ****
  
  =head1 SYNOPSIS
  
! B<voldump> B<-part> <I<partition>> B<-volumeid> <I<volume id>>
!     [B<-file> <I<dump file>>] [B<-verbose>] [B<-help>]
  
! B<voldump> B<-p> <I<partition>> B<-vo> <I<volume id>>
!     [B<-f> <I<dump file>>] [B<-ve>] [B<-h>]
  
  =head1 DESCRIPTION
  
--- 4,20 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
  
! B<voldump> S<<< B<-part> <I<partition>> >>> S<<< B<-volumeid> <I<volume id>> >>>
!     S<<< [B<-file> <I<dump file>>] >>> [B<-verbose>] [B<-help>]
! 
! B<voldump> S<<< B<-p> <I<partition>> >>> S<<< B<-vo> <I<volume id>> >>>
!     S<<< [B<-f> <I<dump file>>] >>> [B<-ve>] [B<-h>]
! 
! =for html
! </div>
  
  =head1 DESCRIPTION
  
Index: openafs/doc/man-pages/pod8/volinfo.pod
diff -c openafs/doc/man-pages/pod8/volinfo.pod:1.3 openafs/doc/man-pages/pod8/volinfo.pod:1.4
*** openafs/doc/man-pages/pod8/volinfo.pod:1.3	Tue Dec 20 19:41:19 2005
--- openafs/doc/man-pages/pod8/volinfo.pod	Wed Mar  1 00:02:32 2006
***************
*** 4,14 ****
  
  =head1 SYNOPSIS
  
  B<volinfo> [B<-online>] [B<-vnode>] [B<-date>] [B<-inode>] [B<-itime>]
!     [B<-part> <I<AFS partition name (default current partition)>>+]
!     [B<-volumeid> <I<volume id>>+] [B<-header>] [B<-sizeOnly>]
      [B<-fixheader>] [B<-saveinodes>] [B<-orphaned>] [B<-help>]
  
  =head1 DESCRIPTION
  
  The B<volinfo> command displays detailed statistics about one or more
--- 4,20 ----
  
  =head1 SYNOPSIS
  
+ =for html
+ <div class="synopsis">
+ 
  B<volinfo> [B<-online>] [B<-vnode>] [B<-date>] [B<-inode>] [B<-itime>]
!     S<<< [B<-part> <I<AFS partition name (default current partition)>>+] >>>
!     S<<< [B<-volumeid> <I<volume id>>+] >>> [B<-header>] [B<-sizeOnly>]
      [B<-fixheader>] [B<-saveinodes>] [B<-orphaned>] [B<-help>]
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The B<volinfo> command displays detailed statistics about one or more
Index: openafs/doc/man-pages/pod8/volserver.pod
diff -c openafs/doc/man-pages/pod8/volserver.pod:1.3 openafs/doc/man-pages/pod8/volserver.pod:1.4
*** openafs/doc/man-pages/pod8/volserver.pod:1.3	Tue Dec 20 19:41:19 2005
--- openafs/doc/man-pages/pod8/volserver.pod	Wed Mar  1 00:02:32 2006
***************
*** 4,13 ****
  
  =head1 SYNOPSIS
  
! B<volserver> [B<-log>] [B<-p> <I<number of processes>>]
!     [B<-udpsize> <I<size of socket buffer in bytes>>]
      [B<-enable_peer_stats>] [B<-enable_process_stats>] [B<-help>]
  
  =head1 DESCRIPTION
  
  The B<volserver> command initializes the Volume Server component of the
--- 4,19 ----
  
  =head1 SYNOPSIS
  
! =for html
! <div class="synopsis">
! 
! B<volserver> [B<-log>] S<<< [B<-p> <I<number of processes>>] >>>
!     S<<< [B<-udpsize> <I<size of socket buffer in bytes>>] >>>
      [B<-enable_peer_stats>] [B<-enable_process_stats>] [B<-help>]
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The B<volserver> command initializes the Volume Server component of the
Index: openafs/doc/man-pages/pod8/xfs_size_check.pod
diff -c openafs/doc/man-pages/pod8/xfs_size_check.pod:1.3 openafs/doc/man-pages/pod8/xfs_size_check.pod:1.4
*** openafs/doc/man-pages/pod8/xfs_size_check.pod:1.3	Tue Dec 13 14:21:17 2005
--- openafs/doc/man-pages/pod8/xfs_size_check.pod	Wed Mar  1 00:02:32 2006
***************
*** 4,11 ****
--- 4,17 ----
  
  =head1 SYNOPSIS
  
+ =for html
+ <div class="synopsis">
+ 
  B<xfs_size_check>
  
+ =for html
+ </div>
+ 
  =head1 DESCRIPTION
  
  The B<xfs_size_check> command, when run on a file server machine that runs
Index: openafs/doc/txt/winnotes/afs-changes-since-1.2.txt
diff -c openafs/doc/txt/winnotes/afs-changes-since-1.2.txt:1.70 openafs/doc/txt/winnotes/afs-changes-since-1.2.txt:1.72
*** openafs/doc/txt/winnotes/afs-changes-since-1.2.txt:1.70	Fri Feb 17 10:35:38 2006
--- openafs/doc/txt/winnotes/afs-changes-since-1.2.txt	Mon Apr 24 11:00:50 2006
***************
*** 1,3 ****
--- 1,52 ----
+ Changes not present in 1.4.1 and since 1.5.0: 1.5.1 released 
+ (24 April 2006)
+ 
+  * Add a DllMain() function to afspthread.dll.  Perform
+    cleanup of thread local storage, rx queues, critical
+    sections, event handles, etc.  This was implemented
+    to avoid crashes in afspthread.dll when applications
+    which load/unload the dll attempt to terminate.
+ 
+  * Lock request behavior has been altered.  As of this 
+    release a locally allocated lock will be used whenever
+    the volume is RO or the requesting user's permissions 
+    are 'rl'.  This will allow end users to execute programs
+    from RW volumes when they do not have the 'k' privilege.
+ 
+    Note that a recent discovery indicates that the 'k' bit
+    is only supposed to control the ability to obtain read 
+    locks.  Write locks are to be controlled by the 'w' and 
+    'i' privilege bits.  
+ 
+  * Code has been added to enable the cache manager to be
+    able to obtain the AFSID of the authenticated user.
+    This is required to be able to determine when "Insert"
+    privileges should apply.  AFS considers a file to be
+    a new file whenever the owner's AFSID matches the 
+    AFSID of the user.  The current implementation relies
+    on the name specified during the SetToken call to be
+    correct.  This will be replaced in the future with a 
+    new RPC that allows the AFSID of the authenticated 
+    user to be obtained.
+ 
+  * A 32-bit-tools installer for use on 64-bit systems 
+    is now available.  These tools are for use with 32-bit
+    versions of Kerberos for Windows or JPSoftware's 4NT.
+ 
+ Since 1.4.1 rc10: 1.4.1 final released (9 April 2006)
+ 
+  * Remove the use of the "active_vcp" variable.  This variable
+    no longer serves any useful purpose and was the cause of
+    race conditions that produced under counts of the smb_vc_t
+    references.
+ 
+  * Change default minidump output to include data segments
+ 
+  * restore access to cm_IoctlGetVolumeStatus and
+    cm_IoctlSetVolumeStatus calls for AFS pioctl operations.
+    Still need to figure out why they are being called
+    for SMB/CIFS IOCTL operations instead of Trans2GetFileInfo.
+ 
  Changes not present in 1.4.1: 1.5.0 released (16 Feb 2006)
  
   * Update build system to include the "sys_name" in the 
***************
*** 53,58 ****
--- 102,134 ----
  
   * Added DebugOutputString debugging of the RX library
  
+ Since 1.4.1 rc9:  1.4.1 rc10 released (10 March 2006)
+ 
+  * Fix the rx-lwp implementation to randomly generate rx call
+    identifiers which are supposed to be unique at a given point
+    in time.  This affects some of the command line tools used
+    for debugging but not the AFS Client Service itself which
+    uses the rx-pthreads implementation.
+ 
+  * xstats_fs_test.exe and xstats_cm_test.exe are now built for
+    Windows although they are not distributed
+ 
+  * don't generate an exception when logging unexpected SMB packets
+ 
+  * the data structures used by cm_IoctlGetVolumeStatus and 
+    cm_IoctlSetVolumeStatus are not compatible with the CIFS
+    Get/Set File Information calls so don't bother executing them.
+ 
+ Since 1.4.1 rc8:
+ 
+  * Fix data written to registry as part of BackConnectionHostnames
+    data value
+ 
+  * Fix initialization bug when allocating cm_server_t objects that
+    would cause servers to appear to be down after each allocation
+    or renewal.   Server would appear up after the next check servers
+    cycle.
+ 
  Since 1.4.1 rc7: 
  
   * Windows will return WSAECONNRESET to the next receive packet
