-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
14 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,6 +21,8 @@ Unregister system from the Red Hat Access Insights Service | |
.IP "--update-collection-rules" | ||
Refresh collection rules from Red Hat | ||
Set Red Hat Access Insights to collect data once per week | ||
.IP "--display-name" | ||
Display name for this system. MUST be used with --register. | ||
.IP "--group=GROUP" | ||
Group to add this system to during registration | ||
.IP "--retry=RETRIES" | ||
|
@@ -55,6 +57,10 @@ Test connectivity to Red Hat | |
Forcefully reregister this machine to Red Hat. Use only as directed. | ||
.IP "--verbose" | ||
DEBUG output to stdout | ||
.IP "--support" | ||
Create a support logfile for Red Hat Insights | ||
.IP "--status" | ||
Check this machine's registration status with Red Hat Insights | ||
.IP "--no-gpg" | ||
Do not verify GPG signature | ||
.IP "--no-upload" | ||
|
@@ -68,4 +74,4 @@ Do not delete archive after upload | |
.BR redhat-access-insights.conf (5) | ||
|
||
.SH "AUTHOR" | ||
Jeremy Crafts <[email protected]>, Dan Varga <[email protected]>\& | ||
Richard Brantley <[email protected]>, Jeremy Crafts <[email protected]>, Dan Varga <[email protected]>\& |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -61,4 +61,4 @@ URL for the proxy | |
.BR redhat-access-insights (8) | ||
|
||
.SH "AUTHOR" | ||
Jeremy Crafts <[email protected]>, Dan Varga <[email protected]> | ||
Richard Brantley <[email protected]>, Jeremy Crafts <[email protected]>, Dan Varga <[email protected]> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
Name: redhat-access-insights | ||
Summary: Uploads Insights information to Red Hat on a periodic basis | ||
Version: 1.0.13 | ||
Release: 3%{?dist} | ||
Release: 4%{?dist} | ||
Source0: https://github.com/redhataccess/insights-client/archive/redhat-access-insights-%{version}.tar.gz | ||
Epoch: 0 | ||
License: GPLv2+ | ||
|
@@ -83,6 +83,9 @@ test "x$RPM_BUILD_ROOT" != "x" && rm -rf $RPM_BUILD_ROOT | |
/usr/share/man/man5/*.5.gz | ||
|
||
%changelog | ||
* Tue Jan 17 2017 Richard Brantley <[email protected]> - 1.0.13-4 | ||
- Update some man page verbiage | ||
|
||
* Fri Jan 13 2017 Richard Brantley <[email protected]> - 1.0.13-3 | ||
- Adds Machine ID and Account Numbers to STDOUT and logs | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,8 +30,8 @@ def get_version(): | |
setup( | ||
name="redhat-access-insights", | ||
version=VERSION, | ||
author="Jeremy Crafts <[email protected]>, Dan Varga <[email protected]>", | ||
author_email="[email protected]", | ||
author="Richard Brantley <[email protected]>, Jeremy Crafts <[email protected]>, Dan Varga <[email protected]>", | ||
author_email="[email protected], [email protected]", | ||
license="GPL", | ||
packages=find_packages(), | ||
install_requires=['requests'], | ||
|