foreman_scc_manager 1.8.10 → 1.8.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +12 -10
- data/app/lib/scc_manager.rb +3 -8
- data/config/routes.rb +1 -1
- data/db/migrate/20210713092440_add_permissions.rb +8 -8
- data/lib/foreman_scc_manager/engine.rb +22 -4
- data/lib/foreman_scc_manager/version.rb +1 -1
- data/locale/de/foreman_scc_manager.edit.po +125 -128
- data/locale/en/foreman_scc_manager.edit.po +99 -103
- metadata +10 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f09d1fba685e2d82d20dcc19d519dfce35a1b6bd04b6c64353e2e40519b30fc9
|
4
|
+
data.tar.gz: afdb4e0f4c17546b8984c7b29d3bebfce35fa9043fb308a60423c8f113df2b84
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 93779edde27305d62942cdcce50ba8dd548af379f0ff9b88fd7fe800b79bb3de41c58f6e873b116451ba20fbd65c89f6ab0428fbe7f8c7f25f07bc26982054f1
|
7
|
+
data.tar.gz: 0c58463cfd08bf269ae9c3a6ba2b0c833f1327d5985038cf32b38ff60a3a307377498759ca6cb11734de7a31122b2743bd9a8cb84a454cc8b6167682925c14a4
|
data/README.md
CHANGED
@@ -1,13 +1,14 @@
|
|
1
|
-
|
1
|
+

|
2
|
+

