public inbox for systemtap@sourceware.org
 help / color / mirror / Atom feed
* [PATCH 2/3] man/Makefile.am: add stap-report.1
  2013-05-22  6:40 [PATCH 1/3] man: add man page for stap-report(1) Timo Juhani Lindfors
  2013-05-22  6:40 ` [PATCH 3/3] man/Makefile.in: regenerate Timo Juhani Lindfors
@ 2013-05-22  6:40 ` Timo Juhani Lindfors
  1 sibling, 0 replies; 3+ messages in thread
From: Timo Juhani Lindfors @ 2013-05-22  6:40 UTC (permalink / raw)
  To: systemtap; +Cc: Timo Juhani Lindfors

---
 man/Makefile.am |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/man/Makefile.am b/man/Makefile.am
index 4ad0209..724e720 100644
--- a/man/Makefile.am
+++ b/man/Makefile.am
@@ -19,7 +19,7 @@ install-data-local:
 	done
 
 if BUILD_TRANSLATOR
-man_MANS += stap.1 stap-prep.1
+man_MANS += stap.1 stap-prep.1 stap-report.1
 endif
 
 if HAVE_NSS
-- 
1.7.2.5

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [PATCH 1/3] man: add man page for stap-report(1)
@ 2013-05-22  6:40 Timo Juhani Lindfors
  2013-05-22  6:40 ` [PATCH 3/3] man/Makefile.in: regenerate Timo Juhani Lindfors
  2013-05-22  6:40 ` [PATCH 2/3] man/Makefile.am: add stap-report.1 Timo Juhani Lindfors
  0 siblings, 2 replies; 3+ messages in thread
From: Timo Juhani Lindfors @ 2013-05-22  6:40 UTC (permalink / raw)
  To: systemtap; +Cc: Timo Juhani Lindfors

---
 man/stap-report.1 |   54 +++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 54 insertions(+), 0 deletions(-)
 create mode 100644 man/stap-report.1

diff --git a/man/stap-report.1 b/man/stap-report.1
new file mode 100644
index 0000000..41c544e
--- /dev/null
+++ b/man/stap-report.1
@@ -0,0 +1,54 @@
+.\" -*- nroff -*-
+.TH STAP\-REPORT 1
+.SH NAME
+stap\-report \- collect system information that is useful for debugging systemtap bugs
+
+.\" macros
+.de SAMPLE
+.br
+.RS
+.nf
+.nh
+..
+.de ESAMPLE
+.hy
+.fi
+.RE
+..
+
+.SH SYNOPSIS
+
+.br
+.B stap\-report
+
+.SH DESCRIPTION
+
+The stap\-report executable collects system information that is useful
+for debugging systemtap bugs. It is a good idea to include such a
+report in bug reports especially if you send them directly to the
+upstream. stap\-report can be run either as a normal user or as
+root. The report will be more complete if stap\-report is run as root.
+
+.SH EXAMPLES
+.SAMPLE
+$ stap-report > report.txt
+$ head report.txt
+== id ==
+uid=1000(user) gid=1000(user) groups=122(stapdev),123(stapusr),129(stapsys)
+== stap -V ==
+Systemtap translator/driver (version 2.2.1/0.153, Debian version 2.2.1-1)
+Copyright (C) 2005-2013 Red Hat, Inc. and others
+This is free software; see the source for copying conditions.
+enabled features: AVAHI LIBSQLITE3 NSS TR1_UNORDERED_MAP NLS
+== which stap ==
+/usr/bin/stap
+== locate --regex '/stap(run)?$' | xargs ls -ald ==
+
+.SH SEE ALSO
+.IR stap (1)
+
+.SH BUGS
+Use the Bugzilla link of the project web page or our mailing list.
+.nh
+.BR http://sourceware.org/systemtap/ , <systemtap@sourceware.org> .
+.hy
-- 
1.7.2.5

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [PATCH 3/3] man/Makefile.in: regenerate
  2013-05-22  6:40 [PATCH 1/3] man: add man page for stap-report(1) Timo Juhani Lindfors
@ 2013-05-22  6:40 ` Timo Juhani Lindfors
  2013-05-22  6:40 ` [PATCH 2/3] man/Makefile.am: add stap-report.1 Timo Juhani Lindfors
  1 sibling, 0 replies; 3+ messages in thread
From: Timo Juhani Lindfors @ 2013-05-22  6:40 UTC (permalink / raw)
  To: systemtap; +Cc: Timo Juhani Lindfors

---
 man/Makefile.in |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/man/Makefile.in b/man/Makefile.in
index fd91fc2..241fccf 100644
--- a/man/Makefile.in
+++ b/man/Makefile.in
@@ -52,7 +52,7 @@ POST_UNINSTALL = :
 build_triplet = @build@
 host_triplet = @host@
 target_triplet = @target@
-@BUILD_TRANSLATOR_TRUE@am__append_1 = stap.1 stap-prep.1
+@BUILD_TRANSLATOR_TRUE@am__append_1 = stap.1 stap-prep.1 stap-report.1
 @BUILD_SERVER_TRUE@@HAVE_NSS_TRUE@am__append_2 = stap-server.8
 subdir = man
 DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \
-- 
1.7.2.5

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2013-05-22  6:40 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-05-22  6:40 [PATCH 1/3] man: add man page for stap-report(1) Timo Juhani Lindfors
2013-05-22  6:40 ` [PATCH 3/3] man/Makefile.in: regenerate Timo Juhani Lindfors
2013-05-22  6:40 ` [PATCH 2/3] man/Makefile.am: add stap-report.1 Timo Juhani Lindfors

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).