/mandos/trunk

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/trunk

« back to all changes in this revision

Viewing changes to mandos-keygen.xml

  • Committer: Teddy Hogeborn
  • Date: 2008-08-18 05:24:20 UTC
  • Revision ID: teddy@fukt.bsnet.se-20080818052420-ab5eurrioz8n2qy6
* Makefile: Bug fix: fixed creation of man pages in "plugins.d".

* mandos-keygen Bug fix: make the --expire option modify
                KEYEXPIRE, not KEYCOMMENT.  Use the "--no-options"
                option to gpg when exporting keys from the temporary
                key ring files.

* mandos-keygen.xml (EXIT STATUS): Filled in.
  (ENVIRONMENT): New section, documenting use of TMPDIR.
  (FILES): Document use of key files and /tmp.
  (BUGS): Filled in.
  (EXAMPLE): Added two examples.
  (SECURITY): Added some text.

* plugins.d/password-prompt.xml (NOTES): Removed, since this is
                                         created automatically for
                                         footnotes.
  (ENVIRONMENT, FILES): Added empty sections.
  (EXAMPLES): Renamed to "EXAMPLE", as per man-pages(7).

* plugins.d/password-request.xml: Reordered sections.
  (ENVIRONMENT): New empty section.
  (EXAMPLES): Renamed to "EXAMPLE", as per man-pages(7).

Show diffs side-by-side

added added

removed removed

Lines of Context:
279
279
  <refsect1 id="exit_status">
280
280
    <title>EXIT STATUS</title>
281
281
    <para>
 
282
      The exit status will be 0 if new keys were successfully created,
 
283
      otherwise not.
282
284
    </para>
283
285
  </refsect1>
284
286
  
 
287
  <refsect1 id="environment">
 
288
    <title>ENVIRONMENT</title>
 
289
    <variablelist>
 
290
      <varlistentry>
 
291
        <term><varname>TMPDIR</varname></term>
 
292
        <listitem>
 
293
          <para>
 
294
            If set, temporary files will be created here. See
 
295
            <citerefentry><refentrytitle>mktemp</refentrytitle>
 
296
            <manvolnum>1</manvolnum></citerefentry>.
 
297
          </para>
 
298
        </listitem>
 
299
      </varlistentry>
 
300
    </variablelist>
 
301
  </refsect1>
 
302
  
285
303
  <refsect1 id="file">
286
304
    <title>FILES</title>
287
305
    <para>
 
306
      Use the <option>--dir</option> option to change where
 
307
      <command>&COMMANDNAME;</command> will write the key files.  The
 
308
      default file names are shown here.
288
309
    </para>
 
310
    <variablelist>
 
311
      <varlistentry>
 
312
        <term><filename>/etc/mandos/seckey.txt</filename></term>
 
313
        <listitem>
 
314
          <para>
 
315
            OpenPGP secret key file which will be created or
 
316
            overwritten.
 
317
          </para>
 
318
        </listitem>
 
319
      </varlistentry>
 
320
      <varlistentry>
 
321
        <term><filename>/etc/mandos/pubkey.txt</filename></term>
 
322
        <listitem>
 
323
          <para>
 
324
            OpenPGP public key file which will be created or
 
325
            overwritten.
 
326
          </para>
 
327
        </listitem>
 
328
      </varlistentry>
 
329
      <varlistentry>
 
330
        <term><filename>/tmp</filename></term>
 
331
        <listitem>
 
332
          <para>
 
333
            Temporary files will be written here if
 
334
            <varname>TMPDIR</varname> is not set.
 
335
          </para>
 
336
        </listitem>
 
337
      </varlistentry>
 
338
    </variablelist>
289
339
  </refsect1>
290
340
 
291
341
  <refsect1 id="bugs">
292
342
    <title>BUGS</title>
293
343
    <para>
 
344
      None are known at this time.
294
345
    </para>
295
346
  </refsect1>
296
347
 
297
348
  <refsect1 id="example">
298
349
    <title>EXAMPLE</title>
299
 
    <para>
300
 
    </para>
 
350
    <informalexample>
 
351
      <para>
 
352
        Normal invocation needs no options:
 
353
      </para>
 
354
      <para>
 
355
        <userinput>mandos-keygen</userinput>
 
356
      </para>
 
357
    </informalexample>
 
358
    <informalexample>
 
359
      <para>
 
360
        Create keys in another directory and of another type.  Force
 
361
        overwriting old key files:
 
362
      </para>
 
363
      <para>
 
364
 
 
365
<!-- do not wrap this line -->
 
366
<userinput>mandos-keygen --dir ~/keydir --type RSA --force</userinput>
 
367
 
 
368
      </para>
 
369
    </informalexample>
301
370
  </refsect1>
302
371
 
303
372
  <refsect1 id="security">
304
373
    <title>SECURITY</title>
305
374
    <para>
 
375
      The <option>--type</option> and <option>--length</option>
 
376
      options can be used to create keys of insufficient security.  If
 
377
      in doubt, leave them to the default values.
 
378
    </para>
 
379
    <para>
 
380
      The key expire time is not guaranteed to be honored by
 
381
      <citerefentry><refentrytitle>mandos</refentrytitle>
 
382
      <manvolnum>8</manvolnum></citerefentry>.
306
383
    </para>
307
384
  </refsect1>
308
385