Skip to content

Commit b020ccc

Browse files
authored
Merge pull request #292 from SUSE/version-1.1.0
Bump to version 1.1.0
2 parents 49716de + c4e0790 commit b020ccc

File tree

6 files changed

+9
-29
lines changed

6 files changed

+9
-29
lines changed

MANUAL.md

Lines changed: 4 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ You can install and run this wizard like this:
3434
Use the `--csv` flag to output the list in CSV format.
3535

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

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

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

4545
`rmt-cli products enable 1575`
4646

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

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

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

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

5858
`rmt-cli products disable 1575`
5959

60-
`rmt-cli products disable SLES/15/x86_64,1743`
61-
62-
`rmt-cli products disable --all-modules SLES/15`
60+
`rmt-cli products disable SLES/15/x86_64 1743`
6361

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

7876
`rmt-cli repos enable 2526 3263`
7977

80-
`rmt-cli repos enable 2526,3263`
81-
82-
`rmt-cli repos enable "2526,3263"`
83-
8478
* `rmt-cli repos disable <id>...`:
8579
Disable mirroring of repositories by a list of repository IDs
8680

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

9185
`rmt-cli repos disable 2526 3263`
9286

93-
`rmt-cli repos disable 2526,3263`
94-
95-
`rmt-cli repos disable "2526,3263"`
96-
9787
* `rmt-cli mirror`:
9888
In its default configuration, RMT mirrors its enabled product repositories automatically once every night.
9989
This command starts this mirroring process manually.

lib/rmt.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module RMT
2-
VERSION ||= '1.1.0.rc1'.freeze
2+
VERSION ||= '1.1.0'.freeze
33

44
DEFAULT_USER = '_rmt'.freeze
55
DEFAULT_GROUP = 'nginx'.freeze

lib/rmt/cli/products.rb

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def list
7676
7777
`rmt-cli products enable 1575`
7878
79-
`rmt-cli products enable SLES/15/x86_64,1743`
79+
`rmt-cli products enable SLES/15/x86_64 1743`
8080
8181
`rmt-cli products enable --all-modules SLES/15`
8282
REPOS
@@ -95,9 +95,7 @@ def enable(*targets)
9595
9696
`rmt-cli products disable 1575`
9797
98-
`rmt-cli products disable SLES/15/x86_64,1743`
99-
100-
`rmt-cli products disable --all-modules SLES/15`
98+
`rmt-cli products disable SLES/15/x86_64 1743`
10199
REPOS
102100
)
103101
def disable(*targets)

lib/rmt/cli/repos.rb

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,6 @@ def list
2727
`rmt-cli repos enable 2526`
2828
2929
`rmt-cli repos enable 2526 3263`
30-
31-
`rmt-cli repos enable 2526,3263`
32-
33-
`rmt-cli repos enable "2526,3263"`
3430
REPOS
3531
)
3632
def enable(*ids)
@@ -46,10 +42,6 @@ def enable(*ids)
4642
`rmt-cli repos disable 2526`
4743
4844
`rmt-cli repos disable 2526 3263`
49-
50-
`rmt-cli repos disable 2526,3263`
51-
52-
`rmt-cli repos disable "2526,3263"`
5345
REPOS
5446
)
5547
def disable(*ids)

package/rmt-server.changes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
-------------------------------------------------------------------
22
Thu Dec 6 15:00:00 UTC 2018 - tmuntaner@suse.com
33

4-
- Version 1.1.0.rc1
4+
- Version 1.1.0
55

66
-------------------------------------------------------------------
77
Wed Dec 5 14:30:00 UTC 2018 - tmuntaner@suse.com

package/rmt-server.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
%define is_sle_12_family 1
2727
%endif
2828
Name: rmt-server
29-
Version: 1.1.0.rc1
29+
Version: 1.1.0
3030
Release: 0
3131
Summary: Repository mirroring tool and registration proxy for SCC
3232
License: GPL-2.0-or-later

0 commit comments

Comments
 (0)