foreman_puppet 5.1.0 → 5.1.2
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/models/concerns/foreman_puppet/extensions/host.rb +1 -1
- data/app/views/foreman_puppet/environments/welcome.html.erb +5 -0
- data/app/views/foreman_puppet/puppetclass_lookup_keys/welcome.html.erb +1 -1
- data/app/views/foreman_puppet/puppetclasses/_selected_classes.html.erb +1 -1
- data/app/views/hosts/select_multiple_puppet_proxy.html.erb +5 -0
- data/app/views/provisioning_templates/temp/autoyast_orcharhino_finish.erb +31 -0
- data/app/views/provisioning_templates/temp/preseed_orcharhino_finish.erb +90 -0
- data/app/views/provisioning_templates/temp/provision/autoyast_orcharhino_default.erb +336 -0
- data/app/views/provisioning_templates/temp/snippet/_or_al_client.erb +32 -0
- data/app/views/provisioning_templates/temp/snippet/_or_deb_client.erb +175 -0
- data/app/views/provisioning_templates/temp/snippet/_or_ol_client.erb +37 -0
- data/app/views/provisioning_templates/temp/snippet/_or_sles_client.erb +85 -0
- data/lib/foreman_puppet/version.rb +1 -1
- data/lib/tasks/foreman_puppet_tasks.rake +0 -10
- data/locale/ca/LC_MESSAGES/foreman_puppet.mo +0 -0
- data/locale/ca/foreman_puppet.po +7 -5
- data/locale/cs_CZ/LC_MESSAGES/foreman_puppet.mo +0 -0
- data/locale/cs_CZ/foreman_puppet.po +7 -5
- data/locale/de/LC_MESSAGES/foreman_puppet.mo +0 -0
- data/locale/de/foreman_puppet.po +7 -5
- data/locale/en/foreman_puppet.po +4 -1
- data/locale/en_GB/foreman_puppet.po +7 -5
- data/locale/es/LC_MESSAGES/foreman_puppet.mo +0 -0
- data/locale/es/foreman_puppet.po +7 -5
- data/locale/foreman_puppet.pot +12 -9
- data/locale/fr/LC_MESSAGES/foreman_puppet.mo +0 -0
- data/locale/fr/foreman_puppet.po +8 -6
- data/locale/gl/foreman_puppet.po +7 -5
- data/locale/it/LC_MESSAGES/foreman_puppet.mo +0 -0
- data/locale/it/foreman_puppet.po +7 -5
- data/locale/ja/LC_MESSAGES/foreman_puppet.mo +0 -0
- data/locale/ja/foreman_puppet.po +8 -6
- data/locale/ka/LC_MESSAGES/foreman_puppet.mo +0 -0
- data/locale/ka/foreman_puppet.po +8 -6
- data/locale/ko/LC_MESSAGES/foreman_puppet.mo +0 -0
- data/locale/ko/foreman_puppet.po +7 -5
- data/locale/nl_NL/foreman_puppet.po +7 -5
- data/locale/pl/foreman_puppet.po +7 -5
- data/locale/pt_BR/LC_MESSAGES/foreman_puppet.mo +0 -0
- data/locale/pt_BR/foreman_puppet.po +7 -5
- data/locale/ru/LC_MESSAGES/foreman_puppet.mo +0 -0
- data/locale/ru/foreman_puppet.po +7 -5
- data/locale/sv_SE/foreman_puppet.po +7 -5
- data/locale/zh_CN/LC_MESSAGES/foreman_puppet.mo +0 -0
- data/locale/zh_CN/foreman_puppet.po +8 -6
- data/locale/zh_TW/LC_MESSAGES/foreman_puppet.mo +0 -0
- data/locale/zh_TW/foreman_puppet.po +7 -5
- data/package.json +7 -7
- data/webpack/src/Components/Environments/Welcome.js +4 -4
- metadata +10 -2
@@ -0,0 +1,175 @@
|
|
1
|
+
<%#
|
2
|
+
kind: snippet
|
3
|
+
name: or_deb_client
|
4
|
+
model: ProvisioningTemplate
|
5
|
+
snippet: true
|
6
|
+
description: template for debian provisioning
|
7
|
+
%>
|
8
|
+
<%
|
9
|
+
content_facet = host_content_facet(@host)
|
10
|
+
apt_run = 'apt-get -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold"'
|
11
|
+
apt_install = apt_run + ' -y install'
|
12
|
+
apt_upgrade = apt_run + ' -o APT::Get::Upgrade-Allow-New="true" -y upgrade'
|
13
|
+
apt_update = 'apt-get -y update'
|
14
|
+
|
15
|
+
if !host_param("or_client_repo_url").nil?
|
16
|
+
or_client_repo_url = host_param("or_client_repo_url")
|
17
|
+
elsif !host_param("or_#{@host.operatingsystem.name.downcase}_client_repo_prefix").nil?
|
18
|
+
or_client_repo_url = host_param("or_#{@host.operatingsystem.name.downcase}_client_repo_prefix") + @host.operatingsystem.major.gsub('.', '_')
|
19
|
+
else
|
20
|
+
or_client_repo_url = nil
|
21
|
+
end
|
22
|
+
if content_facet && content_facet.content_source_name
|
23
|
+
host_content_fqdn = content_facet.content_source_name
|
24
|
+
host_content_url = "https://"+content_facet.content_source_name
|
25
|
+
else
|
26
|
+
host_content_fqdn = foreman_server_fqdn
|
27
|
+
host_content_url = foreman_server_url
|
28
|
+
end
|
29
|
+
if !host_param('http-proxy').nil?
|
30
|
+
http_proxy = host_param('http-proxy')
|
31
|
+
if !host_param('http-proxy-port').nil?
|
32
|
+
http_proxy_port = host_param('http-proxy-port')
|
33
|
+
else
|
34
|
+
http_proxy_port = "3129"
|
35
|
+
end
|
36
|
+
end
|
37
|
+
if !host_param('http-proxy-user').nil? && !host_param('http-proxy-password').nil?
|
38
|
+
http_proxy_user = host_param('http-proxy-user')
|
39
|
+
http_proxy_password = host_param('http-proxy-password')
|
40
|
+
proxy_uri = http_proxy ? "http://#{http_proxy_user}:#{http_proxy_password}@#{http_proxy}:#{http_proxy_port}" : nil
|
41
|
+
else
|
42
|
+
proxy_uri = http_proxy ? "http://#{http_proxy}:#{http_proxy_port}" : nil
|
43
|
+
end
|
44
|
+
|
45
|
+
use_trusted_gpg_d =
|
46
|
+
if @host.operatingsystem.name == 'Debian' && @host.operatingsystem.major.to_i >= 11
|
47
|
+
true
|
48
|
+
elsif @host.operatingsystem.name == 'Ubuntu' && @host.operatingsystem.major.split('.')[0].to_i >= 22
|
49
|
+
true
|
50
|
+
else
|
51
|
+
false
|
52
|
+
end
|
53
|
+
%>
|
54
|
+
|
55
|
+
<%- if @host.operatingsystem.family == 'Debian' -%>
|
56
|
+
echo "Installing or_deb_client repository"
|
57
|
+
|
58
|
+
<%- if or_client_repo_url.nil? -%>
|
59
|
+
echo "================================= Warning ============================================="
|
60
|
+
echo "Warning: To provision Debian clients, you need to prepare an 'or_deb_client'-repository"
|
61
|
+
echo " and write it's location in the global parameter 'or_<%= @host.operatingsystem.name.downcase %>_client_repo_prefix'."
|
62
|
+
echo "================================= Warning ============================================="
|
63
|
+
<%- end -%>
|
64
|
+
|
65
|
+
<%- if !content_facet || !content_facet.content_source_name -%>
|
66
|
+
echo "================================= Warning ============================================="
|
67
|
+
echo " No content source found. Setting default to <%= foreman_server_fqdn %>"
|
68
|
+
echo "================================= Warning ============================================="
|
69
|
+
<%- end -%>
|
70
|
+
|
71
|
+
|
72
|
+
<% if proxy_uri -%>
|
73
|
+
# Add http proxy to apt
|
74
|
+
echo 'Acquire::http::Proxy "<%= proxy_uri %>";' >> /etc/apt/apt.conf.d/proxy.conf
|
75
|
+
echo 'Acquire::http::Proxy::<%= @preseed_server.split(":")[0] %> "DIRECT";' >> /etc/apt/apt.conf.d/proxy.conf
|
76
|
+
|
77
|
+
# Add http proxy to wget
|
78
|
+
echo 'use_proxy=yes' >> /etc/wgetrc
|
79
|
+
echo 'http_proxy=<%= proxy_uri %>' >> /etc/wgetrc
|
80
|
+
echo 'https_proxy=<%= proxy_uri %>' >> /etc/wgetrc
|
81
|
+
<% end -%>
|
82
|
+
|
83
|
+
<% if @host.operatingsystem.name == 'Ubuntu' -%>
|
84
|
+
# Disable Phased-Updates for Ubuntu
|
85
|
+
cat << EOF >/etc/apt/apt.conf.d/98phased-updates
|
86
|
+
APT::Get::Always-Include-Phased-Updates "true";
|
87
|
+
EOF
|
88
|
+
<% end -%>
|
89
|
+
|
90
|
+
echo "Ensure gnupg is installed, which is needed for interacting with 'apt-key'"
|
91
|
+
<%= apt_update %>
|
92
|
+
<%= apt_install %> gnupg
|
93
|
+
|
94
|
+
echo "Install orcharhino repositories"
|
95
|
+
mkdir -p /etc/apt/sources.list.d
|
96
|
+
|
97
|
+
<% if use_trusted_gpg_d %>
|
98
|
+
mkdir -p /etc/apt/trusted.gpg.d
|
99
|
+
wget "http://<%= host_content_fqdn %>/pub/pulp_deb_signing.key" -O - | gpg --no-default-keyring --keyring gnupg-ring:/etc/apt/trusted.gpg.d/orcharhino_<%= host_content_fqdn %>.gpg --import
|
100
|
+
chmod 644 /etc/apt/trusted.gpg.d/orcharhino_<%= host_content_fqdn %>.gpg
|
101
|
+
<% # looks like gpg creates this file automatically and there is no option to prevent gpg to create this backup file -%>
|
102
|
+
rm -f /etc/apt/trusted.gpg.d/orcharhino_<%= host_content_fqdn %>.gpg~
|
103
|
+
<% else %>
|
104
|
+
wget "http://<%= host_content_fqdn %>/pub/pulp_deb_signing.key" -O - | apt-key add -
|
105
|
+
<% end %>
|
106
|
+
|
107
|
+
<%- if host_param('kt_activation_keys') -%>
|
108
|
+
|
109
|
+
cat > /etc/apt/sources.list.d/orcharhino.list <<'EOF'
|
110
|
+
# This File is automatically generated.
|
111
|
+
# !!! Do not edit !!!
|
112
|
+
|
113
|
+
deb <%= or_client_repo_url %> default all
|
114
|
+
EOF
|
115
|
+
|
116
|
+
<%= apt_update %>
|
117
|
+
<%= apt_install %> apt-transport-katello katello-upload-profile
|
118
|
+
|
119
|
+
echo "Remove all repositories from /etc/apt/sources.list{,.d/*}"
|
120
|
+
cat > /etc/apt/sources.list <<'EOF'
|
121
|
+
# This system is managed by orcharhino
|
122
|
+
EOF
|
123
|
+
|
124
|
+
find /etc/apt/sources.list.d -type f -print0 | xargs -r0 rm
|
125
|
+
|
126
|
+
echo "Registering the System"
|
127
|
+
wget --no-check-certificate -O - <%= host_content_url %>/pub/katello-rhsm-consumer | /bin/bash -x 2> /root/katello-rhsm-consumer.log
|
128
|
+
|
129
|
+
<% if http_proxy %>
|
130
|
+
subscription-manager config --server.proxy_hostname='<%= http_proxy %>'
|
131
|
+
<% if http_proxy_user %>
|
132
|
+
subscription-manager config --server.proxy_user='<%= http_proxy_user %>'
|
133
|
+
<% end %>
|
134
|
+
<% if http_proxy_password %>
|
135
|
+
subscription-manager config --server.proxy_password='<%= http_proxy_password %>'
|
136
|
+
<% end %>
|
137
|
+
subscription-manager config --server.proxy_port='<%= http_proxy_port %>'
|
138
|
+
<% end %>
|
139
|
+
|
140
|
+
subscription-manager register --org="<%= @host.rhsm_organization_label %>" --name="<%= @host.name %>" --activationkey="<%= host_param('kt_activation_keys') %>"
|
141
|
+
|
142
|
+
# Update the package lists
|
143
|
+
<%= apt_update %>
|
144
|
+
|
145
|
+
# Install katello host tools and tracer
|
146
|
+
if dpkg -l python3-subscription-manager >/dev/null 2>&1; then
|
147
|
+
<%= apt_install %> python3-katello-host-tools python3-katello-host-tools-tracer
|
148
|
+
else
|
149
|
+
<%= apt_install %> python-katello-host-tools python-katello-host-tools-tracer
|
150
|
+
fi
|
151
|
+
|
152
|
+
<% unless host_param_false?('package_upgrade') -%>
|
153
|
+
# update all the base packages from the updates repository
|
154
|
+
<%= apt_upgrade %>
|
155
|
+
<% end -%>
|
156
|
+
<%- else -%>
|
157
|
+
|
158
|
+
cat > /etc/apt/sources.list.d/orcharhino.list <<'EOF'
|
159
|
+
# This File is automatically generated.
|
160
|
+
# !!! Do not edit !!!
|
161
|
+
<%-
|
162
|
+
i=1
|
163
|
+
while host_param('or_deb_repo_%i' % (i))
|
164
|
+
-%>
|
165
|
+
deb http://<%= host_content_fqdn %>/<%= host_param('or_deb_repo_%i' % (i)) %>
|
166
|
+
<%-
|
167
|
+
i = i + 1
|
168
|
+
end
|
169
|
+
-%>
|
170
|
+
EOF
|
171
|
+
|
172
|
+
<%- end -%>
|
173
|
+
<%- else -%>
|
174
|
+
echo "Warning! This should only be used on Debian OSes."
|
175
|
+
<%- end -%>
|
@@ -0,0 +1,37 @@
|
|
1
|
+
<%#
|
2
|
+
kind: snippet
|
3
|
+
name: or_ol_client
|
4
|
+
model: ProvisioningTemplate
|
5
|
+
snippet: true
|
6
|
+
description: This snippet prepares the registration to orcharhino on a OracleLinux host
|
7
|
+
-%>
|
8
|
+
<%-
|
9
|
+
os_major = @host.operatingsystem.major.to_i
|
10
|
+
|
11
|
+
if !host_param('or_client_repo_url').nil?
|
12
|
+
or_client_repo_url = host_param('or_client_repo_url')
|
13
|
+
elsif !host_param('or_oraclelinux_client_repo_prefix').nil?
|
14
|
+
or_client_repo_url = host_param('or_oraclelinux_client_repo_prefix') + os_major.to_s
|
15
|
+
else
|
16
|
+
or_client_repo_url = nil
|
17
|
+
end
|
18
|
+
%>
|
19
|
+
<%- if !or_client_repo_url.nil? %>
|
20
|
+
# Install dependencies which are required later on while installing the subscription-manager
|
21
|
+
yum install -y python-inotify python-setuptools
|
22
|
+
|
23
|
+
cat << EOF > /etc/yum.repos.d/or_ol_client.repo
|
24
|
+
[orcharhino_OracleLinux_Client_<%= os_major %>]
|
25
|
+
name=orcharhino Oracle Linux Client
|
26
|
+
baseurl="<%= or_client_repo_url %>"
|
27
|
+
gpgcheck=0
|
28
|
+
enabled=1
|
29
|
+
priority=5
|
30
|
+
EOF
|
31
|
+
|
32
|
+
<%- if os_major == 7 %>
|
33
|
+
# Remove oracle's rhn-client-tools which blocks the installation of our subscription-manager
|
34
|
+
yum remove -y rhn-client-tools
|
35
|
+
<%- end %>
|
36
|
+
|
37
|
+
<%- end %>
|
@@ -0,0 +1,85 @@
|
|
1
|
+
<%#
|
2
|
+
kind: snippet
|
3
|
+
name: or_sles_client
|
4
|
+
model: ProvisioningTemplate
|
5
|
+
snippet: true
|
6
|
+
description: this snippet will start a script to register SUSE machines with orcharhino
|
7
|
+
%>
|
8
|
+
<%
|
9
|
+
os_major = @host.operatingsystem.major.to_i
|
10
|
+
os_minor = @host.operatingsystem.minor.to_i
|
11
|
+
pm_set = @host.puppet_server.present?
|
12
|
+
aio_enabled = host_param_true?('enable-puppetlabs-puppet7-repo') || host_param_true?('enable-puppetlabs-puppet5-repo') || host_param_true?('enable-puppetlabs-puppet6-repo') || host_param_true?('enable-puppetlabs-pc1-repo') || host_param_true?('enable-puppet5') || host_param_true?('enable-puppet6') || host_param_true?('enable-puppet7')
|
13
|
+
puppet_enabled = pm_set || host_param_true?('force-puppet')
|
14
|
+
use_sles_client_v2 = host_param_true?('use-sles-client-v2')
|
15
|
+
salt_enabled = host_param('salt_master').present?
|
16
|
+
sles_minor_string = (os_minor == 0) ? '' : "SP#{os_minor}"
|
17
|
+
|
18
|
+
if use_sles_client_v2
|
19
|
+
katello_client_tool = "katello-host-tools"
|
20
|
+
if os_major >= 15
|
21
|
+
katello_client_tool += " katello-host-tools-tracer"
|
22
|
+
end
|
23
|
+
else
|
24
|
+
katello_client_tool = "katello-agent"
|
25
|
+
end
|
26
|
+
|
27
|
+
additional_pkgs=""
|
28
|
+
if os_major < 12
|
29
|
+
additional_pkgs="libnl3"
|
30
|
+
end
|
31
|
+
%>
|
32
|
+
|
33
|
+
<%- if host_param('kt_activation_keys') -%>
|
34
|
+
<%- if @host.operatingsystem.family == 'Suse' -%>
|
35
|
+
echo "Installing or_sles_client repository"
|
36
|
+
<%- if host_param('or_sles_client_repo_prefix').nil? and host_param('or_client_repo_url').nil? -%>
|
37
|
+
echo "================================ Warning ============================================="
|
38
|
+
echo "Warning: To provision SLES clients, you need to prepare an 'or_sles_client'-repository"
|
39
|
+
echo " and write it's location in the operatingsystem parameter 'or_client_repo_url'."
|
40
|
+
echo "================================ Warning ============================================="
|
41
|
+
<%- end -%>
|
42
|
+
<%- if host_param('or_client_repo_url').nil? -%>
|
43
|
+
zypper addrepo -G --check "<%= host_param('or_sles_client_repo_prefix') %><%= os_major %><%= sles_minor_string %>" or_sles_client
|
44
|
+
<%- else -%>
|
45
|
+
zypper addrepo -G --check "<%= host_param('or_client_repo_url') %>" or_sles_client
|
46
|
+
<%- end -%>
|
47
|
+
zypper -n update
|
48
|
+
zypper --non-interactive --no-gpg-checks --quiet install --auto-agree-with-licenses subscription-manager <%= additional_pkgs %>
|
49
|
+
<%- unless use_sles_client_v2 -%>
|
50
|
+
zypper --non-interactive --no-gpg-checks --quiet install --auto-agree-with-licenses or-sles-client
|
51
|
+
<%- end -%>
|
52
|
+
|
53
|
+
<%- if os_major < 12 -%>
|
54
|
+
curl -s <%= subscription_manager_configuration_url(@host, false) %> | bash
|
55
|
+
<%- else -%>
|
56
|
+
rpm -ivh <%= subscription_manager_configuration_url(@host) %>
|
57
|
+
<%- end -%>
|
58
|
+
echo "Registering the System"
|
59
|
+
subscription-manager register --org="<%= @host.rhsm_organization_label %>" --name="<%= @host.name %>" --activationkey="<%= host_param('kt_activation_keys') %>"
|
60
|
+
<% unless host_param_false?('package_upgrade') -%>
|
61
|
+
# update all the base packages from the updates repository
|
62
|
+
zypper -n update
|
63
|
+
<% end -%>
|
64
|
+
echo "Installing katello client"
|
65
|
+
zypper --non-interactive --no-gpg-checks --quiet install --auto-agree-with-licenses <%= katello_client_tool %>
|
66
|
+
|
67
|
+
<%- unless use_sles_client_v2 -%>
|
68
|
+
chkconfig goferd on
|
69
|
+
<%- end -%>
|
70
|
+
subscription-manager refresh
|
71
|
+
|
72
|
+
<% if puppet_enabled -%>
|
73
|
+
<% if aio_enabled -%>
|
74
|
+
/usr/bin/zypper -n install puppet-agent
|
75
|
+
<% else -%>
|
76
|
+
/usr/bin/zypper -n install rubygem-puppet
|
77
|
+
<% end -%>
|
78
|
+
<% end -%>
|
79
|
+
<% if salt_enabled -%>
|
80
|
+
/usr/bin/zypper -n install salt-minion
|
81
|
+
<% end -%>
|
82
|
+
<%- else -%>
|
83
|
+
echo "Warning! This should only be used on Suse OSes."
|
84
|
+
<%- end -%>
|
85
|
+
<%- end -%>
|
Binary file
|
data/locale/ca/foreman_puppet.po
CHANGED
@@ -6,7 +6,6 @@
|
|
6
6
|
# Translators:
|
7
7
|
# Robert Antoni Buj i Gelonch <rbuj@fedoraproject.org>, 2022
|
8
8
|
#
|
9
|
-
#, fuzzy
|
10
9
|
msgid ""
|
11
10
|
msgstr ""
|
12
11
|
"Project-Id-Version: foreman_puppet 5.0.0\n"
|
@@ -245,9 +244,6 @@ msgstr "Entorn buit"
|
|
245
244
|
msgid "Environment"
|
246
245
|
msgstr "Entorn"
|
247
246
|
|
248
|
-
msgid "Environment name"
|
249
|
-
msgstr "Nom de l'entorn"
|
250
|
-
|
251
247
|
msgid "Environment only"
|
252
248
|
msgstr "Només l'entorn"
|
253
249
|
|
@@ -356,7 +352,7 @@ msgstr ""
|
|
356
352
|
msgid "If true, will raise an error if there is no default value and no matcher provide a value"
|
357
353
|
msgstr "En cas que sigui cert, es produirà un error si no hi ha cap valor per defecte i no hi ha cap classificador que proporcioni un valor"
|
358
354
|
|
359
|
-
msgid "If you are planning to use Foreman as an external node classifier you should provide information about one or more environments
|
355
|
+
msgid "If you are planning to use Foreman as an external node classifier you should provide information about one or more environments.{newLine}This information is commonly imported from a pre-existing Puppet configuration by the use of the {puppetClassesLinkToDocs} and environment importer."
|
360
356
|
msgstr ""
|
361
357
|
|
362
358
|
msgid "Ignored classes in the environments: %s"
|
@@ -617,9 +613,15 @@ msgstr ""
|
|
617
613
|
msgid "Puppet YAML"
|
618
614
|
msgstr ""
|
619
615
|
|
616
|
+
msgid "Puppet classes"
|
617
|
+
msgstr ""
|
618
|
+
|
620
619
|
msgid "Puppet details"
|
621
620
|
msgstr ""
|
622
621
|
|
622
|
+
msgid "Puppet env"
|
623
|
+
msgstr ""
|
624
|
+
|
623
625
|
msgid "Puppet environment"
|
624
626
|
msgstr ""
|
625
627
|
|
Binary file
|
@@ -9,7 +9,6 @@
|
|
9
9
|
# mhulan <mhulan@redhat.com>, 2022
|
10
10
|
# Pavel Borecki <pavel.borecki@gmail.com>, 2022
|
11
11
|
#
|
12
|
-
#, fuzzy
|
13
12
|
msgid ""
|
14
13
|
msgstr ""
|
15
14
|
"Project-Id-Version: foreman_puppet 5.0.0\n"
|
@@ -250,9 +249,6 @@ msgstr "Prázdné prostředí"
|
|
250
249
|
msgid "Environment"
|
251
250
|
msgstr "Prostředí"
|
252
251
|
|
253
|
-
msgid "Environment name"
|
254
|
-
msgstr "Název prostředí"
|
255
|
-
|
256
252
|
msgid "Environment only"
|
257
253
|
msgstr "Pouze prostředí"
|
258
254
|
|
@@ -361,7 +357,7 @@ msgstr ""
|
|
361
357
|
msgid "If true, will raise an error if there is no default value and no matcher provide a value"
|
362
358
|
msgstr ""
|
363
359
|
|
364
|
-
msgid "If you are planning to use Foreman as an external node classifier you should provide information about one or more environments
|
360
|
+
msgid "If you are planning to use Foreman as an external node classifier you should provide information about one or more environments.{newLine}This information is commonly imported from a pre-existing Puppet configuration by the use of the {puppetClassesLinkToDocs} and environment importer."
|
365
361
|
msgstr ""
|
366
362
|
|
367
363
|
msgid "Ignored classes in the environments: %s"
|
@@ -622,9 +618,15 @@ msgstr ""
|
|
622
618
|
msgid "Puppet YAML"
|
623
619
|
msgstr ""
|
624
620
|
|
621
|
+
msgid "Puppet classes"
|
622
|
+
msgstr ""
|
623
|
+
|
625
624
|
msgid "Puppet details"
|
626
625
|
msgstr ""
|
627
626
|
|
627
|
+
msgid "Puppet env"
|
628
|
+
msgstr ""
|
629
|
+
|
628
630
|
msgid "Puppet environment"
|
629
631
|
msgstr ""
|
630
632
|
|
Binary file
|
data/locale/de/foreman_puppet.po
CHANGED
@@ -23,7 +23,6 @@
|
|
23
23
|
# abf90805572190d649c59f7a021d76cb, 2022
|
24
24
|
# 0868a4d1af5275b3f70b0a6dac4c99a4, 2022
|
25
25
|
#
|
26
|
-
#, fuzzy
|
27
26
|
msgid ""
|
28
27
|
msgstr ""
|
29
28
|
"Project-Id-Version: foreman_puppet 5.0.0\n"
|
@@ -266,9 +265,6 @@ msgstr "Umgebung leeren"
|
|
266
265
|
msgid "Environment"
|
267
266
|
msgstr "Umgebung"
|
268
267
|
|
269
|
-
msgid "Environment name"
|
270
|
-
msgstr "Umgebungsname"
|
271
|
-
|
272
268
|
msgid "Environment only"
|
273
269
|
msgstr "Nur für Umgebung"
|
274
270
|
|
@@ -377,7 +373,7 @@ msgstr "IDs der zugehörigen Puppetklassen"
|
|
377
373
|
msgid "If true, will raise an error if there is no default value and no matcher provide a value"
|
378
374
|
msgstr "Falls \"True\", wird dies einen Fehler erzeugen, wenn es keinen Standardwert gibt und kein Treffer einen Wert liefert"
|
379
375
|
|
380
|
-
msgid "If you are planning to use Foreman as an external node classifier you should provide information about one or more environments
|
376
|
+
msgid "If you are planning to use Foreman as an external node classifier you should provide information about one or more environments.{newLine}This information is commonly imported from a pre-existing Puppet configuration by the use of the {puppetClassesLinkToDocs} and environment importer."
|
381
377
|
msgstr ""
|
382
378
|
|
383
379
|
msgid "Ignored classes in the environments: %s"
|
@@ -638,9 +634,15 @@ msgstr ""
|
|
638
634
|
msgid "Puppet YAML"
|
639
635
|
msgstr "Puppet YAML"
|
640
636
|
|
637
|
+
msgid "Puppet classes"
|
638
|
+
msgstr ""
|
639
|
+
|
641
640
|
msgid "Puppet details"
|
642
641
|
msgstr ""
|
643
642
|
|
643
|
+
msgid "Puppet env"
|
644
|
+
msgstr ""
|
645
|
+
|
644
646
|
msgid "Puppet environment"
|
645
647
|
msgstr ""
|
646
648
|
|
data/locale/en/foreman_puppet.po
CHANGED
@@ -348,7 +348,7 @@ msgstr ""
|
|
348
348
|
msgid "If true, will raise an error if there is no default value and no matcher provide a value"
|
349
349
|
msgstr ""
|
350
350
|
|
351
|
-
msgid "If you are planning to use Foreman as an external node classifier you should provide information about one or more environments
|
351
|
+
msgid "If you are planning to use Foreman as an external node classifier you should provide information about one or more environments.{newLine}This information is commonly imported from a pre-existing Puppet configuration by the use of the {puppetClassesLinkToDocs} and environment importer."
|
352
352
|
msgstr ""
|
353
353
|
|
354
354
|
msgid "Ignored classes in the environments: %s"
|
@@ -609,6 +609,9 @@ msgstr ""
|
|
609
609
|
msgid "Puppet YAML"
|
610
610
|
msgstr ""
|
611
611
|
|
612
|
+
msgid "Puppet classes"
|
613
|
+
msgstr ""
|
614
|
+
|
612
615
|
msgid "Puppet details"
|
613
616
|
msgstr ""
|
614
617
|
|
@@ -7,7 +7,6 @@
|
|
7
7
|
# 0868a4d1af5275b3f70b0a6dac4c99a4, 2021
|
8
8
|
# Andi Chandler <andi@gowling.com>, 2022
|
9
9
|
#
|
10
|
-
#, fuzzy
|
11
10
|
msgid ""
|
12
11
|
msgstr ""
|
13
12
|
"Project-Id-Version: foreman_puppet 5.0.0\n"
|
@@ -247,9 +246,6 @@ msgstr ""
|
|
247
246
|
msgid "Environment"
|
248
247
|
msgstr ""
|
249
248
|
|
250
|
-
msgid "Environment name"
|
251
|
-
msgstr ""
|
252
|
-
|
253
249
|
msgid "Environment only"
|
254
250
|
msgstr ""
|
255
251
|
|
@@ -358,7 +354,7 @@ msgstr ""
|
|
358
354
|
msgid "If true, will raise an error if there is no default value and no matcher provide a value"
|
359
355
|
msgstr ""
|
360
356
|
|
361
|
-
msgid "If you are planning to use Foreman as an external node classifier you should provide information about one or more environments
|
357
|
+
msgid "If you are planning to use Foreman as an external node classifier you should provide information about one or more environments.{newLine}This information is commonly imported from a pre-existing Puppet configuration by the use of the {puppetClassesLinkToDocs} and environment importer."
|
362
358
|
msgstr ""
|
363
359
|
|
364
360
|
msgid "Ignored classes in the environments: %s"
|
@@ -619,9 +615,15 @@ msgstr ""
|
|
619
615
|
msgid "Puppet YAML"
|
620
616
|
msgstr ""
|
621
617
|
|
618
|
+
msgid "Puppet classes"
|
619
|
+
msgstr ""
|
620
|
+
|
622
621
|
msgid "Puppet details"
|
623
622
|
msgstr ""
|
624
623
|
|
624
|
+
msgid "Puppet env"
|
625
|
+
msgstr ""
|
626
|
+
|
625
627
|
msgid "Puppet environment"
|
626
628
|
msgstr ""
|
627
629
|
|
Binary file
|
data/locale/es/foreman_puppet.po
CHANGED
@@ -16,7 +16,6 @@
|
|
16
16
|
# mbacovsky <martin.bacovsky@gmail.com>, 2022
|
17
17
|
# Amit Upadhye <aupadhye@redhat.com>, 2022
|
18
18
|
#
|
19
|
-
#, fuzzy
|
20
19
|
msgid ""
|
21
20
|
msgstr ""
|
22
21
|
"Project-Id-Version: foreman_puppet 5.0.0\n"
|
@@ -256,9 +255,6 @@ msgstr "Entorno vacío"
|
|
256
255
|
msgid "Environment"
|
257
256
|
msgstr "Entorno"
|
258
257
|
|
259
|
-
msgid "Environment name"
|
260
|
-
msgstr "Nombre de entorno"
|
261
|
-
|
262
258
|
msgid "Environment only"
|
263
259
|
msgstr "Solo entorno"
|
264
260
|
|
@@ -367,7 +363,7 @@ msgstr ""
|
|
367
363
|
msgid "If true, will raise an error if there is no default value and no matcher provide a value"
|
368
364
|
msgstr "Si es así, se mostrará un error si no existe un valor predeterminado y no existe ninguna concordancia que pueda proporcionar un valor"
|
369
365
|
|
370
|
-
msgid "If you are planning to use Foreman as an external node classifier you should provide information about one or more environments
|
366
|
+
msgid "If you are planning to use Foreman as an external node classifier you should provide information about one or more environments.{newLine}This information is commonly imported from a pre-existing Puppet configuration by the use of the {puppetClassesLinkToDocs} and environment importer."
|
371
367
|
msgstr ""
|
372
368
|
|
373
369
|
msgid "Ignored classes in the environments: %s"
|
@@ -628,9 +624,15 @@ msgstr ""
|
|
628
624
|
msgid "Puppet YAML"
|
629
625
|
msgstr ""
|
630
626
|
|
627
|
+
msgid "Puppet classes"
|
628
|
+
msgstr ""
|
629
|
+
|
631
630
|
msgid "Puppet details"
|
632
631
|
msgstr ""
|
633
632
|
|
633
|
+
msgid "Puppet env"
|
634
|
+
msgstr ""
|
635
|
+
|
634
636
|
msgid "Puppet environment"
|
635
637
|
msgstr "Entorno de Puppet"
|
636
638
|
|
data/locale/foreman_puppet.pot
CHANGED
@@ -8,8 +8,8 @@ msgid ""
|
|
8
8
|
msgstr ""
|
9
9
|
"Project-Id-Version: foreman_puppet 1.0.0\n"
|
10
10
|
"Report-Msgid-Bugs-To: \n"
|
11
|
-
"POT-Creation-Date:
|
12
|
-
"PO-Revision-Date:
|
11
|
+
"POT-Creation-Date: 2023-02-23 10:03+0000\n"
|
12
|
+
"PO-Revision-Date: 2023-02-23 10:03+0000\n"
|
13
13
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
14
14
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
15
15
|
"Language: \n"
|
@@ -578,7 +578,7 @@ msgstr ""
|
|
578
578
|
|
579
579
|
#: ../app/helpers/foreman_puppet/environments_helper.rb:13
|
580
580
|
#: ../app/views/foreman_puppet/environments/new.html.erb:5
|
581
|
-
#: ../webpack/src/Components/Environments/Welcome.js:
|
581
|
+
#: ../webpack/src/Components/Environments/Welcome.js:10
|
582
582
|
msgid "Create Puppet Environment"
|
583
583
|
msgstr ""
|
584
584
|
|
@@ -1107,7 +1107,7 @@ msgstr ""
|
|
1107
1107
|
#: ../app/views/foreman_puppet/puppetclasses/index.html.erb:10
|
1108
1108
|
#: ../app/views/smart_proxies/plugins/_puppet.html.erb:4
|
1109
1109
|
#: ../lib/foreman_puppet/register.rb:166
|
1110
|
-
#: ../webpack/src/Components/Environments/Welcome.js:
|
1110
|
+
#: ../webpack/src/Components/Environments/Welcome.js:40
|
1111
1111
|
msgid "Environments"
|
1112
1112
|
msgstr ""
|
1113
1113
|
|
@@ -1242,13 +1242,16 @@ msgstr ""
|
|
1242
1242
|
msgid "Puppet env"
|
1243
1243
|
msgstr ""
|
1244
1244
|
|
1245
|
-
#: ../webpack/src/Components/Environments/Welcome.js:
|
1245
|
+
#: ../webpack/src/Components/Environments/Welcome.js:18
|
1246
1246
|
msgid ""
|
1247
1247
|
"If you are planning to use Foreman as an external node classifier you should p"
|
1248
|
-
"rovide information about one or more environments
|
1249
|
-
"
|
1250
|
-
"
|
1251
|
-
|
1248
|
+
"rovide information about one or more environments.{newLine}This information is"
|
1249
|
+
" commonly imported from a pre-existing Puppet configuration by the use of the "
|
1250
|
+
"{puppetClassesLinkToDocs} and environment importer."
|
1251
|
+
msgstr ""
|
1252
|
+
|
1253
|
+
#: ../webpack/src/Components/Environments/Welcome.js:29
|
1254
|
+
msgid "Puppet classes"
|
1252
1255
|
msgstr ""
|
1253
1256
|
|
1254
1257
|
#: ../webpack/src/Extends/Host/PuppetTab/Routes.js:15
|
Binary file
|
data/locale/fr/foreman_puppet.po
CHANGED
@@ -13,7 +13,6 @@
|
|
13
13
|
# Claer <transiblu@claer.hammock.fr>, 2022
|
14
14
|
# Amit Upadhye <aupadhye@redhat.com>, 2022
|
15
15
|
#
|
16
|
-
#, fuzzy
|
17
16
|
msgid ""
|
18
17
|
msgstr ""
|
19
18
|
"Project-Id-Version: foreman_puppet 5.0.0\n"
|
@@ -258,9 +257,6 @@ msgstr "Environnement vide"
|
|
258
257
|
msgid "Environment"
|
259
258
|
msgstr "Environnement"
|
260
259
|
|
261
|
-
msgid "Environment name"
|
262
|
-
msgstr "Nom de l'environnement"
|
263
|
-
|
264
260
|
msgid "Environment only"
|
265
261
|
msgstr "Seulement un environnement"
|
266
262
|
|
@@ -369,8 +365,8 @@ msgstr "ID des classes Puppet associées"
|
|
369
365
|
msgid "If true, will raise an error if there is no default value and no matcher provide a value"
|
370
366
|
msgstr "Si coché, Foreman va générer une erreur s'il n'y a pas de valeur par défaut et aucun matcher ne fournit de valeur"
|
371
367
|
|
372
|
-
msgid "If you are planning to use Foreman as an external node classifier you should provide information about one or more environments
|
373
|
-
msgstr "
|
368
|
+
msgid "If you are planning to use Foreman as an external node classifier you should provide information about one or more environments.{newLine}This information is commonly imported from a pre-existing Puppet configuration by the use of the {puppetClassesLinkToDocs} and environment importer."
|
369
|
+
msgstr ""
|
374
370
|
|
375
371
|
msgid "Ignored classes in the environments: %s"
|
376
372
|
msgstr "Classes ignorées dans les environnements : %s"
|
@@ -630,9 +626,15 @@ msgstr "Créer un proxy Smart"
|
|
630
626
|
msgid "Puppet YAML"
|
631
627
|
msgstr "Puppet YAML"
|
632
628
|
|
629
|
+
msgid "Puppet classes"
|
630
|
+
msgstr ""
|
631
|
+
|
633
632
|
msgid "Puppet details"
|
634
633
|
msgstr "Détails Puppet"
|
635
634
|
|
635
|
+
msgid "Puppet env"
|
636
|
+
msgstr ""
|
637
|
+
|
636
638
|
msgid "Puppet environment"
|
637
639
|
msgstr "Environnement Puppet"
|
638
640
|
|