Skip to content

Commit

Permalink
Rename recap(5) to recap.conf(5)
Browse files Browse the repository at this point in the history
  • Loading branch information
jamrok committed Jan 4, 2019
1 parent bfb1124 commit 75e7faa
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 14 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ install-systemd: recap.systemd

install-man:
@echo "Installing man pages..."
@install -Dm0644 src/recap.5 $(DESTDIR)$(MANDIR)/man5/recap.5
@install -Dm0644 src/recap.conf.5 $(DESTDIR)$(MANDIR)/man5/recap.conf.5
@install -Dm0644 src/recap.8 $(DESTDIR)$(MANDIR)/man8/recap.8
@install -Dm0644 src/recaplog.8 $(DESTDIR)$(MANDIR)/man8/recaplog.8
@install -Dm0644 src/recaptool.8 $(DESTDIR)$(MANDIR)/man8/recaptool.8
Expand Down Expand Up @@ -140,7 +140,7 @@ uninstall-systemd:

uninstall-man:
@echo "Removing man pages..."
@rm -f $(DESTDIR)$(MANDIR)/man5/recap.5
@rm -f $(DESTDIR)$(MANDIR)/man5/recap.conf.5
@rm -f $(DESTDIR)$(MANDIR)/man8/recap.8
@rm -f $(DESTDIR)$(MANDIR)/man8/recaplog.8
@rm -f $(DESTDIR)$(MANDIR)/man8/recaptool.8
Expand Down
2 changes: 1 addition & 1 deletion src/recap.8
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ Bugs and issues to be submitted via github
.SH AUTHOR
The recap scripts are maintained by Rackspace, the list of contributors is available at https://github.com/rackerlabs/recap/blob/master/CHANGELOG.md#contributors.
.SH "SEE ALSO"
.BR recap (5),
.BR recap.conf (5),
.BR recaplog (8),
.BR crontab (5),
.BR systemd.timer (5)
12 changes: 5 additions & 7 deletions src/recap.5 → src/recap.conf.5
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,14 @@
.\" Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
.\" Boston, MA 02110-1301 USA.
.\"
.TH RECAP 5 "July 7, 2017"
.TH RECAP.CONF 5 "July 7, 2017"
.SH NAME
recap \- dumps periodic information about running applications and resource usage
.SH SYNOPSIS
.BI "recap"
recap.conf \- recap configuration file
.SH DESCRIPTION
recap is a user\-configurable script that can be run once, or run periodically out of cron to dump information about running processes and resource usage. It is useful on servers that have periodic, mysterious performance anomalies for tracking down what may be going on at the time of any particular incident.
The
.IR /etc/recap.conf
file contains configuration information for recap. It stores the default values that determine which reports get generated and how many reports are generated.

The default values for which reports are generated and how many reports are stored can be
.IR /etc/recap.conf "."
The output files from the script are written to
.IR BASEDIR "."
.SH OPTIONS
Expand Down
2 changes: 1 addition & 1 deletion src/recaplog.8
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ Bugs and issues to be submitted via github
The recap scripts are maintained by Rackspace, the list of contributors is available at https://github.com/rackerlabs/recap/blob/master/CHANGELOG.md#contributors.

.SH "SEE ALSO"
.BR recap (5),
.BR recap.conf (5),
.BR recap (8),
.BR crontab (5),
.BR systemd.timer (5)
Expand Down
2 changes: 1 addition & 1 deletion src/recaptool.8
Original file line number Diff line number Diff line change
Expand Up @@ -142,5 +142,5 @@ Bugs and issues to be submitted via github
The recap scripts are maintained by Rackspace, the list of contributors is available at https://github.com/rackerlabs/recap/blob/master/CHANGELOG.md#contributors.

.SH "SEE ALSO"
.BR recap (5),
.BR recap.conf (5),
.BR recap (8),
2 changes: 1 addition & 1 deletion src/utils/recap-onboot.service.in
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[Unit]
Description=recap on boot
Documentation=man:recap(5) man:recap(8)
Documentation=man:recap.conf(5) man:recap(8)
After=network-online.target
Wants=network-online.target

Expand Down
2 changes: 1 addition & 1 deletion src/utils/recap.service.in
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[Unit]
Description=recap
Documentation=man:recap(5) man:recap(8)
Documentation=man:recap.conf(5) man:recap(8)
After=network-online.target
Wants=network-online.target

Expand Down

0 comments on commit 75e7faa

Please sign in to comment.