Revision de8eea3e

b/.gitignore
70 70
/man/*.[0-9]
71 71
/man/*.html
72 72
/man/*.in
73
/man/footer.man
73 74

  
74 75
# scripts
75 76
/scripts/gnt-backup
b/Makefile.am
365 365
	test/mocks.py \
366 366
	$(dist_TESTS) \
367 367
	$(TEST_FILES) \
368
	man/footer.sgml \
368
	man/footer.sgml man/footer.rst \
369 369
	$(mansgml) \
370 370
	$(maninput) \
371 371
	qa/ganeti-qa.py \
......
403 403
manhtml = $(patsubst %.sgml,%.html,$(mansgml))
404 404
maninput = \
405 405
	$(patsubst %.7,%.7.in,$(patsubst %.8,%.8.in,$(man_MANS))) \
406
	$(patsubst %.html,%.html.in,$(manhtml))
406
	$(patsubst %.html,%.html.in,$(manhtml)) \
407
	man/footer.man
407 408

  
408 409
TEST_FILES = \
409 410
	test/data/bdev-drbd-8.0.txt \
......
494 495
	$(noinst_PYTHON)
495 496

  
496 497
srclink_files = \
497
	man/footer.sgml \
498
	man/footer.sgml man/footer.rst \
498 499
	test/check-cert-expired_unittest.bash \
499 500
	test/daemon-util_unittest.bash \
500 501
	test/ganeti-cleaner_unittest.bash \
......
540 541
	@test -n "$(DOT)" || { echo 'dot' not found during configure; exit 1; }
541 542
	$(DOT) -Tpng -o $@ $<
542 543

  
544
man/footer.man: man/footer.rst
545
	@test -n "$(PANDOC)" || \
546
	  { echo 'pandoc' not found during configure; exit 1; }
547
	$(PANDOC) -f rst -t man -o $@ $<
548

  
543 549
man/%.7.in man/%.8.in: man/%.sgml man/footer.sgml $(DOCBOOK_WRAPPER)
544 550
	@test -n "$(DOCBOOK2MAN)" || \
545 551
	  { echo 'docbook2man' not found during configure; exit 1; }
b/man/footer.rst
1
REPORTING BUGS
2
--------------
3

  
4
Report bugs to `project website <http://code.google.com/p/ganeti/>`_
5
or contact the developers using the `Ganeti mailing list
6
<ganeti@googlegroups.com>`_.
7

  
8
SEE ALSO
9
--------
10

  
11
Ganeti overview and specifications: **ganeti**(7) (general overview),
12
**ganeti-os-interface**(7) (guest OS definitions).
13

  
14
Ganeti commands: **gnt-cluster**(8) (cluster-wide commands),
15
**gnt-job**(8) (job-related commands), **gnt-node**(8) (node-related
16
commands), **gnt-instance**(8) (instance commands), **gnt-os**(8)
17
(guest OS commands), **gnt-backup**(8) (instance import/export
18
commands), **gnt-debug**(8) (debug commands).
19

  
20
Ganeti daemons: **ganeti-watcher**(8) (automatic instance restarter),
21
**ganeti-cleaner**(8) (job queue cleaner), **ganeti-noded**(8) (node
22
daemon), **ganeti-masterd**(8) (master daemon), **ganeti-rapi**(8)
23
(remote API daemon).
24

  
25
COPYRIGHT
26
---------
27

  
28
Copyright (C) 2006, 2007, 2008, 2009, 2010 Google Inc. Permission
29
is granted to copy, distribute and/or modify under the terms of the
30
GNU General Public License as published by the Free Software
31
Foundation; either version 2 of the License, or (at your option)
32
any later version.
33

  
34
On Debian systems, the complete text of the GNU General Public
35
License can be found in /usr/share/common-licenses/GPL.

Also available in: Unified diff