1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128
|
From: Dmitry Bogatov <KAction@gnu.org>
Date: Fri, 30 Aug 2019 23:16:29 +0000
Subject: Fix sectioning in texinfo manual
Forwarded: no
Last-Update: 2016-08-14
Add code to specify position of manual in global directory.
(The one you see, when you invoke `info' without arguments)
Last-Update: 2016-08-14
---
bcron.texi | 48 +++++++++++++++++++++++++++---------------------
1 file changed, 27 insertions(+), 21 deletions(-)
diff --git a/bcron.texi b/bcron.texi
index e045217..13a2d22 100644
--- a/bcron.texi
+++ b/bcron.texi
@@ -7,6 +7,12 @@
@footnotestyle end
@c %**end of header
+@dircategory System Administration
+@direntry
+* bcron: (bcron). Bruce Guenter
+@end direntry
+
+
@ifinfo
Copyright @copyright{} 2004 Bruce Guenter
@end ifinfo
@@ -24,10 +30,10 @@ This document explains ...
@node Top, Introduction, (dir), (dir)
@menu
-* Introduction::
-* Design Notes::
-* Configuration::
-* Implementation Notes::
+* Introduction::
+* Design Notes::
+* Configuration::
+* Implementation Notes::
@end menu
@c ****************************************************************************
@@ -37,20 +43,20 @@ This document explains ...
Name comes from: Bruce's / Better / Busy cron.
@menu
-* Problems::
-* Requirements::
-* Design Choices::
-* vixie-cron Patches::
+* Problems::
+* Requirements::
+* Design Choices::
+* vixie-cron Patches::
@end menu
@node Problems, Requirements, Introduction, Introduction
@section Problems With Other cron Systems
@menu
-* Problems with vixie-cron::
-* Problems with fcron::
-* Problems with anacron::
-* Problems with dcron::
+* Problems with vixie-cron::
+* Problems with fcron::
+* Problems with anacron::
+* Problems with dcron::
@end menu
@node Problems with vixie-cron, Problems with fcron, Problems, Problems
@@ -321,10 +327,10 @@ backwards adjustments in the clock time.
@chapter Design Notes
@menu
-* Fundamental Operations::
-* Programs::
-* Files::
-* Inter-Process Communication::
+* Fundamental Operations::
+* Programs::
+* Files::
+* Inter-Process Communication::
@end menu
@node Fundamental Operations, Programs, Design Notes, Design Notes
@@ -393,7 +399,7 @@ Watches for changes to the system crontabs and notifies
@section Files
@menu
-* File Hierarchy::
+* File Hierarchy::
@end menu
@node File Hierarchy, , Files, Files
@@ -486,8 +492,8 @@ packet of length @var{N} is encoded as the ASCII decimal value of
simply a series of non-NUL bytes terminated by a NUL byte.
@menu
-* Job Submission Protocol::
-* bcron-exec Protocol::
+* Job Submission Protocol::
+* bcron-exec Protocol::
@end menu
@node Job Submission Protocol, bcron-exec Protocol, Inter-Process Communication, Inter-Process Communication
@@ -551,7 +557,7 @@ Output packets are sent asynchronously with respect to input packets.
@chapter Configuration
@menu
-* Environment Variables::
+* Environment Variables::
@end menu
@node Environment Variables, , Configuration, Configuration
@@ -586,7 +592,7 @@ Defaults to @file{/var/run/bcron-spool}.
@chapter Implementation Notes
@menu
-* Job Scheduler::
+* Job Scheduler::
@end menu
@node Job Scheduler, , Implementation Notes, Implementation Notes
|