foreman_salt 17.0.0 → 17.0.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/assets/javascripts/foreman_salt/locale/de/foreman_salt.js +355 -355
- data/app/assets/javascripts/foreman_salt/locale/en/foreman_salt.js +2 -546
- data/app/assets/javascripts/foreman_salt/locale/fr/foreman_salt.js +1 -1
- data/app/assets/javascripts/foreman_salt/locale/ja/foreman_salt.js +1 -1
- data/app/assets/javascripts/foreman_salt/locale/ka/foreman_salt.js +355 -355
- data/app/assets/javascripts/foreman_salt/locale/zh_CN/foreman_salt.js +1 -1
- data/app/models/foreman_salt/concerns/host_managed_extensions.rb +29 -9
- data/lib/foreman_salt/version.rb +1 -1
- data/locale/Makefile +12 -2
- data/locale/de/LC_MESSAGES/foreman_salt.mo +0 -0
- data/locale/de/foreman_salt.po +13 -13
- data/locale/en/foreman_salt.po +0 -551
- data/locale/fr/LC_MESSAGES/foreman_salt.mo +0 -0
- data/locale/fr/foreman_salt.po +1 -1
- data/locale/ja/LC_MESSAGES/foreman_salt.mo +0 -0
- data/locale/ja/foreman_salt.po +1 -1
- data/locale/ka/LC_MESSAGES/foreman_salt.mo +0 -0
- data/locale/ka/foreman_salt.po +17 -16
- data/locale/zh_CN/LC_MESSAGES/foreman_salt.mo +0 -0
- data/locale/zh_CN/foreman_salt.po +1 -1
- data/test/unit/host_extensions_test.rb +3 -4
- metadata +7 -10
@@ -3,7 +3,7 @@
|
|
3
3
|
"locale_data": {
|
4
4
|
"foreman_salt": {
|
5
5
|
"": {
|
6
|
-
"Project-Id-Version": "foreman_salt
|
6
|
+
"Project-Id-Version": "foreman_salt 17.0.1",
|
7
7
|
"Report-Msgid-Bugs-To": "",
|
8
8
|
"PO-Revision-Date": "2019-04-29 07:31+0000",
|
9
9
|
"Last-Translator": "Bryan Kearney <bryan.kearney@gmail.com>, 2022",
|
@@ -42,8 +42,8 @@ module ForemanSalt
|
|
42
42
|
|
43
43
|
validate :salt_modules_in_host_environment
|
44
44
|
|
45
|
-
|
46
|
-
before_destroy :
|
45
|
+
after_validation :queue_ensure_salt_autosign, if: ->(host) { host.salt_proxy }
|
46
|
+
before_destroy :queue_remove_salt_minion, if: ->(host) { host.salt_proxy }
|
47
47
|
end
|
48
48
|
|
49
49
|
def salt_params
|
@@ -107,10 +107,32 @@ module ForemanSalt
|
|
107
107
|
|
108
108
|
private
|
109
109
|
|
110
|
+
def queue_ensure_salt_autosign
|
111
|
+
return unless new_record? || build_changed?
|
112
|
+
|
113
|
+
generate_salt_autosign_key
|
114
|
+
queue.create(id: "ensure_salt_autosign_#{id}", name: _('Configure Salt Autosign key for %s') % self,
|
115
|
+
priority: 101, action: [self, :ensure_salt_autosign])
|
116
|
+
end
|
117
|
+
|
118
|
+
def queue_remove_salt_minion
|
119
|
+
queue.create(id: "queue_remove_salt_minion_#{id}", name: _('Remove Salt Minion for %s') % self,
|
120
|
+
priority: 101, action: [self, :remove_salt_minion])
|
121
|
+
end
|
122
|
+
|
123
|
+
def generate_salt_autosign_key
|
124
|
+
if salt_autosign_key.nil?
|
125
|
+
Rails.logger.info("Generate salt autosign key for #{fqdn}")
|
126
|
+
self.salt_autosign_key = generate_provisioning_key
|
127
|
+
else
|
128
|
+
Rails.logger.info("Use existing salt autosign key for #{fqdn}")
|
129
|
+
end
|
130
|
+
self.salt_status = ForemanSalt::SaltStatus.minion_auth_waiting
|
131
|
+
end
|
132
|
+
|
110
133
|
def ensure_salt_autosign
|
111
134
|
remove_salt_key
|
112
|
-
|
113
|
-
create_salt_autosign
|
135
|
+
configure_salt_autosign
|
114
136
|
end
|
115
137
|
|
116
138
|
def remove_salt_minion
|
@@ -140,13 +162,11 @@ module ForemanSalt
|
|
140
162
|
SecureRandom.hex(10)
|
141
163
|
end
|
142
164
|
|
143
|
-
def
|
144
|
-
Rails.logger.info("
|
165
|
+
def configure_salt_autosign
|
166
|
+
Rails.logger.info("Configure salt autosign key for host #{fqdn} on #{salt_proxy.url}")
|
145
167
|
api = ProxyAPI::Salt.new(url: salt_proxy.url)
|
146
|
-
key =
|
168
|
+
key = salt_autosign_key
|
147
169
|
api.autosign_create_key(key)
|
148
|
-
update(salt_autosign_key: key)
|
149
|
-
update(salt_status: ForemanSalt::SaltStatus.minion_auth_waiting)
|
150
170
|
rescue Foreman::Exception => e
|
151
171
|
Rails.logger.warn("Unable to create salt autosign for #{fqdn}: #{e}")
|
152
172
|
end
|
data/lib/foreman_salt/version.rb
CHANGED
data/locale/Makefile
CHANGED
@@ -31,9 +31,16 @@ all-mo: $(MOFILES)
|
|
31
31
|
cat $@
|
32
32
|
! grep -q msgid $@
|
33
33
|
|
34
|
-
%.edit.po:
|
34
|
+
%.edit.po: %.po.time_stamp
|
35
35
|
touch $@
|
36
36
|
|
37
|
+
# gettext will trash the .edit.po file if the time stamp doesn't exist or is older than the po file
|
38
|
+
%.po.time_stamp: %.po
|
39
|
+
touch --reference $< $@
|
40
|
+
|
41
|
+
# Prevent make from treating this as an intermediate file to be cleaned up
|
42
|
+
.PRECIOUS: %.po.time_stamp
|
43
|
+
|
37
44
|
check: $(POXFILES)
|
38
45
|
|
39
46
|
# Unify duplicate translations
|
@@ -43,7 +50,10 @@ uniq-po:
|
|
43
50
|
done
|
44
51
|
|
45
52
|
tx-pull: $(EDITFILES)
|
46
|
-
|
53
|
+
# Initialize new languages
|
54
|
+
cd .. && tx pull -f --all --minimum-perc 50
|
55
|
+
# Force update all existing languages
|
56
|
+
cd .. && tx pull -f --minimum-perc 0
|
47
57
|
for f in $(EDITFILES) ; do \
|
48
58
|
sed -i 's/^\("Project-Id-Version: \).*$$/\1$(DOMAIN) $(VERSION)\\n"/' $$f; \
|
49
59
|
done
|
Binary file
|
data/locale/de/foreman_salt.po
CHANGED
@@ -6,27 +6,27 @@
|
|
6
6
|
# Translators:
|
7
7
|
# Lukáš Zapletal, 2019
|
8
8
|
# abf90805572190d649c59f7a021d76cb, 2019
|
9
|
-
# Michael Moll, 2019
|
10
9
|
# Hannes Schaller <admin@cyberkov.at>, 2019
|
11
|
-
#
|
10
|
+
# 47388d0d0847859fcc07f8955b27d2a7_d1cb104 <93875580def0fcc1a566b016c3948752_122921>, 2019
|
12
11
|
# Arnold Bechtoldt <mail@arnoldbechtoldt.com>, 2019
|
13
|
-
# Ettore Atalan <atalanttore@googlemail.com>, 2019
|
14
12
|
# 0868a4d1af5275b3f70b0a6dac4c99a4, 2019
|
15
13
|
# Wiederoder <stefanwiederoder@googlemail.com>, 2019
|
16
14
|
# Bryan Kearney <bryan.kearney@gmail.com>, 2019
|
17
|
-
# simon11 <
|
18
|
-
# Christina Gurski <Gurski_christina@yahoo.de>, 2019
|
19
|
-
# Martin Zimmermann <martin.zimmermann@gmx.com>, 2019
|
15
|
+
# simon11 <transifex@stieger.co>, 2019
|
20
16
|
# Crited <Alexander.Stoll@netways.de>, 2019
|
21
17
|
# Bernhard Suttner <bernhard.suttner@atix.de>, 2019
|
18
|
+
# Martin Zimmermann <martin.zimmermann@gmx.com>, 2022
|
19
|
+
# Christina Gurski <Gurski_christina@yahoo.de>, 2022
|
20
|
+
# Ettore Atalan <atalanttore@googlemail.com>, 2023
|
22
21
|
#
|
22
|
+
#, fuzzy
|
23
23
|
msgid ""
|
24
24
|
msgstr ""
|
25
|
-
"Project-Id-Version: foreman_salt
|
25
|
+
"Project-Id-Version: foreman_salt 17.0.1\n"
|
26
26
|
"Report-Msgid-Bugs-To: \n"
|
27
27
|
"PO-Revision-Date: 2019-04-29 07:31+0000\n"
|
28
|
-
"Last-Translator:
|
29
|
-
"Language-Team: German (https://
|
28
|
+
"Last-Translator: Ettore Atalan <atalanttore@googlemail.com>, 2023\n"
|
29
|
+
"Language-Team: German (https://app.transifex.com/foreman/teams/114/de/)\n"
|
30
30
|
"MIME-Version: 1.0\n"
|
31
31
|
"Content-Type: text/plain; charset=UTF-8\n"
|
32
32
|
"Content-Transfer-Encoding: 8bit\n"
|
@@ -91,7 +91,7 @@ msgid "Check/Uncheck Removed"
|
|
91
91
|
msgstr "Gelöschte auswählen/abwählen"
|
92
92
|
|
93
93
|
msgid "Config Management"
|
94
|
-
msgstr ""
|
94
|
+
msgstr "Konfigurationsmanagement"
|
95
95
|
|
96
96
|
msgid "Continue to look for matches after first find (only array/hash type)? Note: merging overrides ignores all matchers that are omitted."
|
97
97
|
msgstr "Nach dem ersten Treffer nach weiterhin nach Treffern suchen (nur Array-/Hash-Typ)? Hinweis: Das Zusammenlegen von Überschreibungen ignoriert alle Prüfwerte, die weggelassen werden."
|
@@ -196,7 +196,7 @@ msgid "ID of Salt Proxy"
|
|
196
196
|
msgstr "ID des Salt Proxy"
|
197
197
|
|
198
198
|
msgid "ID of host group"
|
199
|
-
msgstr ""
|
199
|
+
msgstr "Kennung der Hostgruppe"
|
200
200
|
|
201
201
|
msgid "If checked, will raise an error if there is no default value and no matcher provide a value."
|
202
202
|
msgstr "Falls aktiviert, wird dies einen Fehler erzeugen, wenn kein Standardwert vorhanden ist und kein Treffer einen Wert vorschlägt."
|
@@ -508,7 +508,7 @@ msgid "Unable to fetch autosign list"
|
|
508
508
|
msgstr "Autosign Liste konnten nicht abgerufen werden"
|
509
509
|
|
510
510
|
msgid "Unable to generate output, Check log files"
|
511
|
-
msgstr "Kann keine Ausgabe erzeugen
|
511
|
+
msgstr "Kann keine Ausgabe erzeugen. Bitte Logdateien prüfen"
|
512
512
|
|
513
513
|
msgid "Unable to reject Salt key for %s"
|
514
514
|
msgstr "Salt Schlüssel für %s konnte nicht zurückgewiesen werden"
|
@@ -541,7 +541,7 @@ msgid "Updates Salt variable"
|
|
541
541
|
msgstr "Salt Variable aktualisieren"
|
542
542
|
|
543
543
|
msgid "Upload a Job"
|
544
|
-
msgstr "Hochladen eines
|
544
|
+
msgstr "Hochladen eines Auftrags"
|
545
545
|
|
546
546
|
msgid "Used to enforce certain values for the parameter values"
|
547
547
|
msgstr "Verwendet, um bestimmte Werte für die Parameterwerte umzusetzen"
|