|
3
|
+
[](https://badge.fury.io/rb/foreman_scc_manager)
|
2
4
|
|
3
|
-
#
|
5
|
+
# Foreman SCC Manager
|
4
6
|
|
5
|
-
Foreman plugin to sync SUSE Customer Center products and repositories into Katello
|
7
|
+
Foreman plugin to sync SUSE Customer Center products and repositories into Katello.
|
6
8
|
|
7
9
|
## Installation
|
8
10
|
|
9
|
-
See [
|
10
|
-
for how to install Foreman plugins
|
11
|
+
See [Foreman Manual](https://theforeman.org/plugins/#2.Installation) on how to install Foreman plugins.
|
11
12
|
|
12
13
|
## Compatibility
|
13
14
|
|
@@ -27,10 +28,12 @@ for how to install Foreman plugins
|
|
27
28
|
| 1.15 | 3.4 | ~> 1.1.0 |
|
28
29
|
|
29
30
|
## Documentation
|
30
|
-
The plugin documentation can be found at https://docs.orcharhino.com/sources/management_ui/the_content_menu/suse_subscriptions.html.
|
31
31
|
|
32
|
-
|
33
|
-
|
32
|
+
[Plugin documentation](https://docs.orcharhino.com/sources/management_ui/the_content_menu/suse_subscriptions.html)
|
33
|
+
|
34
|
+
## Hammer CLI Extension
|
35
|
+
|
36
|
+
[Hammer CLI for Foreman SCC Manager](https://github.com/ATIX-AG/hammer-cli-foreman-scc-manager)
|
34
37
|
|
35
38
|
## Contributing
|
36
39
|
|
@@ -38,7 +41,7 @@ Fork and send a Pull Request. Thanks!
|
|
38
41
|
|
39
42
|
## Copyright
|
40
43
|
|
41
|
-
Copyright (c) 2021 ATIX AG -
|
44
|
+
Copyright (c) 2021 ATIX AG - https://atix.de
|
42
45
|
|
43
46
|
This program is free software: you can redistribute it and/or modify
|
44
47
|
it under the terms of the GNU General Public License as published by
|
@@ -52,4 +55,3 @@ GNU General Public License for more details.
|
|
52
55
|
|
53
56
|
You should have received a copy of the GNU General Public License
|
54
57
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
55
|
-
|
data/app/lib/scc_manager.rb
CHANGED
@@ -1,14 +1,9 @@
|
|
1
1
|
module SccManager
|
2
2
|
# adapted from https://github.com/SUSE/connect
|
3
3
|
def self.get_scc_data(base_url, rest_url, login, password)
|
4
|
-
if
|
5
|
-
|
6
|
-
uri =
|
7
|
-
|
8
|
-
uri.scheme = URI.parse(proxy_config[:host]).scheme
|
9
|
-
uri.host = URI.parse(proxy_config[:host]).host
|
10
|
-
uri.port = proxy_config[:port].try(:to_s)
|
11
|
-
uri.user = proxy_config[:user]
|
4
|
+
if (proxy_config = ::HttpProxy.default_global_content_proxy)
|
5
|
+
uri = URI(proxy_config[:url])
|
6
|
+
uri.user = proxy_config[:username]
|
12
7
|
uri.password = proxy_config[:password] if uri.user.present?
|
13
8
|
|
14
9
|
RestClient.proxy = uri.to_s
|
data/config/routes.rb
CHANGED
@@ -23,7 +23,7 @@ Rails.application.routes.draw do
|
|
23
23
|
:defaults => { :apiv => 'v2' },
|
24
24
|
:apiv => /v1|v2/,
|
25
25
|
:constraints => ApiConstraints.new(:version => 2, :default => true) do
|
26
|
-
resources :scc_accounts do
|
26
|
+
resources :scc_accounts, except: %i[new edit] do
|
27
27
|
collection do
|
28
28
|
post 'test_connection'
|
29
29
|
get 'auto_complete_search'
|
@@ -1,19 +1,19 @@
|
|
1
1
|
class AddPermissions < ActiveRecord::Migration[6.0]
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
{ 'name' => 'test_connection_scc_accounts', 'resource_type' => 'SccAccount' }
|
2
|
+
PRODUCT_PERMISSION_NAMES = [
|
3
|
+
'view_scc_products',
|
4
|
+
'subscribe_scc_products'
|
6
5
|
].freeze
|
7
6
|
|
8
7
|
def up
|
9
|
-
|
10
|
-
|
8
|
+
Permission.create!(:name => 'test_connection_scc_accounts', :resource_type => 'SccAccount')
|
9
|
+
PRODUCT_PERMISSION_NAMES.each do |p|
|
10
|
+
Permission.create!(:name => p, :resource_type => SccProduct)
|
11
11
|
end
|
12
12
|
end
|
13
13
|
|
14
14
|
def down
|
15
|
-
|
16
|
-
Permission.where(:name => p
|
15
|
+
(PRODUCT_PERMISSION_NAMES + ['test_connection_scc_accounts']).each do |p|
|
16
|
+
Permission.where(:name => p).destroy_all
|
17
17
|
end
|
18
18
|
end
|
19
19
|
end
|
@@ -32,8 +32,8 @@ module ForemanSccManager
|
|
32
32
|
# Add permissions
|
33
33
|
security_block :foreman_scc_manager do
|
34
34
|
permission :view_scc_accounts,
|
35
|
-
{ :scc_accounts => [:show, :index],
|
36
|
-
:'api/v2/scc_accounts' => [:show, :index] },
|
35
|
+
{ :scc_accounts => [:show, :index, :auto_complete_search],
|
36
|
+
:'api/v2/scc_accounts' => [:show, :index, :auto_complete_search] },
|
37
37
|
:resource_type => 'SccAccount'
|
38
38
|
|
39
39
|
permission :use_scc_accounts,
|
@@ -60,15 +60,33 @@ module ForemanSccManager
|
|
60
60
|
{ :scc_accounts => [:sync],
|
61
61
|
:'api/v2/scc_accounts' => [:sync] },
|
62
62
|
:resource_type => 'SccAccount'
|
63
|
+
|
64
|
+
permission :test_connection_scc_accounts,
|
65
|
+
{ :scc_accounts => [:test_connection],
|
66
|
+
:'api/v2/scc_accounts' => [:test_connection] },
|
67
|
+
:resource_type => 'SccAccount'
|
68
|
+
|
69
|
+
permission :view_scc_products,
|
70
|
+
{ :scc_products => [:index, :show],
|
71
|
+
:'api/v2/scc_products' => [:index, :show] },
|
72
|
+
:resource_type => 'SccProduct'
|
73
|
+
|
74
|
+
permission :subscribe_scc_products,
|
75
|
+
{ :scc_products => [:subscribe, :unsubscribe],
|
76
|
+
:'api/v2/scc_products' => [:subscribe, :unsibscribe] },
|
77
|
+
:resource_type => 'SccProduct'
|
63
78
|
end
|
64
79
|
|
65
80
|
# Add a new role called 'SccManager' if it doesn't exist
|
66
81
|
role 'SccManager',
|
67
|
-
%i[view_scc_accounts use_scc_accounts new_scc_accounts edit_scc_accounts
|
82
|
+
%i[view_scc_accounts use_scc_accounts new_scc_accounts edit_scc_accounts
|
83
|
+
delete_scc_accounts sync_scc_accounts test_connection_scc_accounts
|
84
|
+
view_scc_products subscribe_scc_products],
|
68
85
|
'Role granting permissons to manage SUSE Subscriptions'
|
69
86
|
|
70
87
|
role 'SccViewer',
|
71
|
-
%i[view_scc_accounts use_scc_accounts sync_scc_accounts
|
88
|
+
%i[view_scc_accounts use_scc_accounts sync_scc_accounts
|
89
|
+
create_products view_products subscribe_scc_products view_scc_products],
|
72
90
|
'Role granting permissons to view and use SUSE Subscriptions'
|
73
91
|
|
74
92
|
add_all_permissions_to_default_roles
|
@@ -11,13 +11,14 @@
|
|
11
11
|
# Michael Moll, 2019
|
12
12
|
# Lukas K. <kallies@puzzle.ch>, 2019
|
13
13
|
# Markus Bucher <bucher@atix.de>, 2019
|
14
|
+
# Nadja Heitmann <nadjah@atix.de, 2021
|
14
15
|
#
|
15
16
|
msgid ""
|
16
17
|
msgstr ""
|
17
|
-
"Project-Id-Version: foreman_scc_manager 1.7
|
18
|
+
"Project-Id-Version: foreman_scc_manager 1.8.7\n"
|
18
19
|
"Report-Msgid-Bugs-To: \n"
|
19
20
|
"PO-Revision-Date: 2019-10-17 13:28+0000\n"
|
20
|
-
"Last-Translator:
|
21
|
+
"Last-Translator: Nadja Heitmann <nadjah@atix.de>, 2021\n"
|
21
22
|
"Language-Team: German (https://www.transifex.com/foreman/teams/114/de/)\n"
|
22
23
|
"MIME-Version: 1.0\n"
|
23
24
|
"Content-Type: text/plain; charset=UTF-8\n"
|
@@ -27,27 +28,27 @@ msgstr ""
|
|
27
28
|
|
28
29
|
#: ../app/controllers/api/v2/scc_accounts_controller.rb:15
|
29
30
|
msgid "List all scc_accounts"
|
30
|
-
msgstr ""
|
31
|
+
msgstr "Alle SCC Konten auflisten"
|
31
32
|
|
32
33
|
#: ../app/controllers/api/v2/scc_accounts_controller.rb:24
|
33
34
|
msgid "Show scc_account"
|
34
|
-
msgstr ""
|
35
|
+
msgstr "SCC Konto anzeigen"
|
35
36
|
|
36
37
|
#: ../app/controllers/api/v2/scc_accounts_controller.rb:32
|
37
38
|
msgid "Name of the scc_account"
|
38
|
-
msgstr ""
|
39
|
+
msgstr "Name des SCC Kontos"
|
39
40
|
|
40
41
|
#: ../app/controllers/api/v2/scc_accounts_controller.rb:33 ../app/controllers/api/v2/scc_accounts_controller.rb:65
|
41
42
|
msgid "Login id of scc_account"
|
42
|
-
msgstr ""
|
43
|
+
msgstr "Login ID des SCC Kontos"
|
43
44
|
|
44
45
|
#: ../app/controllers/api/v2/scc_accounts_controller.rb:34 ../app/controllers/api/v2/scc_accounts_controller.rb:66
|
45
46
|
msgid "Password of scc_account"
|
46
|
-
msgstr ""
|
47
|
+
msgstr "Passwort für SCC Konto"
|
47
48
|
|
48
49
|
#: ../app/controllers/api/v2/scc_accounts_controller.rb:35 ../app/controllers/api/v2/scc_accounts_controller.rb:67
|
49
50
|
msgid "URL of SUSE for scc_account"
|
50
|
-
msgstr ""
|
51
|
+
msgstr "URL für SUSE Konto"
|
51
52
|
|
52
53
|
#: ../app/controllers/api/v2/scc_accounts_controller.rb:36
|
53
54
|
msgid "Interval for syncing scc_account"
|
@@ -55,31 +56,31 @@ msgstr ""
|
|
55
56
|
|
56
57
|
#: ../app/controllers/api/v2/scc_accounts_controller.rb:37
|
57
58
|
msgid "Date and time relative to which the sync interval is run"
|
58
|
-
msgstr ""
|
59
|
+
msgstr "Relativ zu diesem Zeitpunkt wird die Synchronisation ausgeführt"
|
59
60
|
|
60
61
|
#: ../app/controllers/api/v2/scc_accounts_controller.rb:38
|
61
|
-
msgid "Associated
|
62
|
-
msgstr ""
|
62
|
+
msgid "Associated GPG key of scc_account"
|
63
|
+
msgstr "Mit SCC Konto assoziierter GPG-Schlüssel"
|
63
64
|
|
64
65
|
#: ../app/controllers/api/v2/scc_accounts_controller.rb:42
|
65
66
|
msgid "Create an scc_account"
|
66
|
-
msgstr ""
|
67
|
+
msgstr "SCC Konto erstellen"
|
67
68
|
|
68
69
|
#: ../app/controllers/api/v2/scc_accounts_controller.rb:49
|
69
70
|
msgid "Update scc_account"
|
70
|
-
msgstr ""
|
71
|
+
msgstr "SCC Konto aktualisieren"
|
71
72
|
|
72
73
|
#: ../app/controllers/api/v2/scc_accounts_controller.rb:56
|
73
74
|
msgid "Delete scc_account"
|
74
|
-
msgstr ""
|
75
|
+
msgstr "SCC Konto löschen"
|
75
76
|
|
76
77
|
#: ../app/controllers/api/v2/scc_accounts_controller.rb:62 ../app/controllers/api/v2/scc_accounts_controller.rb:63
|
77
78
|
msgid "Test connection for scc_account"
|
78
|
-
msgstr ""
|
79
|
+
msgstr "Verbindung zum SCC Konto testen"
|
79
80
|
|
80
81
|
#: ../app/controllers/api/v2/scc_accounts_controller.rb:90
|
81
82
|
msgid "Sync scc_account"
|
82
|
-
msgstr ""
|
83
|
+
msgstr "SCC Konto Synchronisieren"
|
83
84
|
|
84
85
|
#: ../app/controllers/api/v2/scc_accounts_controller.rb:104
|
85
86
|
msgid "Bulk subscription of scc_products for scc_account"
|
@@ -87,15 +88,15 @@ msgstr ""
|
|
87
88
|
|
88
89
|
#: ../app/controllers/api/v2/scc_products_controller.rb:15
|
89
90
|
msgid "List all products for scc_account"
|
90
|
-
msgstr ""
|
91
|
+
msgstr "Alle Produkte für SCC Konto auflisten"
|
91
92
|
|
92
93
|
#: ../app/controllers/api/v2/scc_products_controller.rb:24
|
93
94
|
msgid "Show an scc_account product"
|
94
|
-
msgstr ""
|
95
|
+
msgstr "SCC Produkt anzeigen"
|
95
96
|
|
96
97
|
#: ../app/controllers/api/v2/scc_products_controller.rb:29
|
97
98
|
msgid "Subscribe product"
|
98
|
-
msgstr ""
|
99
|
+
msgstr "Produkt abonnieren"
|
99
100
|
|
100
101
|
#: ../app/controllers/scc_accounts_controller.rb:71
|
101
102
|
msgid "Sync task started."
|
@@ -121,11 +122,11 @@ msgstr "Keine Produkte ausgewählt."
|
|
121
122
|
msgid "Product already subscribed!"
|
122
123
|
msgstr "Produkt wurde bereits abonniert!"
|
123
124
|
|
124
|
-
#: ../app/lib/actions/scc_manager/subscribe_product.rb:46 action_names.rb:
|
125
|
+
#: ../app/lib/actions/scc_manager/subscribe_product.rb:46 action_names.rb:78
|
125
126
|
msgid "Subscribe SCC Product"
|
126
127
|
msgstr "SCC Produkt abonnieren"
|
127
128
|
|
128
|
-
#: ../app/lib/actions/scc_manager/sync.rb:27 action_names.rb:
|
129
|
+
#: ../app/lib/actions/scc_manager/sync.rb:27 action_names.rb:76
|
129
130
|
msgid "Sync SUSE subscriptions"
|
130
131
|
msgstr "SUSE Abonnements synchronisieren"
|
131
132
|
|
@@ -137,31 +138,31 @@ msgstr "SUSE Repositorien %s aktualisieren"
|
|
137
138
|
msgid "Unknown"
|
138
139
|
msgstr "Unbekannt"
|
139
140
|
|
140
|
-
#: ../app/lib/actions/scc_manager/sync_plan_account_repositories.rb:33 action_names.rb:
|
141
|
+
#: ../app/lib/actions/scc_manager/sync_plan_account_repositories.rb:33 action_names.rb:77
|
141
142
|
msgid "Update SUSE repositories"
|
142
143
|
msgstr "SUSE Repositorien aktualisieren"
|
143
144
|
|
144
|
-
#: ../app/lib/actions/scc_manager/sync_products.rb:36 action_names.rb:
|
145
|
+
#: ../app/lib/actions/scc_manager/sync_products.rb:36 action_names.rb:79
|
145
146
|
msgid "Sync SUSE subscriptions (Products)"
|
146
147
|
msgstr "SUSE Abonnements (Produkte) synchronisieren"
|
147
148
|
|
148
|
-
#: ../app/lib/actions/scc_manager/sync_repositories.rb:34 action_names.rb:
|
149
|
+
#: ../app/lib/actions/scc_manager/sync_repositories.rb:34 action_names.rb:75
|
149
150
|
msgid "Sync SUSE subscriptions (Repositories)"
|
150
151
|
msgstr "SUSE Abonnements (Repositorien) synchronisieren"
|
151
152
|
|
152
|
-
#: ../app/models/scc_account.rb:
|
153
|
+
#: ../app/models/scc_account.rb:57
|
153
154
|
msgid "never synced"
|
154
155
|
msgstr "Nie synchronisiert"
|
155
156
|
|
156
|
-
#: ../app/models/scc_account.rb:
|
157
|
+
#: ../app/models/scc_account.rb:104
|
157
158
|
msgid "Interval cannot be nil"
|
158
159
|
msgstr "Intervall darf nicht Null sein"
|
159
160
|
|
160
|
-
#: ../app/models/scc_account.rb:
|
161
|
+
#: ../app/models/scc_account.rb:111
|
161
162
|
msgid "Interval not set correctly"
|
162
163
|
msgstr "Intervall nicht richtig gesetzt"
|
163
164
|
|
164
|
-
#: ../app/models/scc_account.rb:
|
165
|
+
#: ../app/models/scc_account.rb:116
|
165
166
|
msgid "Cron expression is not valid!"
|
166
167
|
msgstr "Cron-Ausdruck ungültig!"
|
167
168
|
|
@@ -187,11 +188,11 @@ msgstr "Basis URL"
|
|
187
188
|
|
188
189
|
#: ../app/views/scc_accounts/_form.html.erb:18
|
189
190
|
msgid "Sync interval"
|
190
|
-
msgstr ""
|
191
|
+
msgstr "Synchronisationsintervall"
|
191
192
|
|
192
193
|
#: ../app/views/scc_accounts/_form.html.erb:18
|
193
194
|
msgid "The sync interval is used to periodically update the SCC authentication tokens of any imported products."
|
194
|
-
msgstr ""
|
195
|
+
msgstr "Das Synchronisationsintervall ist die Zeit, nach der automatisch das Autorisierungstoken erneuert wird."
|
195
196
|
|
196
197
|
#: ../app/views/scc_accounts/_form.html.erb:19
|
197
198
|
msgid "Sync Date"
|
@@ -199,15 +200,15 @@ msgstr "Synchronisationsdatum"
|
|
199
200
|
|
200
201
|
#: ../app/views/scc_accounts/_form.html.erb:23
|
201
202
|
msgid "None"
|
202
|
-
msgstr ""
|
203
|
+
msgstr "Keine Auswahl"
|
203
204
|
|
204
205
|
#: ../app/views/scc_accounts/_form.html.erb:24
|
205
206
|
msgid "Use GPG key for SUSE products"
|
206
|
-
msgstr ""
|
207
|
+
msgstr "GPG-Schlüssel mit SUSE Produkten assoziieren"
|
207
208
|
|
208
209
|
#: ../app/views/scc_accounts/_form.html.erb:26
|
209
210
|
msgid "Use this setting if you want to automatically add a GPG key to your SUSE products upon subscription. You can change this setting in the 'Content' > 'Products' menu, later."
|
210
|
-
msgstr ""
|
211
|
+
msgstr "Verwenden Sie diese Einstellung, wenn Sie beim Abonnieren automatisch einen GPG-Schlüssel zu Ihren SUSE Produkten hinzufügen wollen. Diese Einstellung kann später unter 'Inhalt' > 'Produkte' wieder geändert werden."
|
211
212
|
|
212
213
|
#: ../app/views/scc_accounts/_form.html.erb:31
|
213
214
|
msgid "Test Connection"
|
@@ -255,11 +256,11 @@ msgstr "SUSE Customer Center Konto hinzufügen"
|
|
255
256
|
|
256
257
|
#: ../app/views/scc_accounts/show.html.erb:1
|
257
258
|
msgid "Product Selection for Account %s"
|
258
|
-
msgstr ""
|
259
|
+
msgstr "Produktauswahl für Konto %s"
|
259
260
|
|
260
261
|
#: ../app/views/scc_accounts/show.html.erb:17
|
261
262
|
msgid "(WARNING: Please check your SUSE subscription)"
|
262
|
-
msgstr ""
|
263
|
+
msgstr "(WARNUNG: Bitte überprüfen Sie Ihr SUSE Abonnement)"
|
263
264
|
|
264
265
|
#: ../app/views/scc_accounts/show.html.erb:33
|
265
266
|
msgid "SUSE Customer Center"
|
@@ -269,304 +270,300 @@ msgstr "SUSE Customer Center"
|
|
269
270
|
msgid "Please sync your SUSE subscriptions first."
|
270
271
|
msgstr "Bitte synchronisieren Sie zuerst Ihre SUSE Abonnements."
|
271
272
|
|
272
|
-
#: ../lib/foreman_scc_manager/engine.rb:
|
273
|
+
#: ../lib/foreman_scc_manager/engine.rb:79
|
273
274
|
msgid "SUSE Subscriptions"
|
274
275
|
msgstr "SUSE Abonnements"
|
275
276
|
|
277
|
+
#: action_names.rb:2
|
278
|
+
msgid "Copy version units to library"
|
279
|
+
msgstr ""
|
280
|
+
|
281
|
+
#: action_names.rb:3
|
282
|
+
msgid "Import"
|
283
|
+
msgstr ""
|
284
|
+
|
285
|
+
#: action_names.rb:4
|
286
|
+
msgid "Export Library"
|
287
|
+
msgstr ""
|
288
|
+
|
289
|
+
#: action_names.rb:5
|
290
|
+
msgid "Export"
|
291
|
+
msgstr ""
|
292
|
+
|
276
293
|
#: action_names.rb:6
|
277
|
-
msgid "
|
294
|
+
msgid "Hypervisors update"
|
278
295
|
msgstr ""
|
279
296
|
|
280
297
|
#: action_names.rb:7
|
281
|
-
msgid "
|
298
|
+
msgid "Update for host"
|
282
299
|
msgstr ""
|
283
300
|
|
284
301
|
#: action_names.rb:8
|
285
|
-
msgid "
|
302
|
+
msgid "Update Content Overrides"
|
303
|
+
msgstr ""
|
304
|
+
|
305
|
+
#: action_names.rb:9
|
306
|
+
msgid "Remove subscriptions"
|
286
307
|
msgstr ""
|
287
308
|
|
288
309
|
#: action_names.rb:10
|
289
|
-
msgid "
|
310
|
+
msgid "Hypervisors"
|
290
311
|
msgstr ""
|
291
312
|
|
292
313
|
#: action_names.rb:11
|
293
|
-
msgid "
|
314
|
+
msgid "Install Applicable Errata"
|
294
315
|
msgstr ""
|
295
316
|
|
296
317
|
#: action_names.rb:12
|
297
|
-
msgid "
|
318
|
+
msgid "Destroy Content Host"
|
298
319
|
msgstr ""
|
299
320
|
|
300
321
|
#: action_names.rb:13
|
301
|
-
msgid "
|
322
|
+
msgid "Auto attach subscriptions"
|
302
323
|
msgstr ""
|
303
324
|
|
304
325
|
#: action_names.rb:14
|
305
|
-
msgid "
|
326
|
+
msgid "Attach subscriptions"
|
306
327
|
msgstr ""
|
307
328
|
|
308
329
|
#: action_names.rb:15
|
309
|
-
msgid "
|
330
|
+
msgid "Update"
|
310
331
|
msgstr ""
|
311
332
|
|
312
333
|
#: action_names.rb:16
|
313
|
-
msgid "
|
334
|
+
msgid "Publish Lifecycle Environment Repositories"
|
314
335
|
msgstr ""
|
315
336
|
|
316
337
|
#: action_names.rb:17
|
317
|
-
msgid "
|
338
|
+
msgid "Delete Package Group"
|
318
339
|
msgstr ""
|
319
340
|
|
320
341
|
#: action_names.rb:18
|
321
|
-
msgid "
|
342
|
+
msgid "Delete"
|
322
343
|
msgstr ""
|
323
344
|
|
324
345
|
#: action_names.rb:19
|
325
|
-
msgid "
|
346
|
+
msgid "Create"
|
326
347
|
msgstr ""
|
327
348
|
|
328
349
|
#: action_names.rb:20
|
329
|
-
msgid "
|
350
|
+
msgid "Delete Lifecycle Environment"
|
330
351
|
msgstr ""
|
331
352
|
|
332
353
|
#: action_names.rb:21
|
333
|
-
msgid "
|
354
|
+
msgid "Republish Version Repositories"
|
334
355
|
msgstr ""
|
335
356
|
|
336
357
|
#: action_names.rb:22
|
337
|
-
msgid "
|
358
|
+
msgid "Synchronize"
|
338
359
|
msgstr ""
|
339
360
|
|
340
361
|
#: action_names.rb:23
|
341
|
-
msgid "
|
362
|
+
msgid "Remove Content"
|
342
363
|
msgstr ""
|
343
364
|
|
344
365
|
#: action_names.rb:24
|
345
|
-
msgid "Incremental Update
|
366
|
+
msgid "Incremental Update"
|
346
367
|
msgstr ""
|
347
368
|
|
348
369
|
#: action_names.rb:25
|
349
|
-
msgid "
|
370
|
+
msgid "Import Default Content View"
|
350
371
|
msgstr ""
|
351
372
|
|
352
373
|
#: action_names.rb:26
|
353
|
-
msgid "
|
374
|
+
msgid "Import Content View Version"
|
354
375
|
msgstr ""
|
355
376
|
|
356
377
|
#: action_names.rb:27
|
357
|
-
msgid "
|
378
|
+
msgid "Enable"
|
358
379
|
msgstr ""
|
359
380
|
|
360
381
|
#: action_names.rb:28
|
361
|
-
msgid "
|
382
|
+
msgid "Disable"
|
362
383
|
msgstr ""
|
363
384
|
|
364
385
|
#: action_names.rb:29
|
365
|
-
msgid "
|
386
|
+
msgid "Verify checksum"
|
366
387
|
msgstr ""
|
367
388
|
|
368
389
|
#: action_names.rb:30
|
369
|
-
msgid "
|
390
|
+
msgid "Filtered index content"
|
370
391
|
msgstr ""
|
371
392
|
|
372
393
|
#: action_names.rb:31
|
373
|
-
msgid "
|
394
|
+
msgid "Fetch pxe files"
|
374
395
|
msgstr ""
|
375
396
|
|
376
397
|
#: action_names.rb:32
|
377
|
-
msgid "
|
398
|
+
msgid "Errata mail"
|
378
399
|
msgstr ""
|
379
400
|
|
380
401
|
#: action_names.rb:33
|
381
|
-
msgid "
|
402
|
+
msgid "Discover"
|
382
403
|
msgstr ""
|
383
404
|
|
384
405
|
#: action_names.rb:34
|
385
|
-
msgid "
|
406
|
+
msgid "Remove Version"
|
386
407
|
msgstr ""
|
387
408
|
|
388
409
|
#: action_names.rb:35
|
389
|
-
msgid "
|
410
|
+
msgid "Remove from Environment"
|
390
411
|
msgstr ""
|
391
412
|
|
392
413
|
#: action_names.rb:36
|
393
|
-
msgid "
|
414
|
+
msgid "Remove Versions and Associations"
|
394
415
|
msgstr ""
|
395
416
|
|
396
417
|
#: action_names.rb:37
|
397
|
-
msgid "
|
418
|
+
msgid "Publish"
|
398
419
|
msgstr ""
|
399
420
|
|
400
421
|
#: action_names.rb:38
|
401
|
-
msgid "
|
422
|
+
msgid "Promotion to Environment"
|
402
423
|
msgstr ""
|
403
424
|
|
404
425
|
#: action_names.rb:39
|
405
|
-
msgid "
|
426
|
+
msgid "Product Create"
|
406
427
|
msgstr ""
|
407
428
|
|
408
429
|
#: action_names.rb:40
|
409
|
-
msgid "
|
430
|
+
msgid "Destroy"
|
410
431
|
msgstr ""
|
411
432
|
|
412
433
|
#: action_names.rb:41
|
413
|
-
msgid "
|
434
|
+
msgid "Create Import History"
|
414
435
|
msgstr ""
|
415
436
|
|
416
437
|
#: action_names.rb:42
|
417
|
-
msgid "
|
438
|
+
msgid "Create Export History"
|
418
439
|
msgstr ""
|
419
440
|
|
420
441
|
#: action_names.rb:43
|
421
|
-
msgid "Update
|
442
|
+
msgid "Update http proxy"
|
422
443
|
msgstr ""
|
423
444
|
|
424
445
|
#: action_names.rb:44
|
425
|
-
msgid "
|
446
|
+
msgid "Promote"
|
426
447
|
msgstr ""
|
427
448
|
|
428
449
|
#: action_names.rb:45
|
429
|
-
msgid "
|
450
|
+
msgid "Reindex subscriptions"
|
430
451
|
msgstr ""
|
431
452
|
|
432
453
|
#: action_names.rb:46
|
433
|
-
msgid "
|
454
|
+
msgid "Delete Product"
|
434
455
|
msgstr ""
|
435
456
|
|
436
457
|
#: action_names.rb:47
|
437
|
-
msgid "
|
458
|
+
msgid "Instance update"
|
438
459
|
msgstr ""
|
439
460
|
|
440
461
|
#: action_names.rb:48
|
441
|
-
msgid "
|
462
|
+
msgid "Index package groups"
|
442
463
|
msgstr ""
|
443
464
|
|
444
465
|
#: action_names.rb:49
|
445
|
-
msgid "
|
466
|
+
msgid "Index module streams"
|
446
467
|
msgstr ""
|
447
468
|
|
448
469
|
#: action_names.rb:50
|
449
|
-
msgid "
|
470
|
+
msgid "Index errata"
|
450
471
|
msgstr ""
|
451
472
|
|
452
473
|
#: action_names.rb:51
|
453
|
-
msgid "
|
474
|
+
msgid "Index content"
|
454
475
|
msgstr ""
|
455
476
|
|
456
477
|
#: action_names.rb:52
|
457
|
-
msgid "
|
478
|
+
msgid "Upload into"
|
458
479
|
msgstr ""
|
459
480
|
|
460
481
|
#: action_names.rb:53
|
461
|
-
msgid "
|
482
|
+
msgid "Create Package Group"
|
462
483
|
msgstr ""
|
463
484
|
|
464
485
|
#: action_names.rb:54
|
465
|
-
msgid "
|
486
|
+
msgid "Update redhat repository"
|
466
487
|
msgstr ""
|
467
488
|
|
468
489
|
#: action_names.rb:55
|
469
|
-
msgid "
|
490
|
+
msgid "Update http proxy details"
|
470
491
|
msgstr ""
|
471
492
|
|
472
493
|
#: action_names.rb:56
|
473
|
-
msgid "
|
494
|
+
msgid "Update content urls"
|
474
495
|
msgstr ""
|
475
496
|
|
476
497
|
#: action_names.rb:57
|
477
|
-
msgid "
|
498
|
+
msgid "Run Sync Plan:"
|
478
499
|
msgstr ""
|
479
500
|
|
480
501
|
#: action_names.rb:58
|
481
|
-
msgid "
|
502
|
+
msgid "Combined Profile Update"
|
482
503
|
msgstr ""
|
483
504
|
|
484
505
|
#: action_names.rb:59
|
485
|
-
msgid "
|
506
|
+
msgid "Package Profile Update"
|
486
507
|
msgstr ""
|
487
508
|
|
488
509
|
#: action_names.rb:60
|
489
|
-
msgid "
|
510
|
+
msgid "Updating System Purpose for host"
|
490
511
|
msgstr ""
|
491
512
|
|
492
513
|
#: action_names.rb:61
|
493
|
-
msgid "
|
514
|
+
msgid "Update release version for host"
|
494
515
|
msgstr ""
|
495
516
|
|
496
517
|
#: action_names.rb:62
|
497
|
-
msgid "
|
518
|
+
msgid "Incremental Update of Content View Version(s) "
|
498
519
|
msgstr ""
|
499
520
|
|
500
521
|
#: action_names.rb:63
|
501
|
-
msgid "
|
522
|
+
msgid "Sync capsule"
|
502
523
|
msgstr ""
|
503
524
|
|
504
525
|
#: action_names.rb:64
|
505
|
-
msgid "
|
526
|
+
msgid "Synchronize smart proxy"
|
506
527
|
msgstr ""
|
507
528
|
|
508
529
|
#: action_names.rb:65
|
509
|
-
msgid "
|
530
|
+
msgid "Generate repository applicability"
|
510
531
|
msgstr ""
|
511
532
|
|
512
533
|
#: action_names.rb:66
|
513
|
-
msgid "
|
534
|
+
msgid "Bulk generate applicability for hosts"
|
514
535
|
msgstr ""
|
515
536
|
|
516
537
|
#: action_names.rb:67
|
517
|
-
msgid "
|
538
|
+
msgid "Generate host applicability"
|
518
539
|
msgstr ""
|
519
540
|
|
520
541
|
#: action_names.rb:68
|
521
|
-
msgid "
|
542
|
+
msgid "Agent action"
|
522
543
|
msgstr ""
|
523
544
|
|
524
545
|
#: action_names.rb:69
|
525
|
-
msgid "
|
546
|
+
msgid "Delete Activation Key"
|
526
547
|
msgstr ""
|
527
548
|
|
528
549
|
#: action_names.rb:70
|
529
|
-
msgid "
|
550
|
+
msgid "Abstract async task"
|
530
551
|
msgstr ""
|
531
552
|
|
532
553
|
#: action_names.rb:71
|
533
|
-
msgid "
|
554
|
+
msgid "Remote action:"
|
534
555
|
msgstr ""
|
535
556
|
|
536
557
|
#: action_names.rb:72
|
537
|
-
msgid "
|
558
|
+
msgid "Import Puppet classes"
|
538
559
|
msgstr ""
|
539
560
|
|
540
561
|
#: action_names.rb:73
|
541
|
-
msgid "
|
562
|
+
msgid "Import facts"
|
542
563
|
msgstr ""
|
543
564
|
|
544
565
|
#: action_names.rb:74
|
545
|
-
msgid "
|
546
|
-
msgstr ""
|
547
|
-
|
548
|
-
#: action_names.rb:75
|
549
|
-
msgid "Fetch pxe files"
|
550
|
-
msgstr ""
|
551
|
-
|
552
|
-
#: action_names.rb:76
|
553
|
-
msgid "Index module streams"
|
554
|
-
msgstr ""
|
555
|
-
|
556
|
-
#: action_names.rb:77
|
557
|
-
msgid "Index package groups"
|
558
|
-
msgstr ""
|
559
|
-
|
560
|
-
#: action_names.rb:78
|
561
|
-
msgid "Filtered index content"
|
562
|
-
msgstr ""
|
563
|
-
|
564
|
-
#: action_names.rb:79
|
565
|
-
msgid "Index errata"
|
566
|
-
msgstr ""
|
567
|
-
|
568
|
-
#: action_names.rb:80
|
569
|
-
msgid "Index content"
|
566
|
+
msgid "Action with sub plans"
|
570
567
|
msgstr ""
|
571
568
|
|
572
569
|
#: gemspec.rb:2
|
@@ -50,7 +50,7 @@ msgid "Date and time relative to which the sync interval is run"
|
|
50
50
|
msgstr ""
|
51
51
|
|
52
52
|
#: ../app/controllers/api/v2/scc_accounts_controller.rb:38
|
53
|
-
msgid "Associated
|
53
|
+
msgid "Associated GPG key of scc_account"
|
54
54
|
msgstr ""
|
55
55
|
|
56
56
|
#: ../app/controllers/api/v2/scc_accounts_controller.rb:42
|
@@ -113,11 +113,11 @@ msgstr ""
|
|
113
113
|
msgid "Product already subscribed!"
|
114
114
|
msgstr "Product already subscribed!"
|
115
115
|
|
116
|
-
#: ../app/lib/actions/scc_manager/subscribe_product.rb:46 action_names.rb:
|
116
|
+
#: ../app/lib/actions/scc_manager/subscribe_product.rb:46 action_names.rb:78
|
117
117
|
msgid "Subscribe SCC Product"
|
118
118
|
msgstr "Subscribe SCC Product"
|
119
119
|
|
120
|
-
#: ../app/lib/actions/scc_manager/sync.rb:27 action_names.rb:
|
120
|
+
#: ../app/lib/actions/scc_manager/sync.rb:27 action_names.rb:76
|
121
121
|
msgid "Sync SUSE subscriptions"
|
122
122
|
msgstr "Sync SUSE subscriptions"
|
123
123
|
|
@@ -129,31 +129,31 @@ msgstr ""
|
|
129
129
|
msgid "Unknown"
|
130
130
|
msgstr ""
|
131
131
|
|
132
|
-
#: ../app/lib/actions/scc_manager/sync_plan_account_repositories.rb:33 action_names.rb:
|
132
|
+
#: ../app/lib/actions/scc_manager/sync_plan_account_repositories.rb:33 action_names.rb:77
|
133
133
|
msgid "Update SUSE repositories"
|
134
134
|
msgstr ""
|
135
135
|
|
136
|
-
#: ../app/lib/actions/scc_manager/sync_products.rb:36 action_names.rb:
|
136
|
+
#: ../app/lib/actions/scc_manager/sync_products.rb:36 action_names.rb:79
|
137
137
|
msgid "Sync SUSE subscriptions (Products)"
|
138
138
|
msgstr "Sync SUSE subscriptions (Products)"
|
139
139
|
|
140
|
-
#: ../app/lib/actions/scc_manager/sync_repositories.rb:34 action_names.rb:
|
140
|
+
#: ../app/lib/actions/scc_manager/sync_repositories.rb:34 action_names.rb:75
|
141
141
|
msgid "Sync SUSE subscriptions (Repositories)"
|
142
142
|
msgstr "Sync SUSE subscriptions (Repositories)"
|
143
143
|
|
144
|
-
#: ../app/models/scc_account.rb:
|
144
|
+
#: ../app/models/scc_account.rb:57
|
145
145
|
msgid "never synced"
|
146
146
|
msgstr ""
|
147
147
|
|
148
|
-
#: ../app/models/scc_account.rb:
|
148
|
+
#: ../app/models/scc_account.rb:104
|
149
149
|
msgid "Interval cannot be nil"
|
150
150
|
msgstr ""
|
151
151
|
|
152
|
-
#: ../app/models/scc_account.rb:
|
152
|
+
#: ../app/models/scc_account.rb:111
|
153
153
|
msgid "Interval not set correctly"
|
154
154
|
msgstr ""
|
155
155
|
|
156
|
-
#: ../app/models/scc_account.rb:
|
156
|
+
#: ../app/models/scc_account.rb:116
|
157
157
|
msgid "Cron expression is not valid!"
|
158
158
|
msgstr ""
|
159
159
|
|
@@ -261,304 +261,300 @@ msgstr "SUSE Customer Center"
|
|
261
261
|
msgid "Please sync your SUSE subscriptions first."
|
262
262
|
msgstr "Please sync your SUSE subscriptions first."
|
263
263
|
|
264
|
-
#: ../lib/foreman_scc_manager/engine.rb:
|
264
|
+
#: ../lib/foreman_scc_manager/engine.rb:79
|
265
265
|
msgid "SUSE Subscriptions"
|
266
266
|
msgstr "SUSE Subscriptions"
|
267
267
|
|
268
|
+
#: action_names.rb:2
|
269
|
+
msgid "Copy version units to library"
|
270
|
+
msgstr ""
|
271
|
+
|
272
|
+
#: action_names.rb:3
|
273
|
+
msgid "Import"
|
274
|
+
msgstr ""
|
275
|
+
|
276
|
+
#: action_names.rb:4
|
277
|
+
msgid "Export Library"
|
278
|
+
msgstr ""
|
279
|
+
|
280
|
+
#: action_names.rb:5
|
281
|
+
msgid "Export"
|
282
|
+
msgstr ""
|
283
|
+
|
268
284
|
#: action_names.rb:6
|
269
|
-
msgid "
|
285
|
+
msgid "Hypervisors update"
|
270
286
|
msgstr ""
|
271
287
|
|
272
288
|
#: action_names.rb:7
|
273
|
-
msgid "
|
289
|
+
msgid "Update for host"
|
274
290
|
msgstr ""
|
275
291
|
|
276
292
|
#: action_names.rb:8
|
277
|
-
msgid "
|
293
|
+
msgid "Update Content Overrides"
|
294
|
+
msgstr ""
|
295
|
+
|
296
|
+
#: action_names.rb:9
|
297
|
+
msgid "Remove subscriptions"
|
278
298
|
msgstr ""
|
279
299
|
|
280
300
|
#: action_names.rb:10
|
281
|
-
msgid "
|
301
|
+
msgid "Hypervisors"
|
282
302
|
msgstr ""
|
283
303
|
|
284
304
|
#: action_names.rb:11
|
285
|
-
msgid "
|
305
|
+
msgid "Install Applicable Errata"
|
286
306
|
msgstr ""
|
287
307
|
|
288
308
|
#: action_names.rb:12
|
289
|
-
msgid "
|
309
|
+
msgid "Destroy Content Host"
|
290
310
|
msgstr ""
|
291
311
|
|
292
312
|
#: action_names.rb:13
|
293
|
-
msgid "
|
313
|
+
msgid "Auto attach subscriptions"
|
294
314
|
msgstr ""
|
295
315
|
|
296
316
|
#: action_names.rb:14
|
297
|
-
msgid "
|
317
|
+
msgid "Attach subscriptions"
|
298
318
|
msgstr ""
|
299
319
|
|
300
320
|
#: action_names.rb:15
|
301
|
-
msgid "
|
321
|
+
msgid "Update"
|
302
322
|
msgstr ""
|
303
323
|
|
304
324
|
#: action_names.rb:16
|
305
|
-
msgid "
|
325
|
+
msgid "Publish Lifecycle Environment Repositories"
|
306
326
|
msgstr ""
|
307
327
|
|
308
328
|
#: action_names.rb:17
|
309
|
-
msgid "
|
329
|
+
msgid "Delete Package Group"
|
310
330
|
msgstr ""
|
311
331
|
|
312
332
|
#: action_names.rb:18
|
313
|
-
msgid "
|
333
|
+
msgid "Delete"
|
314
334
|
msgstr ""
|
315
335
|
|
316
336
|
#: action_names.rb:19
|
317
|
-
msgid "
|
337
|
+
msgid "Create"
|
318
338
|
msgstr ""
|
319
339
|
|
320
340
|
#: action_names.rb:20
|
321
|
-
msgid "
|
341
|
+
msgid "Delete Lifecycle Environment"
|
322
342
|
msgstr ""
|
323
343
|
|
324
344
|
#: action_names.rb:21
|
325
|
-
msgid "
|
345
|
+
msgid "Republish Version Repositories"
|
326
346
|
msgstr ""
|
327
347
|
|
328
348
|
#: action_names.rb:22
|
329
|
-
msgid "
|
349
|
+
msgid "Synchronize"
|
330
350
|
msgstr ""
|
331
351
|
|
332
352
|
#: action_names.rb:23
|
333
|
-
msgid "
|
353
|
+
msgid "Remove Content"
|
334
354
|
msgstr ""
|
335
355
|
|
336
356
|
#: action_names.rb:24
|
337
|
-
msgid "Incremental Update
|
357
|
+
msgid "Incremental Update"
|
338
358
|
msgstr ""
|
339
359
|
|
340
360
|
#: action_names.rb:25
|
341
|
-
msgid "
|
361
|
+
msgid "Import Default Content View"
|
342
362
|
msgstr ""
|
343
363
|
|
344
364
|
#: action_names.rb:26
|
345
|
-
msgid "
|
365
|
+
msgid "Import Content View Version"
|
346
366
|
msgstr ""
|
347
367
|
|
348
368
|
#: action_names.rb:27
|
349
|
-
msgid "
|
369
|
+
msgid "Enable"
|
350
370
|
msgstr ""
|
351
371
|
|
352
372
|
#: action_names.rb:28
|
353
|
-
msgid "
|
373
|
+
msgid "Disable"
|
354
374
|
msgstr ""
|
355
375
|
|
356
376
|
#: action_names.rb:29
|
357
|
-
msgid "
|
377
|
+
msgid "Verify checksum"
|
358
378
|
msgstr ""
|
359
379
|
|
360
380
|
#: action_names.rb:30
|
361
|
-
msgid "
|
381
|
+
msgid "Filtered index content"
|
362
382
|
msgstr ""
|
363
383
|
|
364
384
|
#: action_names.rb:31
|
365
|
-
msgid "
|
385
|
+
msgid "Fetch pxe files"
|
366
386
|
msgstr ""
|
367
387
|
|
368
388
|
#: action_names.rb:32
|
369
|
-
msgid "
|
389
|
+
msgid "Errata mail"
|
370
390
|
msgstr ""
|
371
391
|
|
372
392
|
#: action_names.rb:33
|
373
|
-
msgid "
|
393
|
+
msgid "Discover"
|
374
394
|
msgstr ""
|
375
395
|
|
376
396
|
#: action_names.rb:34
|
377
|
-
msgid "
|
397
|
+
msgid "Remove Version"
|
378
398
|
msgstr ""
|
379
399
|
|
380
400
|
#: action_names.rb:35
|
381
|
-
msgid "
|
401
|
+
msgid "Remove from Environment"
|
382
402
|
msgstr ""
|
383
403
|
|
384
404
|
#: action_names.rb:36
|
385
|
-
msgid "
|
405
|
+
msgid "Remove Versions and Associations"
|
386
406
|
msgstr ""
|
387
407
|
|
388
408
|
#: action_names.rb:37
|
389
|
-
msgid "
|
409
|
+
msgid "Publish"
|
390
410
|
msgstr ""
|
391
411
|
|
392
412
|
#: action_names.rb:38
|
393
|
-
msgid "
|
413
|
+
msgid "Promotion to Environment"
|
394
414
|
msgstr ""
|
395
415
|
|
396
416
|
#: action_names.rb:39
|
397
|
-
msgid "
|
417
|
+
msgid "Product Create"
|
398
418
|
msgstr ""
|
399
419
|
|
400
420
|
#: action_names.rb:40
|
401
|
-
msgid "
|
421
|
+
msgid "Destroy"
|
402
422
|
msgstr ""
|
403
423
|
|
404
424
|
#: action_names.rb:41
|
405
|
-
msgid "
|
425
|
+
msgid "Create Import History"
|
406
426
|
msgstr ""
|
407
427
|
|
408
428
|
#: action_names.rb:42
|
409
|
-
msgid "
|
429
|
+
msgid "Create Export History"
|
410
430
|
msgstr ""
|
411
431
|
|
412
432
|
#: action_names.rb:43
|
413
|
-
msgid "Update
|
433
|
+
msgid "Update http proxy"
|
414
434
|
msgstr ""
|
415
435
|
|
416
436
|
#: action_names.rb:44
|
417
|
-
msgid "
|
437
|
+
msgid "Promote"
|
418
438
|
msgstr ""
|
419
439
|
|
420
440
|
#: action_names.rb:45
|
421
|
-
msgid "
|
441
|
+
msgid "Reindex subscriptions"
|
422
442
|
msgstr ""
|
423
443
|
|
424
444
|
#: action_names.rb:46
|
425
|
-
msgid "
|
445
|
+
msgid "Delete Product"
|
426
446
|
msgstr ""
|
427
447
|
|
428
448
|
#: action_names.rb:47
|
429
|
-
msgid "
|
449
|
+
msgid "Instance update"
|
430
450
|
msgstr ""
|
431
451
|
|
432
452
|
#: action_names.rb:48
|
433
|
-
msgid "
|
453
|
+
msgid "Index package groups"
|
434
454
|
msgstr ""
|
435
455
|
|
436
456
|
#: action_names.rb:49
|
437
|
-
msgid "
|
457
|
+
msgid "Index module streams"
|
438
458
|
msgstr ""
|
439
459
|
|
440
460
|
#: action_names.rb:50
|
441
|
-
msgid "
|
461
|
+
msgid "Index errata"
|
442
462
|
msgstr ""
|
443
463
|
|
444
464
|
#: action_names.rb:51
|
445
|
-
msgid "
|
465
|
+
msgid "Index content"
|
446
466
|
msgstr ""
|
447
467
|
|
448
468
|
#: action_names.rb:52
|
449
|
-
msgid "
|
469
|
+
msgid "Upload into"
|
450
470
|
msgstr ""
|
451
471
|
|
452
472
|
#: action_names.rb:53
|
453
|
-
msgid "
|
473
|
+
msgid "Create Package Group"
|
454
474
|
msgstr ""
|
455
475
|
|
456
476
|
#: action_names.rb:54
|
457
|
-
msgid "
|
477
|
+
msgid "Update redhat repository"
|
458
478
|
msgstr ""
|
459
479
|
|
460
480
|
#: action_names.rb:55
|
461
|
-
msgid "
|
481
|
+
msgid "Update http proxy details"
|
462
482
|
msgstr ""
|
463
483
|
|
464
484
|
#: action_names.rb:56
|
465
|
-
msgid "
|
485
|
+
msgid "Update content urls"
|
466
486
|
msgstr ""
|
467
487
|
|
468
488
|
#: action_names.rb:57
|
469
|
-
msgid "
|
489
|
+
msgid "Run Sync Plan:"
|
470
490
|
msgstr ""
|
471
491
|
|
472
492
|
#: action_names.rb:58
|
473
|
-
msgid "
|
493
|
+
msgid "Combined Profile Update"
|
474
494
|
msgstr ""
|
475
495
|
|
476
496
|
#: action_names.rb:59
|
477
|
-
msgid "
|
497
|
+
msgid "Package Profile Update"
|
478
498
|
msgstr ""
|
479
499
|
|
480
500
|
#: action_names.rb:60
|
481
|
-
msgid "
|
501
|
+
msgid "Updating System Purpose for host"
|
482
502
|
msgstr ""
|
483
503
|
|
484
504
|
#: action_names.rb:61
|
485
|
-
msgid "
|
505
|
+
msgid "Update release version for host"
|
486
506
|
msgstr ""
|
487
507
|
|
488
508
|
#: action_names.rb:62
|
489
|
-
msgid "
|
509
|
+
msgid "Incremental Update of Content View Version(s) "
|
490
510
|
msgstr ""
|
491
511
|
|
492
512
|
#: action_names.rb:63
|
493
|
-
msgid "
|
513
|
+
msgid "Sync capsule"
|
494
514
|
msgstr ""
|
495
515
|
|
496
516
|
#: action_names.rb:64
|
497
|
-
msgid "
|
517
|
+
msgid "Synchronize smart proxy"
|
498
518
|
msgstr ""
|
499
519
|
|
500
520
|
#: action_names.rb:65
|
501
|
-
msgid "
|
521
|
+
msgid "Generate repository applicability"
|
502
522
|
msgstr ""
|
503
523
|
|
504
524
|
#: action_names.rb:66
|
505
|
-
msgid "
|
525
|
+
msgid "Bulk generate applicability for hosts"
|
506
526
|
msgstr ""
|
507
527
|
|
508
528
|
#: action_names.rb:67
|
509
|
-
msgid "
|
529
|
+
msgid "Generate host applicability"
|
510
530
|
msgstr ""
|
511
531
|
|
512
532
|
#: action_names.rb:68
|
513
|
-
msgid "
|
533
|
+
msgid "Agent action"
|
514
534
|
msgstr ""
|
515
535
|
|
516
536
|
#: action_names.rb:69
|
517
|
-
msgid "
|
537
|
+
msgid "Delete Activation Key"
|
518
538
|
msgstr ""
|
519
539
|
|
520
540
|
#: action_names.rb:70
|
521
|
-
msgid "
|
541
|
+
msgid "Abstract async task"
|
522
542
|
msgstr ""
|
523
543
|
|
524
544
|
#: action_names.rb:71
|
525
|
-
msgid "
|
545
|
+
msgid "Remote action:"
|
526
546
|
msgstr ""
|
527
547
|
|
528
548
|
#: action_names.rb:72
|
529
|
-
msgid "
|
549
|
+
msgid "Import Puppet classes"
|
530
550
|
msgstr ""
|
531
551
|
|
532
552
|
#: action_names.rb:73
|
533
|
-
msgid "
|
553
|
+
msgid "Import facts"
|
534
554
|
msgstr ""
|
535
555
|
|
536
556
|
#: action_names.rb:74
|
537
|
-
msgid "
|
538
|
-
msgstr ""
|
539
|
-
|
540
|
-
#: action_names.rb:75
|
541
|
-
msgid "Fetch pxe files"
|
542
|
-
msgstr ""
|
543
|
-
|
544
|
-
#: action_names.rb:76
|
545
|
-
msgid "Index module streams"
|
546
|
-
msgstr ""
|
547
|
-
|
548
|
-
#: action_names.rb:77
|
549
|
-
msgid "Index package groups"
|
550
|
-
msgstr ""
|
551
|
-
|
552
|
-
#: action_names.rb:78
|
553
|
-
msgid "Filtered index content"
|
554
|
-
msgstr ""
|
555
|
-
|
556
|
-
#: action_names.rb:79
|
557
|
-
msgid "Index errata"
|
558
|
-
msgstr ""
|
559
|
-
|
560
|
-
#: action_names.rb:80
|
561
|
-
msgid "Index content"
|
557
|
+
msgid "Action with sub plans"
|
562
558
|
msgstr ""
|
563
559
|
|
564
560
|
#: gemspec.rb:2
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: foreman_scc_manager
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.8.
|
4
|
+
version: 1.8.12
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- ATIX AG
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-09-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rdoc
|
@@ -16,14 +16,20 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '
|
19
|
+
version: '6'
|
20
|
+
- - ">="
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 6.3.1
|
20
23
|
type: :development
|
21
24
|
prerelease: false
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
23
26
|
requirements:
|
24
27
|
- - "~>"
|
25
28
|
- !ruby/object:Gem::Version
|
26
|
-
version: '
|
29
|
+
version: '6'
|
30
|
+
- - ">="
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: 6.3.1
|
27
33
|
- !ruby/object:Gem::Dependency
|
28
34
|
name: rubocop
|
29
35
|
requirement: !ruby/object:Gem::Requirement
|