doc: fix some broken link specifications
[openafs.git] / doc / man-pages / pod5 / butc.pod
index 1bbc9f9..c1f7696 100644 (file)
@@ -304,7 +304,7 @@ shell script or program that directs an automated tape device, such as a
 jukebox or stacker, to mount a tape (insert it into the tape reader).  The
 operator must write the routine to invoke the mount command specified by
 the device's manufacturer; AFS does not include any scripts, although an
-example appears in L<EXAMPLES>.  The script or program inherits the Tape
+example appears in L</EXAMPLES>.  The script or program inherits the Tape
 Coordinator's AFS authentication status.
 
 When the Tape Coordinator needs to mount a tape, it checks the
@@ -463,7 +463,7 @@ shell script or program that directs an automated tape device, such as a
 jukebox or stacker, to unmount a tape (remove it from the tape reader).
 The operator must write the routine to invoke the unmount command
 specified by the device's manufacturer; AFS does not include any scripts,
-although an example appears in L<EXAMPLES>.  The script or program
+although an example appears in L</EXAMPLES>.  The script or program
 inherits the Tape Coordinator's AFS authentication status.
 
 After closing a tape device, the Tape Coordinator checks the configuration
@@ -512,7 +512,7 @@ has port offset 0.
 
 The administrator includes the following five lines in the
 F</usr/afs/backup/CFG_stacker0.1> file. To review the meaning of each
-instruction, see L<DESCRIPTION>.
+instruction, see L</DESCRIPTION>.
 
    MOUNT /usr/afs/backup/stacker0.1
    UNMOUNT /usr/afs/backup/stacker0.1
@@ -531,39 +531,39 @@ C<UNMOUNT> instructions in the F<CFG_stacker0.1> file.
    set tries = $3
    set tapename = $4
    set tapeid = $5
-     
+
    set exit_continue = 0
    set exit_abort = 1
    set exit_interactive = 2
-    
+
    #--------------------------------------------
-     
+
    if (${tries} > 1) then
       echo "Too many tries"
       exit ${exit_interactive}
    endif
-     
+
    if (${operation} == "unmount") then
       echo "UnMount: Will leave tape in drive"
       exit ${exit_continue}
    endif
-     
+
    if ((${operation} == "dump")     |\
        (${operation} == "appenddump")     |\
        (${operation} == "savedb"))  then
-     
+
        stackerCmd_NextTape ${devicefile}
        if (${status} != 0)exit${exit_interactive}
        echo "Will continue"
        exit ${exit_continue}
    endif
-     
+
    if ((${operation} == "labeltape")    |\
        (${operation} == "readlabel")) then
       echo "Will continue"
       exit ${exit_continue}
    endif
-     
+
    echo "Prompt for tape"
    exit ${exit_interactive}
 
@@ -590,7 +590,7 @@ file. It has port offset 20.
 
 The administrator includes the following lines in the
 F</usr/afs/backup/CFG_HSM_device> file. To review the meaning of each
-instruction, see L<DESCRIPTION>.
+instruction, see L</DESCRIPTION>.
 
    MOUNT /usr/afs/backup/file
    FILE YES
@@ -611,30 +611,30 @@ file.
    set exit_continue = 0
    set exit_abort = 1
    set exit_interactive = 2
-     
+
    #--------------------------------------------
-     
+
    if (${tries} > 1) then
       echo "Too many tries"
       exit ${exit_interactive}
    endif
-     
+
    if (${operation} == "labeltape") then
       echo "Won't label a tape/file"
       exit ${exit_abort}
    endif
-     
+
    if ((${operation} == "dump")   |\
        (${operation} == "appenddump")   |\
        (${operation} == "restore")   |\
        (${operation} == "savedb")    |\
        (${operation} == "restoredb")) then
-     
+
       /bin/rm -f ${devicefile}
       /bin/ln -s /hsm/${tapename}_${tapeid} ${devicefile}
       if (${status} != 0) exit ${exit_abort}
    endif
-     
+
    exit ${exit_continue}
 
 Like the example routine for a tape stacker, this routine uses the