foreman_virt_who_configure 0.0.2 → 0.1.0
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/app/assets/javascripts/foreman_virt_who_configure/config_copy_and_paste.js +8 -0
- data/app/assets/javascripts/foreman_virt_who_configure/config_edit.js +23 -8
- data/app/controllers/foreman_virt_who_configure/api/v2/configs_controller.rb +120 -0
- data/app/controllers/foreman_virt_who_configure/configs_controller.rb +17 -2
- data/app/helpers/foreman_virt_who_configure/compatibility_helper.rb +9 -0
- data/app/helpers/foreman_virt_who_configure/configs_helper.rb +4 -10
- data/app/models/foreman_virt_who_configure/auth_source_hidden_with_authentication.rb +10 -1
- data/app/models/foreman_virt_who_configure/config.rb +24 -29
- data/app/models/foreman_virt_who_configure/output_generator.rb +99 -17
- data/app/services/sso/basic_with_hidden.rb +1 -1
- data/app/views/dashboard/_foreman_virt_who_configs_status_widget.html.erb +7 -8
- data/app/views/foreman_virt_who_configure/api/v2/configs/base.json.rabl +3 -0
- data/app/views/foreman_virt_who_configure/api/v2/configs/create.json.rabl +3 -0
- data/app/views/foreman_virt_who_configure/api/v2/configs/deploy_script.json.rabl +3 -0
- data/app/views/foreman_virt_who_configure/api/v2/configs/index.json.rabl +3 -0
- data/app/views/foreman_virt_who_configure/api/v2/configs/main.json.rabl +8 -0
- data/app/views/foreman_virt_who_configure/api/v2/configs/show.json.rabl +3 -0
- data/app/views/foreman_virt_who_configure/api/v2/configs/update.json.rabl +3 -0
- data/app/views/foreman_virt_who_configure/configs/show.html.erb +10 -4
- data/app/views/foreman_virt_who_configure/configs/steps/_connection_form.erb +13 -13
- data/app/views/foreman_virt_who_configure/configs/steps/_general_information_form.erb +4 -4
- data/app/views/foreman_virt_who_configure/configs/steps/_schedule_form.erb +1 -2
- data/config/routes.rb +19 -0
- data/lib/foreman_virt_who_configure/engine.rb +18 -4
- data/lib/foreman_virt_who_configure/version.rb +1 -1
- data/locale/action_names.rb +1 -0
- data/locale/en/LC_MESSAGES/foreman_virt_who_configure.mo +0 -0
- data/locale/en/foreman_virt_who_configure.edit.po +733 -0
- data/locale/en/foreman_virt_who_configure.po +262 -2
- data/locale/en/foreman_virt_who_configure.po.time_stamp +0 -0
- data/locale/foreman_virt_who_configure.pot +441 -8
- data/test/functional/api/v2/configs_controller_test.rb +178 -0
- data/test/unit/output_generator_test.rb +29 -0
- metadata +19 -4
@@ -1,7 +1,7 @@
|
|
1
1
|
module SSO
|
2
2
|
class BasicWithHidden < Basic
|
3
3
|
def available?
|
4
|
-
controller.api_request? && http_auth_set? && controller.is_a?(::Katello::Api::Rhsm::CandlepinProxiesController)
|
4
|
+
Thread.current[:service_user_login] = controller.api_request? && http_auth_set? && controller.is_a?(::Katello::Api::Rhsm::CandlepinProxiesController)
|
5
5
|
end
|
6
6
|
|
7
7
|
def current_user
|
@@ -2,25 +2,25 @@
|
|
2
2
|
<% scope = scope.authorized(:view_virt_who_config) %>
|
3
3
|
<% out_of_date = scope.out_of_date.order('out_of_date_at DESC') %>
|
4
4
|
|
5
|
-
<h4 class="header
|
5
|
+
<h4 class="header"><%= _('Virt-who Configurations Status') %></h4>
|
6
6
|
<table class="table table-striped ellipsis">
|
7
7
|
<thead>
|
8
8
|
<tr>
|
9
|
-
<th><%= _("Status") %></th>
|
9
|
+
<th><%= _("Configuration Status") %></th>
|
10
10
|
<th><%= _("Count") %></th>
|
11
11
|
</tr>
|
12
12
|
</thead>
|
13
13
|
<tbody>
|
14
14
|
<tr>
|
15
|
-
<td><%= link_to _("
|
15
|
+
<td><%= link_to _("No Reports"), foreman_virt_who_configure_configs_path(:search => "status = unknown") %></td>
|
16
16
|
<td><%= scope.where(:last_report_at => nil).count %></td>
|
17
17
|
</tr>
|
18
18
|
<tr>
|
19
|
-
<td><%= link_to _("
|
19
|
+
<td><%= link_to _("Out Of Date"), foreman_virt_who_configure_configs_path(:search => "status = out_of_date") %></td>
|
20
20
|
<td><%= out_of_date.count %></td>
|
21
21
|
</tr>
|
22
22
|
<tr>
|
23
|
-
<td><%= link_to _("
|
23
|
+
<td><%= link_to _("Up To Date"), foreman_virt_who_configure_configs_path(:search => "status = ok") %></td>
|
24
24
|
<td><%= scope.where.not(:last_report_at => nil).count - out_of_date.count %></td>
|
25
25
|
</tr>
|
26
26
|
<tr>
|
@@ -30,10 +30,9 @@
|
|
30
30
|
</tbody>
|
31
31
|
</table>
|
32
32
|
|
33
|
-
|
34
|
-
<h5 class="ca"><%= _('Out of Date Virt-who Configurations') %></h5>
|
33
|
+
<h4 class="header" style="margin-top: 12px;"><%= _('Latest Out of Date Configurations') %></h4>
|
35
34
|
<% if out_of_date.empty? %>
|
36
|
-
|
35
|
+
<div class="ca"><%= _("No configuration found") %></div>
|
37
36
|
<% else %>
|
38
37
|
<table class="table table-striped ellipsis">
|
39
38
|
<thead>
|
@@ -0,0 +1,8 @@
|
|
1
|
+
object @config
|
2
|
+
|
3
|
+
extends "foreman_virt_who_configure/api/v2/configs/base"
|
4
|
+
|
5
|
+
attributes :name, :interval, :organization_id, :whitelist, :blacklist, :hypervisor_id,
|
6
|
+
:hypervisor_type, :hypervisor_server, :hypervisor_username, :debug,
|
7
|
+
:satellite_url, :proxy, :no_proxy, :status, :last_report_at, :out_of_date_at
|
8
|
+
attributes :listing_mode => :filtering_mode
|
@@ -1,10 +1,11 @@
|
|
1
1
|
<% stylesheet 'foreman_virt_who_configure/config' %>
|
2
|
+
<% javascript 'foreman_virt_who_configure/config_copy_and_paste' %>
|
2
3
|
|
3
4
|
<div class="clearfix">
|
4
5
|
<div class="form-group">
|
5
6
|
<div class="row">
|
6
7
|
<div class="col-md-12">
|
7
|
-
<label><%= _("
|
8
|
+
<label><%= _("To deploy this configuration. run this script on the target host which has access to Red Hat Satellite Tools repository and will run virt-who reporting, preferably Satellite host:") %></label>
|
8
9
|
<p>
|
9
10
|
<%= _("On the target virt-who host:") %></br>
|
10
11
|
<%= _("1. Copy this configuration script to a safe directory.") %></br>
|
@@ -16,10 +17,15 @@
|
|
16
17
|
|
17
18
|
<div class="row">
|
18
19
|
<div class="col-md-8">
|
19
|
-
<
|
20
|
+
<div class="pull-right">
|
21
|
+
<%= link_to _('Edit this configuration'), edit_foreman_virt_who_configure_config_path(@config), :class => 'btn btn-default' %>
|
22
|
+
<%= link_to _('Download the script'), deploy_script_foreman_virt_who_configure_config_path(@config), :class => 'btn btn-default' %>
|
23
|
+
<%= link_to _('Copy to clipboard'), nil, :class => 'btn btn-default', :onclick => 'virt_who_copy_configuration_to_clipboard($("pre.terminal").html())' %>
|
24
|
+
</div>
|
25
|
+
|
26
|
+
<h3><%= _('Configuration script: ') %></h3>
|
27
|
+
<pre class="terminal"><%= @config.virt_who_config_script %></pre>
|
20
28
|
</div>
|
21
29
|
</div>
|
22
30
|
</div>
|
23
31
|
</div>
|
24
|
-
|
25
|
-
<%= link_to _('Change this configuration'), edit_foreman_virt_who_configure_config_path(@config), :class => 'btn btn-default' %>
|
@@ -1,16 +1,16 @@
|
|
1
1
|
<div id="config_connection">
|
2
|
-
<%= text_f f, :satellite_url,
|
3
|
-
<%= select_f f, :hypervisor_id, ForemanVirtWhoConfigure::Config::HYPERVISOR_IDS, :to_s, :to_s, {}, :label => _('Hypervisor ID')
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
names but can cause duplicated hypervisor registrations if the host is renamed. <b>hwuuid</b> is applicable to esx and rhevm only.
|
8
|
-
This property is meant to be set up before the initial run of virt-who. Changing it later will result in duplicated entries in the subscription manager.").html_safe) %>
|
9
|
-
<%=
|
10
|
-
|
11
|
-
<%= textarea_f f, :whitelist,
|
12
|
-
<%= textarea_f f, :blacklist,
|
2
|
+
<%= text_f f, :satellite_url, inline_help_popover(_('Satellite Server’s fully-qualified host name, for example: satellite.example.com')).merge(:label => _('Satellite server FQDN')) %>
|
3
|
+
<%= select_f f, :hypervisor_id, ForemanVirtWhoConfigure::Config::HYPERVISOR_IDS, :to_s, :to_s, {}, { :label => _('Hypervisor ID') }.merge(
|
4
|
+
inline_help_popover(_("Specifies that hypervisors will be identified by their <b>hostname</b>, <b>uuid</b> or <b>hwuuid</b>.
|
5
|
+
Note that some virtualization backends don't have all of them implemented.
|
6
|
+
Default is <b>hostname</b>, which provides more meaningful hypervisor
|
7
|
+
names, but can cause duplicated hypervisor registrations if the host is renamed. To avoid that, you can use <b>uuid</b> instead. <b>hwuuid</b> is applicable to esx and rhevm only.
|
8
|
+
This property is meant to be set up before the initial run of virt-who. Changing it later will result in duplicated entries in the subscription manager.").html_safe)) %>
|
9
|
+
<%= selectable_f f, :listing_mode, ForemanVirtWhoConfigure::Config::FILTERING_MODES.map { |k,v| [_(v), k] }, {}, { :label => _('Filtering') }.merge(
|
10
|
+
inline_help_popover(_("If you run a hybrid environment, with virtual machines running Red Hat Enterprise Linux and other operating systems, you may want to limit the scope of virt-who’s access to hosts. For example, if some hypervisors host only Microsoft Windows Server instances, there is no benefit in having those hypervisors reported by the virt-who agent."))) %>
|
11
|
+
<%= textarea_f f, :whitelist, inline_help_popover(_('Only hosts which uuid (or hostname or hwuuid, based on <code>hypervisor_id</code>) is specified in comma-separated list in this option will be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end.')).merge(:label => _('Filter hosts')) %>
|
12
|
+
<%= textarea_f f, :blacklist, inline_help_popover(_('Hosts which uuid (or hostname or hwuuid, based on <code>hypervisor_id</code>) is specified in comma-separated list in this option will <b>NOT</b> be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end.')).merge(:label => _('Exclude hosts')) %>
|
13
13
|
<%= checkbox_f f, :debug, :label => _('Do you want to enable debugging output?') %>
|
14
|
-
<%= text_f f, :proxy,
|
15
|
-
<%= text_f f, :no_proxy,
|
14
|
+
<%= text_f f, :proxy, inline_help_popover(_('HTTP proxy that should be used for communication between the server on which virt-who is running and the hypervisors and virtualization managers. Leave this blank if no proxy is used.')).merge(:label => _('HTTP proxy')) %>
|
15
|
+
<%= text_f f, :no_proxy, inline_help_popover(_('A comma-separated list of hostnames or domains or ip addresses to ignore proxy settings for. Optionally this may be set to <code>*</code> to bypass proxy settings for all hostnames domains or ip addresses.')).merge(:label => _('Ignore proxy')) %>
|
16
16
|
</div>
|
@@ -1,5 +1,5 @@
|
|
1
1
|
<div id="config_general_information">
|
2
|
-
<%= text_f f, :name,
|
2
|
+
<%= text_f f, :name, inline_help_popover(_('Name of this configuration, e.g. the name of the hypervisor')) %>
|
3
3
|
|
4
4
|
<% if f.object.organization_id.present? %>
|
5
5
|
<%= f.hidden_field :organization_id %>
|
@@ -8,7 +8,7 @@
|
|
8
8
|
<% end %>
|
9
9
|
|
10
10
|
<%= select_f f, :hypervisor_type, ForemanVirtWhoConfigure::Config::HYPERVISOR_TYPES, :first, :last %>
|
11
|
-
<%= text_f f, :hypervisor_server,
|
12
|
-
<%= text_f f, :hypervisor_username,
|
13
|
-
<%= password_f f, :hypervisor_password, :value => f.object.hypervisor_password
|
11
|
+
<%= text_f f, :hypervisor_server, inline_help_popover(hypervisor_server_help_data[f.object.hypervisor_type]).merge(:data => { :help => hypervisor_server_help_data }) %>
|
12
|
+
<%= text_f f, :hypervisor_username, inline_help_popover(hypervisor_username_help_data[f.object.hypervisor_type]).merge(:data => { :help => hypervisor_username_help_data }) %>
|
13
|
+
<%= password_f f, :hypervisor_password, { :value => f.object.hypervisor_password }.merge(inline_help_popover(_('Account password by which virt-who is to connect to the hypervisor instance.'))) %>
|
14
14
|
</div>
|
@@ -1,4 +1,3 @@
|
|
1
1
|
<div id="config_schedule">
|
2
|
-
<%=
|
3
|
-
:help_inline => popover('', _("How often to check connected hypervisors for changes? Also affects how often a mapping is reported. The recommended value for most environments is every two hours.")) %>
|
2
|
+
<%= selectable_f f, :interval, ForemanVirtWhoConfigure::Config::AVAILABLE_INTERVALS.map { |k,v| [_(v), k] }, {}, inline_help_popover(_("How often to check connected hypervisors for changes? Also affects how often a mapping is reported. The recommended value for most environments is every two hours.")) %>
|
4
3
|
</div>
|
data/config/routes.rb
CHANGED
@@ -4,6 +4,25 @@ Rails.application.routes.draw do
|
|
4
4
|
collection do
|
5
5
|
get 'auto_complete_search'
|
6
6
|
end
|
7
|
+
|
8
|
+
member do
|
9
|
+
get 'deploy_script'
|
10
|
+
end
|
11
|
+
end
|
12
|
+
|
13
|
+
namespace :api, :defaults => {:format => 'json'} do
|
14
|
+
scope "(:apiv)", :module => :v2, :defaults => {:apiv => 'v2'}, :apiv => /v1|v2/, :constraints => ApiConstraints.new(:version => 2) do
|
15
|
+
resources :configs do
|
16
|
+
get :deploy_script, :on => :member
|
17
|
+
end
|
18
|
+
|
19
|
+
if SETTINGS[:organizations_enabled]
|
20
|
+
resources :organizations, :except => [:new, :edit] do
|
21
|
+
# scoped by organization
|
22
|
+
resources :configs, :only => [:index, :show]
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
7
26
|
end
|
8
27
|
end
|
9
28
|
end
|
@@ -17,18 +17,32 @@ module ForemanVirtWhoConfigure
|
|
17
17
|
end
|
18
18
|
end
|
19
19
|
|
20
|
+
initializer 'foreman_virt_who_configure.register_shell_script_mime_type' do
|
21
|
+
Mime::Type.register "text/x-shellscript", :sh
|
22
|
+
end
|
23
|
+
|
24
|
+
initializer 'foreman_virt_who_configure.apipie' do
|
25
|
+
Apipie.configuration.checksum_path += ['/api/']
|
26
|
+
end
|
27
|
+
|
20
28
|
initializer 'foreman_virt_who_configure.register_plugin', :before => :finisher_hook do |_app|
|
21
29
|
Foreman::Plugin.register :foreman_virt_who_configure do
|
22
30
|
requires_foreman '>= 1.11'
|
23
31
|
requires_foreman_plugin 'katello', '>= 3.0.0'
|
24
32
|
|
33
|
+
apipie_documented_controllers ["#{ForemanVirtWhoConfigure::Engine.root}/app/controllers/foreman_virt_who_configure/api/v2/*.rb"]
|
34
|
+
|
25
35
|
# Add permissions
|
26
36
|
security_block :foreman_virt_who_configure do
|
27
37
|
permission_options = { :resource_type => 'ForemanVirtWhoConfigure::Config' }
|
28
|
-
permission :view_virt_who_config, { :'foreman_virt_who_configure/configs' => [:index, :show, :auto_complete_search]
|
29
|
-
|
30
|
-
permission :
|
31
|
-
|
38
|
+
permission :view_virt_who_config, { :'foreman_virt_who_configure/configs' => [:index, :show, :auto_complete_search, :deploy_script],
|
39
|
+
:'foreman_virt_who_configure/api/v2/configs' => [:index, :show, :deploy_script] }, permission_options
|
40
|
+
permission :create_virt_who_config, { :'foreman_virt_who_configure/configs' => [:new, :create],
|
41
|
+
:'foreman_virt_who_configure/api/v2/configs' => [:create] }, permission_options
|
42
|
+
permission :edit_virt_who_config, { :'foreman_virt_who_configure/configs' => [:edit, :update],
|
43
|
+
:'foreman_virt_who_configure/api/v2/configs' => [:update] }, permission_options
|
44
|
+
permission :destroy_virt_who_config, { :'foreman_virt_who_configure/configs' => [:destroy],
|
45
|
+
:'foreman_virt_who_configure/api/v2/configs' => [:destroy] }, permission_options
|
32
46
|
end
|
33
47
|
|
34
48
|
reporter_permissions = [ :create_hosts, :edit_hosts, :view_lifecycle_environments, :my_organizations ]
|
@@ -0,0 +1 @@
|
|
1
|
+
# Autogenerated!
|
Binary file
|
@@ -0,0 +1,733 @@
|
|
1
|
+
# foreman_virt_who_configure
|
2
|
+
#
|
3
|
+
# This file is distributed under the same license as foreman_virt_who_configure.
|
4
|
+
#
|
5
|
+
msgid ""
|
6
|
+
msgstr ""
|
7
|
+
"Project-Id-Version: version 0.0.1\n"
|
8
|
+
"Report-Msgid-Bugs-To: \n"
|
9
|
+
"PO-Revision-Date: 2014-08-20 08:54+0100\n"
|
10
|
+
"Last-Translator: Foreman Team <foreman-dev@googlegroups.com>\n"
|
11
|
+
"Language-Team: Foreman Team <foreman-dev@googlegroups.com>\n"
|
12
|
+
"Language: \n"
|
13
|
+
"MIME-Version: 1.0\n"
|
14
|
+
"Content-Type: text/plain; charset=UTF-8\n"
|
15
|
+
"Content-Transfer-Encoding: 8bit\n"
|
16
|
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
17
|
+
|
18
|
+
#: ../app/controllers/foreman_virt_who_configure/api/v2/configs_controller.rb:13
|
19
|
+
msgid "List of virt-who configurations"
|
20
|
+
msgstr ""
|
21
|
+
|
22
|
+
#: ../app/controllers/foreman_virt_who_configure/api/v2/configs_controller.rb:14
|
23
|
+
msgid "List of virt-who configurations per organization"
|
24
|
+
msgstr ""
|
25
|
+
|
26
|
+
#: ../app/controllers/foreman_virt_who_configure/api/v2/configs_controller.rb:21
|
27
|
+
msgid "Show a virt-who configuration"
|
28
|
+
msgstr ""
|
29
|
+
|
30
|
+
#: ../app/controllers/foreman_virt_who_configure/api/v2/configs_controller.rb:27
|
31
|
+
msgid "Renders a deploy script for the specified virt-who configuration"
|
32
|
+
msgstr ""
|
33
|
+
|
34
|
+
#: ../app/controllers/foreman_virt_who_configure/api/v2/configs_controller.rb:39
|
35
|
+
msgid "Configuration name"
|
36
|
+
msgstr ""
|
37
|
+
|
38
|
+
#: ../app/controllers/foreman_virt_who_configure/api/v2/configs_controller.rb:40
|
39
|
+
msgid "Configuration interval in minutes"
|
40
|
+
msgstr ""
|
41
|
+
|
42
|
+
#: ../app/controllers/foreman_virt_who_configure/api/v2/configs_controller.rb:41
|
43
|
+
msgid "Hypervisor filtering mode, %{unlimited} means no filtering, %{whitelist} means whitelist, %{blacklist} means blacklist"
|
44
|
+
msgstr ""
|
45
|
+
|
46
|
+
#: ../app/controllers/foreman_virt_who_configure/api/v2/configs_controller.rb:42
|
47
|
+
msgid "Hypervisor whitelist, applicable only when filtering mode is set to 1. Wildcards and regular expressions are supported, multiple records must be separated by comma."
|
48
|
+
msgstr ""
|
49
|
+
|
50
|
+
#: ../app/controllers/foreman_virt_who_configure/api/v2/configs_controller.rb:43
|
51
|
+
msgid "Hypervisor blacklist, applicable only when filtering mode is set to 2. Wildcards and regular expressions are supported, multiple records must be separated by comma."
|
52
|
+
msgstr ""
|
53
|
+
|
54
|
+
#: ../app/controllers/foreman_virt_who_configure/api/v2/configs_controller.rb:44
|
55
|
+
msgid "Specifies how the hypervisor will be identified."
|
56
|
+
msgstr ""
|
57
|
+
|
58
|
+
#: ../app/controllers/foreman_virt_who_configure/api/v2/configs_controller.rb:45
|
59
|
+
msgid "Hypervisor type"
|
60
|
+
msgstr ""
|
61
|
+
|
62
|
+
#: ../app/controllers/foreman_virt_who_configure/api/v2/configs_controller.rb:46
|
63
|
+
msgid "Fully qualified host name or IP address of the hypervisor"
|
64
|
+
msgstr ""
|
65
|
+
|
66
|
+
#: ../app/controllers/foreman_virt_who_configure/api/v2/configs_controller.rb:47 ../app/helpers/foreman_virt_who_configure/configs_helper.rb:20
|
67
|
+
msgid "Account name by which virt-who is to connect to the hypervisor."
|
68
|
+
msgstr ""
|
69
|
+
|
70
|
+
#: ../app/controllers/foreman_virt_who_configure/api/v2/configs_controller.rb:48
|
71
|
+
msgid "Hypervisor password, required for all hypervisor types except for libvirt"
|
72
|
+
msgstr ""
|
73
|
+
|
74
|
+
#: ../app/controllers/foreman_virt_who_configure/api/v2/configs_controller.rb:49 ../app/views/foreman_virt_who_configure/configs/steps/_connection_form.erb:2
|
75
|
+
msgid "Satellite server FQDN"
|
76
|
+
msgstr ""
|
77
|
+
|
78
|
+
#: ../app/controllers/foreman_virt_who_configure/api/v2/configs_controller.rb:50
|
79
|
+
msgid "Enable debugging output"
|
80
|
+
msgstr ""
|
81
|
+
|
82
|
+
#: ../app/controllers/foreman_virt_who_configure/api/v2/configs_controller.rb:51
|
83
|
+
msgid "HTTP proxy that should be used for communication between the server on which virt-who is running and the hypervisors and virtualization managers."
|
84
|
+
msgstr ""
|
85
|
+
|
86
|
+
#: ../app/controllers/foreman_virt_who_configure/api/v2/configs_controller.rb:52
|
87
|
+
msgid "Ignore proxy. A comma-separated list of hostnames or domains or ip addresses to ignore proxy settings for. Optionally this may be set to * to bypass proxy settings for all hostnames domains or ip addresses."
|
88
|
+
msgstr ""
|
89
|
+
|
90
|
+
#: ../app/controllers/foreman_virt_who_configure/api/v2/configs_controller.rb:53
|
91
|
+
msgid "Organization of the virt-who configuration"
|
92
|
+
msgstr ""
|
93
|
+
|
94
|
+
#: ../app/controllers/foreman_virt_who_configure/api/v2/configs_controller.rb:57
|
95
|
+
msgid "Create a virt-who configuration"
|
96
|
+
msgstr ""
|
97
|
+
|
98
|
+
#: ../app/controllers/foreman_virt_who_configure/api/v2/configs_controller.rb:65
|
99
|
+
msgid "Update a virt-who configuration"
|
100
|
+
msgstr ""
|
101
|
+
|
102
|
+
#: ../app/controllers/foreman_virt_who_configure/api/v2/configs_controller.rb:66 ../app/controllers/foreman_virt_who_configure/api/v2/configs_controller.rb:74
|
103
|
+
msgid "Configuration numeric identifier"
|
104
|
+
msgstr ""
|
105
|
+
|
106
|
+
#: ../app/controllers/foreman_virt_who_configure/api/v2/configs_controller.rb:73
|
107
|
+
msgid "Delete a virt-who configuration"
|
108
|
+
msgstr ""
|
109
|
+
|
110
|
+
#: ../app/helpers/foreman_virt_who_configure/compatibility_helper.rb:7
|
111
|
+
msgid "Create Config"
|
112
|
+
msgstr ""
|
113
|
+
|
114
|
+
#: ../app/helpers/foreman_virt_who_configure/compatibility_helper.rb:9
|
115
|
+
msgid "New Config"
|
116
|
+
msgstr ""
|
117
|
+
|
118
|
+
#: ../app/helpers/foreman_virt_who_configure/compatibility_helper.rb:16
|
119
|
+
msgid "Help"
|
120
|
+
msgstr ""
|
121
|
+
|
122
|
+
#: ../app/helpers/foreman_virt_who_configure/configs_helper.rb:5
|
123
|
+
msgid "VMware vCenter server’s fully qualified host name or IP address."
|
124
|
+
msgstr ""
|
125
|
+
|
126
|
+
#: ../app/helpers/foreman_virt_who_configure/configs_helper.rb:6
|
127
|
+
msgid "Red Hat Virtualization Manager’s fully qualified host name or IP address. For example, <code>https://hostname:443/ovirt-engine/</code> for v4, <code>https://hostname_or_IP:443</code> for v3"
|
128
|
+
msgstr ""
|
129
|
+
|
130
|
+
#: ../app/helpers/foreman_virt_who_configure/configs_helper.rb:8
|
131
|
+
msgid "Microsoft Hyper-V fully qualified host name or IP address."
|
132
|
+
msgstr ""
|
133
|
+
|
134
|
+
#: ../app/helpers/foreman_virt_who_configure/configs_helper.rb:9
|
135
|
+
msgid "XenServer server’s fully qualified host name or IP address."
|
136
|
+
msgstr ""
|
137
|
+
|
138
|
+
#: ../app/helpers/foreman_virt_who_configure/configs_helper.rb:10
|
139
|
+
msgid "Libvirt server’s fully qualified host name or IP address. You can also specify preferred schema, for example: <code>qemu+ssh://libvirt.example.com/system</code>. If you use SSH, make sure you setup root's SSH key on target host for a user specified at hypervisor username field"
|
140
|
+
msgstr ""
|
141
|
+
|
142
|
+
#: ../app/helpers/foreman_virt_who_configure/configs_helper.rb:16
|
143
|
+
msgid "Account name by which virt-who is to connect to the hypervisor, in the format <code>domain_name\\account_name</code>. Note that only a single backslash separates the values for domain_name and account_name. If you are using a domain account, and the global configuration file <code>/etc/sysconfig/virt-who</code>, then <b>two</b> backslashes are required. For further details, see <a href=\"https://access.redhat.com/solutions/1270223\">Red Hat Knowledgebase solution How to use a windows domain account with virt-who</a> for more information."
|
144
|
+
msgstr ""
|
145
|
+
|
146
|
+
#: ../app/helpers/foreman_virt_who_configure/configs_helper.rb:17
|
147
|
+
msgid "Account name by which virt-who is to connect to the Red Hat Enterprise Virtualization Manager instance. The username option requires input in the format username@domain."
|
148
|
+
msgstr ""
|
149
|
+
|
150
|
+
#: ../app/helpers/foreman_virt_who_configure/configs_helper.rb:19
|
151
|
+
msgid "Account name by which virt-who is to connect to the hypervisor. By default this is <code>Administrator</code>. To use an alternate account, create a user account and assign that account to the following groups (Windows 2012 Server): Hyper-V Administrators and Remote Management Users."
|
152
|
+
msgstr ""
|
153
|
+
|
154
|
+
#: ../app/helpers/foreman_virt_who_configure/configs_helper.rb:21
|
155
|
+
msgid "Account name by which virt-who is to connect to the hypervisor. Virt-who does not support password based authentication, you must manually setup SSH key, see <a href=\"https://access.redhat.com/solutions/1515983\">Red Hat Knowledgebase solution How to configure virt-who for a KVM host</a> for more information."
|
156
|
+
msgstr ""
|
157
|
+
|
158
|
+
#: ../app/helpers/foreman_virt_who_configure/configs_helper.rb:28
|
159
|
+
msgid "No Report Yet"
|
160
|
+
msgstr ""
|
161
|
+
|
162
|
+
#: ../app/helpers/foreman_virt_who_configure/configs_helper.rb:32
|
163
|
+
msgid "Unknown configuration status"
|
164
|
+
msgstr ""
|
165
|
+
|
166
|
+
#: ../app/models/foreman_virt_who_configure/config.rb:16
|
167
|
+
msgid "Unlimited"
|
168
|
+
msgstr ""
|
169
|
+
|
170
|
+
#: ../app/models/foreman_virt_who_configure/config.rb:17
|
171
|
+
msgid "Whitelist"
|
172
|
+
msgstr ""
|
173
|
+
|
174
|
+
#: ../app/models/foreman_virt_who_configure/config.rb:18
|
175
|
+
msgid "Blacklist"
|
176
|
+
msgstr ""
|
177
|
+
|
178
|
+
#: ../app/models/foreman_virt_who_configure/config.rb:22
|
179
|
+
msgid "General information"
|
180
|
+
msgstr ""
|
181
|
+
|
182
|
+
#: ../app/models/foreman_virt_who_configure/config.rb:23
|
183
|
+
msgid "Schedule"
|
184
|
+
msgstr ""
|
185
|
+
|
186
|
+
#: ../app/models/foreman_virt_who_configure/config.rb:24
|
187
|
+
msgid "Connection"
|
188
|
+
msgstr ""
|
189
|
+
|
190
|
+
#: ../app/models/foreman_virt_who_configure/config.rb:41
|
191
|
+
msgid "Every hour"
|
192
|
+
msgstr ""
|
193
|
+
|
194
|
+
#: ../app/models/foreman_virt_who_configure/config.rb:42
|
195
|
+
msgid "Every 2 hours"
|
196
|
+
msgstr ""
|
197
|
+
|
198
|
+
#: ../app/models/foreman_virt_who_configure/config.rb:43
|
199
|
+
msgid "Every 4 hours"
|
200
|
+
msgstr ""
|
201
|
+
|
202
|
+
#: ../app/models/foreman_virt_who_configure/config.rb:44
|
203
|
+
msgid "Every 8 hours"
|
204
|
+
msgstr ""
|
205
|
+
|
206
|
+
#: ../app/models/foreman_virt_who_configure/config.rb:45
|
207
|
+
msgid "Every 12 hours"
|
208
|
+
msgstr ""
|
209
|
+
|
210
|
+
#: ../app/models/foreman_virt_who_configure/config.rb:51
|
211
|
+
msgid "OK"
|
212
|
+
msgstr ""
|
213
|
+
|
214
|
+
#: ../app/models/foreman_virt_who_configure/config.rb:52
|
215
|
+
msgid "No change"
|
216
|
+
msgstr ""
|
217
|
+
|
218
|
+
#: ../app/models/foreman_virt_who_configure/config.rb:53
|
219
|
+
msgid "Unknown"
|
220
|
+
msgstr ""
|
221
|
+
|
222
|
+
#: ../app/models/foreman_virt_who_configure/config.rb:56
|
223
|
+
msgid "Unknown configuration status, caused by unexpected conditions"
|
224
|
+
msgstr ""
|
225
|
+
|
226
|
+
#: ../app/models/foreman_virt_who_configure/config.rb:58
|
227
|
+
msgid "The configuration was not deployed yet or the virt-who was unable to report the status"
|
228
|
+
msgstr ""
|
229
|
+
|
230
|
+
#: ../app/models/foreman_virt_who_configure/config.rb:59
|
231
|
+
msgid "The virt-who report arrived within the interval"
|
232
|
+
msgstr ""
|
233
|
+
|
234
|
+
#: ../app/models/foreman_virt_who_configure/config.rb:60
|
235
|
+
msgid "The virt-who report has not arrived within the interval, which indicates there was no change on hypervisor"
|
236
|
+
msgstr ""
|
237
|
+
|
238
|
+
#: ../app/models/foreman_virt_who_configure/config.rb:154
|
239
|
+
msgid "every %s hours"
|
240
|
+
msgstr ""
|
241
|
+
|
242
|
+
#: ../app/models/foreman_virt_who_configure/output_generator.rb:13
|
243
|
+
msgid "Success"
|
244
|
+
msgstr ""
|
245
|
+
|
246
|
+
#: ../app/models/foreman_virt_who_configure/output_generator.rb:14
|
247
|
+
msgid "Newer version of virt-who is required, minimum version is %s"
|
248
|
+
msgstr ""
|
249
|
+
|
250
|
+
#: ../app/models/foreman_virt_who_configure/output_generator.rb:15
|
251
|
+
msgid "Unable to create virt-who config file"
|
252
|
+
msgstr ""
|
253
|
+
|
254
|
+
#: ../app/models/foreman_virt_who_configure/output_generator.rb:16
|
255
|
+
msgid "Unable to create sysconfig file"
|
256
|
+
msgstr ""
|
257
|
+
|
258
|
+
#: ../app/models/foreman_virt_who_configure/output_generator.rb:17
|
259
|
+
msgid "Unable to enable virt-who service using chkconfig"
|
260
|
+
msgstr ""
|
261
|
+
|
262
|
+
#: ../app/models/foreman_virt_who_configure/output_generator.rb:18
|
263
|
+
msgid "Unable to start virt-who service, please see virt-who logs for more details"
|
264
|
+
msgstr ""
|
265
|
+
|
266
|
+
#: ../app/models/foreman_virt_who_configure/output_generator.rb:19
|
267
|
+
msgid "Unable to install virt-who package, make sure the host is properly subscribed and has access to satellite-tools repository"
|
268
|
+
msgstr ""
|
269
|
+
|
270
|
+
#: ../app/models/foreman_virt_who_configure/output_generator.rb:39
|
271
|
+
msgid "Owner was not provided"
|
272
|
+
msgstr ""
|
273
|
+
|
274
|
+
#: ../app/models/foreman_virt_who_configure/output_generator.rb:40
|
275
|
+
msgid "Interval was not provided"
|
276
|
+
msgstr ""
|
277
|
+
|
278
|
+
#: ../app/views/dashboard/_foreman_virt_who_configs_status_widget.html.erb:5
|
279
|
+
msgid "Virt-who Configurations Status"
|
280
|
+
msgstr ""
|
281
|
+
|
282
|
+
#: ../app/views/dashboard/_foreman_virt_who_configs_status_widget.html.erb:9
|
283
|
+
msgid "Configuration Status"
|
284
|
+
msgstr ""
|
285
|
+
|
286
|
+
#: ../app/views/dashboard/_foreman_virt_who_configs_status_widget.html.erb:10
|
287
|
+
msgid "Count"
|
288
|
+
msgstr ""
|
289
|
+
|
290
|
+
#: ../app/views/dashboard/_foreman_virt_who_configs_status_widget.html.erb:15
|
291
|
+
msgid "No Reports"
|
292
|
+
msgstr ""
|
293
|
+
|
294
|
+
#: ../app/views/dashboard/_foreman_virt_who_configs_status_widget.html.erb:19
|
295
|
+
msgid "Out Of Date"
|
296
|
+
msgstr ""
|
297
|
+
|
298
|
+
#: ../app/views/dashboard/_foreman_virt_who_configs_status_widget.html.erb:23
|
299
|
+
msgid "Up To Date"
|
300
|
+
msgstr ""
|
301
|
+
|
302
|
+
#: ../app/views/dashboard/_foreman_virt_who_configs_status_widget.html.erb:27
|
303
|
+
msgid "Total Configurations"
|
304
|
+
msgstr ""
|
305
|
+
|
306
|
+
#: ../app/views/dashboard/_foreman_virt_who_configs_status_widget.html.erb:33
|
307
|
+
msgid "Latest Out of Date Configurations"
|
308
|
+
msgstr ""
|
309
|
+
|
310
|
+
#: ../app/views/dashboard/_foreman_virt_who_configs_status_widget.html.erb:35
|
311
|
+
msgid "No configuration found"
|
312
|
+
msgstr ""
|
313
|
+
|
314
|
+
#: ../app/views/dashboard/_foreman_virt_who_configs_status_widget.html.erb:40 ../app/views/foreman_virt_who_configure/configs/index.html.erb:8
|
315
|
+
msgid "Config|Name"
|
316
|
+
msgstr ""
|
317
|
+
|
318
|
+
#: ../app/views/dashboard/_foreman_virt_who_configs_status_widget.html.erb:41
|
319
|
+
msgid "Config|Last Report"
|
320
|
+
msgstr ""
|
321
|
+
|
322
|
+
#: ../app/views/dashboard/_foreman_virt_who_configs_status_widget.html.erb:42 ../app/views/foreman_virt_who_configure/configs/index.html.erb:9
|
323
|
+
msgid "Config|Interval"
|
324
|
+
msgstr ""
|
325
|
+
|
326
|
+
#: ../app/views/foreman_virt_who_configure/configs/edit.html.erb:1
|
327
|
+
msgid "Edit Virt-who Config"
|
328
|
+
msgstr ""
|
329
|
+
|
330
|
+
#: ../app/views/foreman_virt_who_configure/configs/index.html.erb:1
|
331
|
+
msgid "Virt-who Configurations"
|
332
|
+
msgstr ""
|
333
|
+
|
334
|
+
#: ../app/views/foreman_virt_who_configure/configs/index.html.erb:10
|
335
|
+
msgid "Status"
|
336
|
+
msgstr ""
|
337
|
+
|
338
|
+
#: ../app/views/foreman_virt_who_configure/configs/index.html.erb:11
|
339
|
+
msgid "Actions"
|
340
|
+
msgstr ""
|
341
|
+
|
342
|
+
#: ../app/views/foreman_virt_who_configure/configs/index.html.erb:21
|
343
|
+
msgid "Edit"
|
344
|
+
msgstr ""
|
345
|
+
|
346
|
+
#: ../app/views/foreman_virt_who_configure/configs/index.html.erb:22
|
347
|
+
msgid "Delete virt-who configuration %s?"
|
348
|
+
msgstr ""
|
349
|
+
|
350
|
+
#: ../app/views/foreman_virt_who_configure/configs/new.html.erb:1
|
351
|
+
msgid "New Virt-who Config"
|
352
|
+
msgstr ""
|
353
|
+
|
354
|
+
#: ../app/views/foreman_virt_who_configure/configs/show.html.erb:8
|
355
|
+
msgid "To deploy this configuration. run this script on the target host which has access to Red Hat Satellite Tools repository and will run virt-who reporting, preferably Satellite host:"
|
356
|
+
msgstr ""
|
357
|
+
|
358
|
+
#: ../app/views/foreman_virt_who_configure/configs/show.html.erb:10
|
359
|
+
msgid "On the target virt-who host:"
|
360
|
+
msgstr ""
|
361
|
+
|
362
|
+
#: ../app/views/foreman_virt_who_configure/configs/show.html.erb:11
|
363
|
+
msgid "1. Copy this configuration script to a safe directory."
|
364
|
+
msgstr ""
|
365
|
+
|
366
|
+
#: ../app/views/foreman_virt_who_configure/configs/show.html.erb:12
|
367
|
+
msgid "2. Make the script executable and run it."
|
368
|
+
msgstr ""
|
369
|
+
|
370
|
+
#: ../app/views/foreman_virt_who_configure/configs/show.html.erb:13
|
371
|
+
msgid "3. Delete the script."
|
372
|
+
msgstr ""
|
373
|
+
|
374
|
+
#: ../app/views/foreman_virt_who_configure/configs/show.html.erb:21
|
375
|
+
msgid "Edit this configuration"
|
376
|
+
msgstr ""
|
377
|
+
|
378
|
+
#: ../app/views/foreman_virt_who_configure/configs/show.html.erb:22
|
379
|
+
msgid "Download the script"
|
380
|
+
msgstr ""
|
381
|
+
|
382
|
+
#: ../app/views/foreman_virt_who_configure/configs/show.html.erb:23
|
383
|
+
msgid "Copy to clipboard"
|
384
|
+
msgstr ""
|
385
|
+
|
386
|
+
#: ../app/views/foreman_virt_who_configure/configs/show.html.erb:26
|
387
|
+
msgid "Configuration script: "
|
388
|
+
msgstr ""
|
389
|
+
|
390
|
+
#: ../app/views/foreman_virt_who_configure/configs/steps/_connection_form.erb:2
|
391
|
+
msgid "Satellite Server’s fully-qualified host name, for example: satellite.example.com"
|
392
|
+
msgstr ""
|
393
|
+
|
394
|
+
#: ../app/views/foreman_virt_who_configure/configs/steps/_connection_form.erb:3
|
395
|
+
msgid "Hypervisor ID"
|
396
|
+
msgstr ""
|
397
|
+
|
398
|
+
#: ../app/views/foreman_virt_who_configure/configs/steps/_connection_form.erb:4
|
399
|
+
msgid ""
|
400
|
+
"Specifies that hypervisors will be identified by their <b>hostname</b>, <b>uuid</b> or <b>hwuuid</b>.\n"
|
401
|
+
" Note that some virtualization backends don't have all of them implemented.\n"
|
402
|
+
" Default is <b>hostname</b>, which provides more meaningful hypervisor\n"
|
403
|
+
" names, but can cause duplicated hypervisor registrations if the host is renamed. To avoid that, you can use <b>uuid</b> instead. <b>hwuuid</b> is applicable to esx and rhevm only.\n"
|
404
|
+
" This property is meant to be set up before the initial run of virt-who. Changing it later will result in duplicated entries in the subscription manager."
|
405
|
+
msgstr ""
|
406
|
+
|
407
|
+
#: ../app/views/foreman_virt_who_configure/configs/steps/_connection_form.erb:9
|
408
|
+
msgid "Filtering"
|
409
|
+
msgstr ""
|
410
|
+
|
411
|
+
#: ../app/views/foreman_virt_who_configure/configs/steps/_connection_form.erb:10
|
412
|
+
msgid "If you run a hybrid environment, with virtual machines running Red Hat Enterprise Linux and other operating systems, you may want to limit the scope of virt-who’s access to hosts. For example, if some hypervisors host only Microsoft Windows Server instances, there is no benefit in having those hypervisors reported by the virt-who agent."
|
413
|
+
msgstr ""
|
414
|
+
|
415
|
+
#: ../app/views/foreman_virt_who_configure/configs/steps/_connection_form.erb:11
|
416
|
+
msgid "Only hosts which uuid (or hostname or hwuuid, based on <code>hypervisor_id</code>) is specified in comma-separated list in this option will be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end."
|
417
|
+
msgstr ""
|
418
|
+
|
419
|
+
#: ../app/views/foreman_virt_who_configure/configs/steps/_connection_form.erb:11
|
420
|
+
msgid "Filter hosts"
|
421
|
+
msgstr ""
|
422
|
+
|
423
|
+
#: ../app/views/foreman_virt_who_configure/configs/steps/_connection_form.erb:12
|
424
|
+
msgid "Hosts which uuid (or hostname or hwuuid, based on <code>hypervisor_id</code>) is specified in comma-separated list in this option will <b>NOT</b> be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end."
|
425
|
+
msgstr ""
|
426
|
+
|
427
|
+
#: ../app/views/foreman_virt_who_configure/configs/steps/_connection_form.erb:12
|
428
|
+
msgid "Exclude hosts"
|
429
|
+
msgstr ""
|
430
|
+
|
431
|
+
#: ../app/views/foreman_virt_who_configure/configs/steps/_connection_form.erb:13
|
432
|
+
msgid "Do you want to enable debugging output?"
|
433
|
+
msgstr ""
|
434
|
+
|
435
|
+
#: ../app/views/foreman_virt_who_configure/configs/steps/_connection_form.erb:14
|
436
|
+
msgid "HTTP proxy that should be used for communication between the server on which virt-who is running and the hypervisors and virtualization managers. Leave this blank if no proxy is used."
|
437
|
+
msgstr ""
|
438
|
+
|
439
|
+
#: ../app/views/foreman_virt_who_configure/configs/steps/_connection_form.erb:14
|
440
|
+
msgid "HTTP proxy"
|
441
|
+
msgstr ""
|
442
|
+
|
443
|
+
#: ../app/views/foreman_virt_who_configure/configs/steps/_connection_form.erb:15
|
444
|
+
msgid "A comma-separated list of hostnames or domains or ip addresses to ignore proxy settings for. Optionally this may be set to <code>*</code> to bypass proxy settings for all hostnames domains or ip addresses."
|
445
|
+
msgstr ""
|
446
|
+
|
447
|
+
#: ../app/views/foreman_virt_who_configure/configs/steps/_connection_form.erb:15
|
448
|
+
msgid "Ignore proxy"
|
449
|
+
msgstr ""
|
450
|
+
|
451
|
+
#: ../app/views/foreman_virt_who_configure/configs/steps/_general_information_form.erb:2
|
452
|
+
msgid "Name of this configuration, e.g. the name of the hypervisor"
|
453
|
+
msgstr ""
|
454
|
+
|
455
|
+
#: ../app/views/foreman_virt_who_configure/configs/steps/_general_information_form.erb:7
|
456
|
+
msgid "Owner"
|
457
|
+
msgstr ""
|
458
|
+
|
459
|
+
#: ../app/views/foreman_virt_who_configure/configs/steps/_general_information_form.erb:13
|
460
|
+
msgid "Account password by which virt-who is to connect to the hypervisor instance."
|
461
|
+
msgstr ""
|
462
|
+
|
463
|
+
#: ../app/views/foreman_virt_who_configure/configs/steps/_schedule_form.erb:2
|
464
|
+
msgid "How often to check connected hypervisors for changes? Also affects how often a mapping is reported. The recommended value for most environments is every two hours."
|
465
|
+
msgstr ""
|
466
|
+
|
467
|
+
#: ../app/views/foreman_virt_who_configure/configs/welcome.html.erb:5
|
468
|
+
msgid "Configs"
|
469
|
+
msgstr ""
|
470
|
+
|
471
|
+
#: ../app/views/foreman_virt_who_configure/configs/welcome.html.erb:7
|
472
|
+
msgid "On this page you can define virt-who configurations for your hypervisors."
|
473
|
+
msgstr ""
|
474
|
+
|
475
|
+
#: ../app/views/foreman_virt_who_configure/configs/welcome.html.erb:8
|
476
|
+
msgid "One virt-who configuration represents one config file in /etc/virt-who.d directory and maps to single hypervisor, organization and lifecycle environment."
|
477
|
+
msgstr ""
|
478
|
+
|
479
|
+
#: ../app/views/foreman_virt_who_configure/configs/welcome.html.erb:9
|
480
|
+
msgid "To define a new configuration, click the New Config button and fill in the form. After you provide all required information a virt-who configuration script will be generated. You could either install it manually by copying the script or deploy it on a selected target host through Remote Execution."
|
481
|
+
msgstr ""
|
482
|
+
|
483
|
+
#: ../lib/foreman_virt_who_configure/engine.rb:73
|
484
|
+
msgid "Virt-who configurations"
|
485
|
+
msgstr ""
|
486
|
+
|
487
|
+
#: ../lib/foreman_virt_who_configure/engine.rb:78
|
488
|
+
msgid "Virt-who Configs Status"
|
489
|
+
msgstr ""
|
490
|
+
|
491
|
+
#: action_names.rb:2
|
492
|
+
msgid "Create"
|
493
|
+
msgstr ""
|
494
|
+
|
495
|
+
#: action_names.rb:3
|
496
|
+
msgid "Delete"
|
497
|
+
msgstr ""
|
498
|
+
|
499
|
+
#: action_names.rb:4
|
500
|
+
msgid "Export"
|
501
|
+
msgstr ""
|
502
|
+
|
503
|
+
#: action_names.rb:5
|
504
|
+
msgid "Incremental Update"
|
505
|
+
msgstr ""
|
506
|
+
|
507
|
+
#: action_names.rb:6
|
508
|
+
msgid "Delete Lifecycle Environment"
|
509
|
+
msgstr ""
|
510
|
+
|
511
|
+
#: action_names.rb:7
|
512
|
+
msgid "Attach subscriptions"
|
513
|
+
msgstr ""
|
514
|
+
|
515
|
+
#: action_names.rb:8
|
516
|
+
msgid "Auto attach subscriptions"
|
517
|
+
msgstr ""
|
518
|
+
|
519
|
+
#: action_names.rb:9
|
520
|
+
msgid "Destroy Content Host"
|
521
|
+
msgstr ""
|
522
|
+
|
523
|
+
#: action_names.rb:10
|
524
|
+
msgid "Install Applicable Errata"
|
525
|
+
msgstr ""
|
526
|
+
|
527
|
+
#: action_names.rb:11
|
528
|
+
msgid "Install erratum"
|
529
|
+
msgstr ""
|
530
|
+
|
531
|
+
#: action_names.rb:12
|
532
|
+
msgid "Hypervisors"
|
533
|
+
msgstr ""
|
534
|
+
|
535
|
+
#: action_names.rb:13
|
536
|
+
msgid "Hypervisors update"
|
537
|
+
msgstr ""
|
538
|
+
|
539
|
+
#: action_names.rb:14
|
540
|
+
msgid "Install package"
|
541
|
+
msgstr ""
|
542
|
+
|
543
|
+
#: action_names.rb:15
|
544
|
+
msgid "Remove package"
|
545
|
+
msgstr ""
|
546
|
+
|
547
|
+
#: action_names.rb:16
|
548
|
+
msgid "Update package"
|
549
|
+
msgstr ""
|
550
|
+
|
551
|
+
#: action_names.rb:17
|
552
|
+
msgid "Install package group"
|
553
|
+
msgstr ""
|
554
|
+
|
555
|
+
#: action_names.rb:18
|
556
|
+
msgid "Remove package group"
|
557
|
+
msgstr ""
|
558
|
+
|
559
|
+
#: action_names.rb:19
|
560
|
+
msgid "Register Host"
|
561
|
+
msgstr ""
|
562
|
+
|
563
|
+
#: action_names.rb:20
|
564
|
+
msgid "Remove subscriptions"
|
565
|
+
msgstr ""
|
566
|
+
|
567
|
+
#: action_names.rb:21
|
568
|
+
msgid "Unregister Host"
|
569
|
+
msgstr ""
|
570
|
+
|
571
|
+
#: action_names.rb:22
|
572
|
+
msgid "Update for host"
|
573
|
+
msgstr ""
|
574
|
+
|
575
|
+
#: action_names.rb:23
|
576
|
+
msgid "Package Profile Update"
|
577
|
+
msgstr ""
|
578
|
+
|
579
|
+
#: action_names.rb:24
|
580
|
+
msgid "Auto-attach subscriptions"
|
581
|
+
msgstr ""
|
582
|
+
|
583
|
+
#: action_names.rb:25
|
584
|
+
msgid "Destroy"
|
585
|
+
msgstr ""
|
586
|
+
|
587
|
+
#: action_names.rb:26
|
588
|
+
msgid "Product Create"
|
589
|
+
msgstr ""
|
590
|
+
|
591
|
+
#: action_names.rb:27
|
592
|
+
msgid "Delete Product"
|
593
|
+
msgstr ""
|
594
|
+
|
595
|
+
#: action_names.rb:28
|
596
|
+
msgid "Reindex subscriptions"
|
597
|
+
msgstr ""
|
598
|
+
|
599
|
+
#: action_names.rb:29
|
600
|
+
msgid "Update"
|
601
|
+
msgstr ""
|
602
|
+
|
603
|
+
#: action_names.rb:30
|
604
|
+
msgid "Errata mail"
|
605
|
+
msgstr ""
|
606
|
+
|
607
|
+
#: action_names.rb:31
|
608
|
+
msgid "Filtered index content"
|
609
|
+
msgstr ""
|
610
|
+
|
611
|
+
#: action_names.rb:32
|
612
|
+
msgid "Upload into"
|
613
|
+
msgstr ""
|
614
|
+
|
615
|
+
#: action_names.rb:33
|
616
|
+
msgid "Index content"
|
617
|
+
msgstr ""
|
618
|
+
|
619
|
+
#: action_names.rb:34
|
620
|
+
msgid "Index errata"
|
621
|
+
msgstr ""
|
622
|
+
|
623
|
+
#: action_names.rb:35
|
624
|
+
msgid "Index package groups"
|
625
|
+
msgstr ""
|
626
|
+
|
627
|
+
#: action_names.rb:36
|
628
|
+
msgid "Remove Content"
|
629
|
+
msgstr ""
|
630
|
+
|
631
|
+
#: action_names.rb:37
|
632
|
+
msgid "Synchronize"
|
633
|
+
msgstr ""
|
634
|
+
|
635
|
+
#: action_names.rb:38
|
636
|
+
msgid "Upload errata into"
|
637
|
+
msgstr ""
|
638
|
+
|
639
|
+
#: action_names.rb:39
|
640
|
+
msgid "Disable"
|
641
|
+
msgstr ""
|
642
|
+
|
643
|
+
#: action_names.rb:40
|
644
|
+
msgid "Enable"
|
645
|
+
msgstr ""
|
646
|
+
|
647
|
+
#: action_names.rb:41
|
648
|
+
msgid "Add Sync Plan Products"
|
649
|
+
msgstr ""
|
650
|
+
|
651
|
+
#: action_names.rb:42
|
652
|
+
msgid "Update Sync Plan Products"
|
653
|
+
msgstr ""
|
654
|
+
|
655
|
+
#: action_names.rb:43
|
656
|
+
msgid "Update Sync Plan"
|
657
|
+
msgstr ""
|
658
|
+
|
659
|
+
#: action_names.rb:44
|
660
|
+
msgid "Remote action:"
|
661
|
+
msgstr ""
|
662
|
+
|
663
|
+
#: action_names.rb:45
|
664
|
+
msgid "Report"
|
665
|
+
msgstr ""
|
666
|
+
|
667
|
+
#: action_names.rb:46
|
668
|
+
msgid "Action with sub plans"
|
669
|
+
msgstr ""
|
670
|
+
|
671
|
+
#: action_names.rb:47
|
672
|
+
msgid "Create architecture"
|
673
|
+
msgstr ""
|
674
|
+
|
675
|
+
#: action_names.rb:48
|
676
|
+
msgid "Delete architecture"
|
677
|
+
msgstr ""
|
678
|
+
|
679
|
+
#: action_names.rb:49
|
680
|
+
msgid "Update architecture"
|
681
|
+
msgstr ""
|
682
|
+
|
683
|
+
#: action_names.rb:50
|
684
|
+
msgid "Import facts"
|
685
|
+
msgstr ""
|
686
|
+
|
687
|
+
#: action_names.rb:51
|
688
|
+
msgid "Import Puppet classes"
|
689
|
+
msgstr ""
|
690
|
+
|
691
|
+
#: action_names.rb:52
|
692
|
+
msgid "Abstract async task"
|
693
|
+
msgstr ""
|
694
|
+
|
695
|
+
#: action_names.rb:53
|
696
|
+
msgid "Delete Activation Key"
|
697
|
+
msgstr ""
|
698
|
+
|
699
|
+
#: action_names.rb:54
|
700
|
+
msgid "Configure capsule"
|
701
|
+
msgstr ""
|
702
|
+
|
703
|
+
#: action_names.rb:55
|
704
|
+
msgid "Create repos"
|
705
|
+
msgstr ""
|
706
|
+
|
707
|
+
#: action_names.rb:56
|
708
|
+
msgid "Synchronize capsule content"
|
709
|
+
msgstr ""
|
710
|
+
|
711
|
+
#: action_names.rb:57
|
712
|
+
msgid "Promotion"
|
713
|
+
msgstr ""
|
714
|
+
|
715
|
+
#: action_names.rb:58
|
716
|
+
msgid "Publish"
|
717
|
+
msgstr ""
|
718
|
+
|
719
|
+
#: action_names.rb:59
|
720
|
+
msgid "Remove from Environment"
|
721
|
+
msgstr ""
|
722
|
+
|
723
|
+
#: action_names.rb:60
|
724
|
+
msgid "Remove Version"
|
725
|
+
msgstr ""
|
726
|
+
|
727
|
+
#: action_names.rb:61
|
728
|
+
msgid "Remove Versions and Associations"
|
729
|
+
msgstr ""
|
730
|
+
|
731
|
+
#: gemspec.rb:2
|
732
|
+
msgid "A plugin to make virt-who configuration easy"
|
733
|
+
msgstr ""
|