Add man pages for testing tools

Add man pages for ipa-run-tests, ipa-test-task, and ipa-test-config.

https://fedorahosted.org/freeipa/ticket/3855 (part 5)
This commit is contained in:
Petr Viktorin
2013-08-13 18:32:36 +02:00
parent a3d489443c
commit f742520760
8 changed files with 405 additions and 1 deletions

18
ipatests/man/Makefile.am Normal file
View File

@@ -0,0 +1,18 @@
# This file will be processed with automake-1.7 to create Makefile.in
AUTOMAKE_OPTIONS = 1.7
NULL=
man1_MANS = \
ipa-run-tests.1 \
ipa-test-config.1 \
ipa-test-task.1 \
$(NULL)
install-data-hook:
@for i in $(man1_MANS) ; do gzip -f $(DESTDIR)$(man1dir)/$$i ; done
MAINTAINERCLEANFILES = \
Makefile.in \
$(NULL)