Skip to content

Commit

Permalink
Merge pull request #292 from SUSE/version-1.1.0
Browse files Browse the repository at this point in the history
Bump to version 1.1.0
  • Loading branch information
tmuntaner authored Dec 7, 2018
2 parents 49716de + c4e0790 commit b020ccc
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 29 deletions.
18 changes: 4 additions & 14 deletions MANUAL.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ You can install and run this wizard like this:
Use the `--csv` flag to output the list in CSV format.

* `rmt-cli products enable <id | string>...`:
Enables mandatory repositories of a single product by a list of product IDs or product strings.
Enable mirroring of product repositories by a list of product IDs or product strings.

Use the `--all-modules` flag to enable all free modules for a product.

Expand All @@ -44,11 +44,11 @@ You can install and run this wizard like this:

`rmt-cli products enable 1575`

`rmt-cli products enable SLES/15/x86_64,1743`
`rmt-cli products enable SLES/15/x86_64 1743`

`rmt-cli products enable --all-modules SLES/15`

* `rmt-cli products disable <id | string>`...:
* `rmt-cli products disable <id | string>...`:
Disable mirroring of product repositories by a list of product IDs or product strings.

Examples:
Expand All @@ -57,9 +57,7 @@ You can install and run this wizard like this:

`rmt-cli products disable 1575`

`rmt-cli products disable SLES/15/x86_64,1743`

`rmt-cli products disable --all-modules SLES/15`
`rmt-cli products disable SLES/15/x86_64 1743`

* `rmt-cli repos list [--all] [--csv]`:
Lists the repositories that are enabled for mirroring.
Expand All @@ -77,10 +75,6 @@ You can install and run this wizard like this:

`rmt-cli repos enable 2526 3263`

`rmt-cli repos enable 2526,3263`

`rmt-cli repos enable "2526,3263"`

* `rmt-cli repos disable <id>...`:
Disable mirroring of repositories by a list of repository IDs

Expand All @@ -90,10 +84,6 @@ You can install and run this wizard like this:

`rmt-cli repos disable 2526 3263`

`rmt-cli repos disable 2526,3263`

`rmt-cli repos disable "2526,3263"`

* `rmt-cli mirror`:
In its default configuration, RMT mirrors its enabled product repositories automatically once every night.
This command starts this mirroring process manually.
Expand Down
2 changes: 1 addition & 1 deletion lib/rmt.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module RMT
VERSION ||= '1.1.0.rc1'.freeze
VERSION ||= '1.1.0'.freeze

DEFAULT_USER = '_rmt'.freeze
DEFAULT_GROUP = 'nginx'.freeze
Expand Down
6 changes: 2 additions & 4 deletions lib/rmt/cli/products.rb
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def list
`rmt-cli products enable 1575`
`rmt-cli products enable SLES/15/x86_64,1743`
`rmt-cli products enable SLES/15/x86_64 1743`
`rmt-cli products enable --all-modules SLES/15`
REPOS
Expand All @@ -95,9 +95,7 @@ def enable(*targets)
`rmt-cli products disable 1575`
`rmt-cli products disable SLES/15/x86_64,1743`
`rmt-cli products disable --all-modules SLES/15`
`rmt-cli products disable SLES/15/x86_64 1743`
REPOS
)
def disable(*targets)
Expand Down
8 changes: 0 additions & 8 deletions lib/rmt/cli/repos.rb
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,6 @@ def list
`rmt-cli repos enable 2526`
`rmt-cli repos enable 2526 3263`
`rmt-cli repos enable 2526,3263`
`rmt-cli repos enable "2526,3263"`
REPOS
)
def enable(*ids)
Expand All @@ -46,10 +42,6 @@ def enable(*ids)
`rmt-cli repos disable 2526`
`rmt-cli repos disable 2526 3263`
`rmt-cli repos disable 2526,3263`
`rmt-cli repos disable "2526,3263"`
REPOS
)
def disable(*ids)
Expand Down
2 changes: 1 addition & 1 deletion package/rmt-server.changes
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
-------------------------------------------------------------------
Thu Dec 6 15:00:00 UTC 2018 - [email protected]

- Version 1.1.0.rc1
- Version 1.1.0

-------------------------------------------------------------------
Wed Dec 5 14:30:00 UTC 2018 - [email protected]
Expand Down
2 changes: 1 addition & 1 deletion package/rmt-server.spec
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
%define is_sle_12_family 1
%endif
Name: rmt-server
Version: 1.1.0.rc1
Version: 1.1.0
Release: 0
Summary: Repository mirroring tool and registration proxy for SCC
License: GPL-2.0-or-later
Expand Down

0 comments on commit b020ccc

Please sign in to comment.