Skip to content

Commit

Permalink
Updated README
Browse files Browse the repository at this point in the history
  • Loading branch information
ggatward committed Dec 12, 2017
1 parent ad50691 commit be91523
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 10 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [Unreleased]
### Fixed
- Fix unreferenced var in check_disk_space function
- Various minor README corrections


## [1.2.1] - 2017-12-11
Expand Down
21 changes: 11 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,10 +111,10 @@ is exported by default, meaning that there is no specific requirement to create
lifecycle environments or Content Views on the sync host. If there is a requirement
to export only certain repositories, this can also be specified using additional
configuration files. The following export types can be performed:
* A full export (-a)
* An incremental export of content since the last successful export (-i)
* An incremental export of content from a given date (-s)
* Export of a limited repository set (-e) defined by config file (see below)
* A full export (-a)
* An incremental export of content since the last successful export (-i)
* An incremental export of content from a given date (-s)
* Export of a limited repository set (-e) defined by config file (see below)

By default, the exported RPMs are verified for GPG integrity before being
added to a chunked tar archive, with each part of the archive being sha256sum'd
Expand Down Expand Up @@ -264,7 +264,7 @@ these warnings.

### Help Output
```
usage: sat_import.py [-h] [-o ORG] -d DATE [-n] [-r] [-l] [-L] [-f]
usage: sat_import.py [-h] [-o ORG] -d DATE [-n] [-r] [-l] [-L] [-c] [-f] [--fixhistory]
Performs Import of Default Content View.
Expand Down Expand Up @@ -314,7 +314,7 @@ puppet-forge-server:
```

```
usage: push_puppetforge.py [-h] [-o ORG] [-r REPO] [-s SERVER] [-m MODULEPATH] [-u USER]
usage: push_puppetforge.py [-h] [-o ORG] [-r REPO] [-t TYPE] [-s SERVER] [-m MODULEPATH] [-u USER]
Exports puppet modules in puppet-forge-server format.
Expand Down Expand Up @@ -348,9 +348,9 @@ This script removes orphaned versions of either all or nominated content views.
This should be run periodically to clean out old/unused content view data from
the mongo database and improve the responsiveness of the Satellite server.
Any orphaned versions older than the last in-use version are purged (orphans
between in-use versions will NOT be purged). There is a keep (-k) option that
allows a specific number of versions older than the last in-use to be kept as
well, allowing for possible rollback of versions.
between in-use versions will NOT be purged, unless the cleanall (-c) option is used).
There is a keep (-k) option that allows a specific number of versions older than the
last in-use to be kept as well, allowing for possible rollback of versions.

Content views to clean can be defined by either:
- Specific content views defined in the main config file
Expand All @@ -373,7 +373,7 @@ specified number of versions beyond the oldest in-use.


```
usage: clean_content_views.py [-h] [-o ORG] [-a] [-d]
usage: clean_content_views.py [-h] [-o ORG] [-a] [-c] [-d]
Cleans content views for specified organization.
Expand All @@ -382,6 +382,7 @@ optional arguments:
-o ORG, --org ORG Organization (Uses default if not specified)
-k KEEP, --keep KEEP How many old versions to keep (only used with -a)
-a, --all Clean ALL content views
-c, --cleanall Remove orphan versions between in-use views
-d, --dryrun Dry Run - Only show what will be cleaned
```

Expand Down

0 comments on commit be91523

Please sign in to comment.