foreman-tasks 0.14.1 → 0.14.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/lib/foreman_tasks.rb +1 -1
- data/lib/foreman_tasks/version.rb +1 -1
- data/locale/en/foreman_tasks.po +21 -0
- data/locale/foreman_tasks.pot +101 -71
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9b14c9ca1d8c242b25094388215c5798b81151b0a2f0d0a5616dbe3fc2c1a740
|
|
4
|
+
data.tar.gz: 4e164283f4214c3ec6a9199eebad3e7c056db12e0ba21f5f3e997eda0428302e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: efd741f7cf8929712a49b1bb5a7b192b45fa89d363c07733d06375d22de33be1b190fcfc5eabd037409778609ac3201b5378064d1799001ef6b40152f5bf4358
|
|
7
|
+
data.tar.gz: c7d41e47ba7d72ef48d3d56c76ec8a6ef7298054025778171629ab3449c7570c2dc93c574c2a2e9bc7eefc2b8d552cebb8b7fb5846d4530df23fbe8d5d529396
|
data/lib/foreman_tasks.rb
CHANGED
|
@@ -31,7 +31,7 @@ module ForemanTasks
|
|
|
31
31
|
timeout = Setting['foreman_tasks_sync_task_timeout']
|
|
32
32
|
finished.wait(timeout)
|
|
33
33
|
task = ForemanTasks::Task::DynflowTask.where(:external_id => id).first
|
|
34
|
-
if task.nil? || task.pending?
|
|
34
|
+
if task.nil? || (!task.paused? && task.pending?)
|
|
35
35
|
raise TimeoutError, "The time waiting for task #{task.try(:id)} to finish exceeded the 'foreman_tasks_sync_task_timeout' (#{timeout}s)"
|
|
36
36
|
end
|
|
37
37
|
end
|
data/locale/en/foreman_tasks.po
CHANGED
|
@@ -38,6 +38,9 @@ msgstr ""
|
|
|
38
38
|
msgid "%{value} is wrong format"
|
|
39
39
|
msgstr ""
|
|
40
40
|
|
|
41
|
+
msgid "(Disabled)"
|
|
42
|
+
msgstr ""
|
|
43
|
+
|
|
41
44
|
msgid ":after setting in tasks cleanup section is deprecated, use :after in :rules section to set the value. to cleanup rules"
|
|
42
45
|
msgstr ""
|
|
43
46
|
|
|
@@ -87,6 +90,9 @@ msgstr ""
|
|
|
87
90
|
msgid "Cancelled"
|
|
88
91
|
msgstr ""
|
|
89
92
|
|
|
93
|
+
msgid "Cannot update a cancelled Recurring Logic."
|
|
94
|
+
msgstr ""
|
|
95
|
+
|
|
90
96
|
msgid "Cron line"
|
|
91
97
|
msgstr ""
|
|
92
98
|
|
|
@@ -111,6 +117,12 @@ msgstr ""
|
|
|
111
117
|
msgid "Details"
|
|
112
118
|
msgstr ""
|
|
113
119
|
|
|
120
|
+
msgid "Disable"
|
|
121
|
+
msgstr ""
|
|
122
|
+
|
|
123
|
+
msgid "Disabled"
|
|
124
|
+
msgstr ""
|
|
125
|
+
|
|
114
126
|
msgid "Duration"
|
|
115
127
|
msgstr ""
|
|
116
128
|
|
|
@@ -120,6 +132,9 @@ msgstr ""
|
|
|
120
132
|
msgid "Empty bulk action"
|
|
121
133
|
msgstr ""
|
|
122
134
|
|
|
135
|
+
msgid "Enable"
|
|
136
|
+
msgstr ""
|
|
137
|
+
|
|
123
138
|
msgid "Enable the dynflow console (/foreman_tasks/dynflow) for debugging"
|
|
124
139
|
msgstr ""
|
|
125
140
|
|
|
@@ -261,6 +276,9 @@ msgstr ""
|
|
|
261
276
|
msgid "Number of results per page to return"
|
|
262
277
|
msgstr ""
|
|
263
278
|
|
|
279
|
+
msgid "Number of seconds to wait for synchronous task to finish."
|
|
280
|
+
msgstr ""
|
|
281
|
+
|
|
264
282
|
#. TRANSLATORS: Button text for saying when a task should end
|
|
265
283
|
msgid "On"
|
|
266
284
|
msgstr ""
|
|
@@ -475,6 +493,9 @@ msgstr ""
|
|
|
475
493
|
msgid "Unlock"
|
|
476
494
|
msgstr ""
|
|
477
495
|
|
|
496
|
+
msgid "Update recurring logic"
|
|
497
|
+
msgstr ""
|
|
498
|
+
|
|
478
499
|
msgid "User"
|
|
479
500
|
msgstr ""
|
|
480
501
|
|
data/locale/foreman_tasks.pot
CHANGED
|
@@ -8,8 +8,8 @@ msgid ""
|
|
|
8
8
|
msgstr ""
|
|
9
9
|
"Project-Id-Version: foreman_tasks 1.0.0\n"
|
|
10
10
|
"Report-Msgid-Bugs-To: \n"
|
|
11
|
-
"POT-Creation-Date: 2018-
|
|
12
|
-
"PO-Revision-Date: 2018-
|
|
11
|
+
"POT-Creation-Date: 2018-10-10 17:29+0200\n"
|
|
12
|
+
"PO-Revision-Date: 2018-10-10 17:29+0200\n"
|
|
13
13
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
14
14
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
|
15
15
|
"Language: \n"
|
|
@@ -18,15 +18,19 @@ msgstr ""
|
|
|
18
18
|
"Content-Transfer-Encoding: 8bit\n"
|
|
19
19
|
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
|
20
20
|
|
|
21
|
-
#: ../app/controllers/foreman_tasks/api/recurring_logics_controller.rb:
|
|
21
|
+
#: ../app/controllers/foreman_tasks/api/recurring_logics_controller.rb:15
|
|
22
22
|
msgid "List recurring logics"
|
|
23
23
|
msgstr ""
|
|
24
24
|
|
|
25
|
-
#: ../app/controllers/foreman_tasks/api/recurring_logics_controller.rb:
|
|
25
|
+
#: ../app/controllers/foreman_tasks/api/recurring_logics_controller.rb:21
|
|
26
26
|
msgid "Show recurring logic details"
|
|
27
27
|
msgstr ""
|
|
28
28
|
|
|
29
|
-
#: ../app/controllers/foreman_tasks/api/recurring_logics_controller.rb:
|
|
29
|
+
#: ../app/controllers/foreman_tasks/api/recurring_logics_controller.rb:25
|
|
30
|
+
msgid "Update recurring logic"
|
|
31
|
+
msgstr ""
|
|
32
|
+
|
|
33
|
+
#: ../app/controllers/foreman_tasks/api/recurring_logics_controller.rb:32
|
|
30
34
|
msgid "Cancel recurring logic"
|
|
31
35
|
msgstr ""
|
|
32
36
|
|
|
@@ -106,67 +110,76 @@ msgstr ""
|
|
|
106
110
|
msgid "Type %s for search_params is not supported"
|
|
107
111
|
msgstr ""
|
|
108
112
|
|
|
109
|
-
#: ../app/controllers/foreman_tasks/tasks_controller.rb:
|
|
113
|
+
#: ../app/controllers/foreman_tasks/tasks_controller.rb:34
|
|
110
114
|
msgid "Trying to cancel step %s"
|
|
111
115
|
msgstr ""
|
|
112
116
|
|
|
113
|
-
#: ../app/controllers/foreman_tasks/tasks_controller.rb:
|
|
117
|
+
#: ../app/controllers/foreman_tasks/tasks_controller.rb:42
|
|
114
118
|
msgid "Trying to cancel the task"
|
|
115
119
|
msgstr ""
|
|
116
120
|
|
|
117
|
-
#: ../app/controllers/foreman_tasks/tasks_controller.rb:
|
|
121
|
+
#: ../app/controllers/foreman_tasks/tasks_controller.rb:44
|
|
118
122
|
msgid "The task cannot be cancelled at the moment."
|
|
119
123
|
msgstr ""
|
|
120
124
|
|
|
121
|
-
#: ../app/controllers/foreman_tasks/tasks_controller.rb:
|
|
125
|
+
#: ../app/controllers/foreman_tasks/tasks_controller.rb:52
|
|
122
126
|
msgid "Trying to abort the task"
|
|
123
127
|
msgstr ""
|
|
124
128
|
|
|
125
|
-
#: ../app/controllers/foreman_tasks/tasks_controller.rb:
|
|
129
|
+
#: ../app/controllers/foreman_tasks/tasks_controller.rb:54
|
|
126
130
|
msgid "The task cannot be aborted at the moment."
|
|
127
131
|
msgstr ""
|
|
128
132
|
|
|
129
|
-
#: ../app/controllers/foreman_tasks/tasks_controller.rb:
|
|
133
|
+
#: ../app/controllers/foreman_tasks/tasks_controller.rb:63
|
|
130
134
|
msgid "The execution was resumed."
|
|
131
135
|
msgstr ""
|
|
132
136
|
|
|
133
|
-
#: ../app/controllers/foreman_tasks/tasks_controller.rb:
|
|
137
|
+
#: ../app/controllers/foreman_tasks/tasks_controller.rb:65
|
|
134
138
|
msgid "The execution has to be resumable."
|
|
135
139
|
msgstr ""
|
|
136
140
|
|
|
137
|
-
#: ../app/controllers/foreman_tasks/tasks_controller.rb:
|
|
141
|
+
#: ../app/controllers/foreman_tasks/tasks_controller.rb:75
|
|
138
142
|
msgid "The task resources were unlocked."
|
|
139
143
|
msgstr ""
|
|
140
144
|
|
|
141
|
-
#: ../app/controllers/foreman_tasks/tasks_controller.rb:
|
|
145
|
+
#: ../app/controllers/foreman_tasks/tasks_controller.rb:77
|
|
142
146
|
msgid "The execution has to be paused."
|
|
143
147
|
msgstr ""
|
|
144
148
|
|
|
145
|
-
#: ../app/controllers/foreman_tasks/tasks_controller.rb:
|
|
149
|
+
#: ../app/controllers/foreman_tasks/tasks_controller.rb:86
|
|
146
150
|
msgid "The task resources were unlocked with force."
|
|
147
151
|
msgstr ""
|
|
148
152
|
|
|
149
|
-
#: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:
|
|
150
|
-
#: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:
|
|
151
|
-
#: ../app/models/foreman_tasks/recurring_logic.rb:
|
|
153
|
+
#: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:39
|
|
154
|
+
#: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:48
|
|
155
|
+
#: ../app/models/foreman_tasks/recurring_logic.rb:140
|
|
156
|
+
#: ../app/models/foreman_tasks/task.rb:101
|
|
152
157
|
#: ../app/views/foreman_tasks/tasks/dashboard/_latest_tasks_in_error_warning.html.erb:14
|
|
153
158
|
#: ../app/views/foreman_tasks/tasks/dashboard/_tasks_status.html.erb:14
|
|
154
159
|
msgid "N/A"
|
|
155
160
|
msgstr ""
|
|
156
161
|
|
|
157
|
-
#: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:
|
|
162
|
+
#: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:41
|
|
158
163
|
msgid "in %s"
|
|
159
164
|
msgstr ""
|
|
160
165
|
|
|
161
|
-
#: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:
|
|
166
|
+
#: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:41
|
|
162
167
|
msgid "%s ago"
|
|
163
168
|
msgstr ""
|
|
164
169
|
|
|
165
|
-
#: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:
|
|
170
|
+
#: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:51
|
|
166
171
|
msgid " seconds"
|
|
167
172
|
msgstr ""
|
|
168
173
|
|
|
169
|
-
#: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:
|
|
174
|
+
#: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:58
|
|
175
|
+
msgid "Enable"
|
|
176
|
+
msgstr ""
|
|
177
|
+
|
|
178
|
+
#: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:59
|
|
179
|
+
msgid "Disable"
|
|
180
|
+
msgstr ""
|
|
181
|
+
|
|
182
|
+
#: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:60
|
|
170
183
|
#: ../app/views/foreman_tasks/tasks/_details.html.erb:12
|
|
171
184
|
#: ../app/views/foreman_tasks/tasks/_details.html.erb:56
|
|
172
185
|
#: ../app/views/foreman_tasks/tasks/_details.html.erb:81
|
|
@@ -174,120 +187,120 @@ msgstr ""
|
|
|
174
187
|
msgid "Cancel"
|
|
175
188
|
msgstr ""
|
|
176
189
|
|
|
177
|
-
#: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:
|
|
190
|
+
#: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:121
|
|
178
191
|
#: ../app/views/foreman_tasks/tasks/_details.html.erb:123
|
|
179
192
|
msgid "Start at"
|
|
180
193
|
msgstr ""
|
|
181
194
|
|
|
182
|
-
#: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:
|
|
195
|
+
#: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:122
|
|
183
196
|
#: ../app/views/foreman_tasks/tasks/_details.html.erb:135
|
|
184
197
|
msgid "Start before"
|
|
185
198
|
msgstr ""
|
|
186
199
|
|
|
187
|
-
#: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:
|
|
200
|
+
#: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:123
|
|
188
201
|
msgid ""
|
|
189
202
|
"Indicates that the action should be cancelled if it cannot be started before t"
|
|
190
203
|
"his time."
|
|
191
204
|
msgstr ""
|
|
192
205
|
|
|
193
|
-
#: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:
|
|
206
|
+
#: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:131
|
|
194
207
|
msgid "Repeats"
|
|
195
208
|
msgstr ""
|
|
196
209
|
|
|
197
210
|
#. TRANSLATORS: this translation is referring to an option which is a time interval
|
|
198
|
-
#: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:
|
|
211
|
+
#: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:147
|
|
199
212
|
msgid "is minute (range: 0-59)"
|
|
200
213
|
msgstr ""
|
|
201
214
|
|
|
202
215
|
#. TRANSLATORS: this translation is referring to an option which is a time interval
|
|
203
|
-
#: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:
|
|
216
|
+
#: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:149
|
|
204
217
|
msgid "is hour (range: 0-23)"
|
|
205
218
|
msgstr ""
|
|
206
219
|
|
|
207
220
|
#. TRANSLATORS: this translation is referring to an option which is a time interval
|
|
208
|
-
#: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:
|
|
221
|
+
#: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:151
|
|
209
222
|
msgid "is day of month (range: 1-31)"
|
|
210
223
|
msgstr ""
|
|
211
224
|
|
|
212
225
|
#. TRANSLATORS: this translation is referring to an option which is a time interval
|
|
213
|
-
#: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:
|
|
226
|
+
#: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:153
|
|
214
227
|
msgid "is month (range: 1-12)"
|
|
215
228
|
msgstr ""
|
|
216
229
|
|
|
217
230
|
#. TRANSLATORS: this translation is referring to an option which is a time interval
|
|
218
|
-
#: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:
|
|
231
|
+
#: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:155
|
|
219
232
|
msgid "is day of week (range: 0-6)"
|
|
220
233
|
msgstr ""
|
|
221
234
|
|
|
222
|
-
#: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:
|
|
235
|
+
#: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:158
|
|
223
236
|
msgid "Cron line format 'a b c d e', where: %s"
|
|
224
237
|
msgstr ""
|
|
225
238
|
|
|
226
|
-
#: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:
|
|
227
|
-
#: ../app/views/foreman_tasks/recurring_logics/index.html.erb:
|
|
239
|
+
#: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:160
|
|
240
|
+
#: ../app/views/foreman_tasks/recurring_logics/index.html.erb:10
|
|
228
241
|
#: ../app/views/foreman_tasks/task_groups/recurring_logic_task_groups/_recurring_logic_task_group.html.erb:8
|
|
229
242
|
msgid "Cron line"
|
|
230
243
|
msgstr ""
|
|
231
244
|
|
|
232
|
-
#: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:
|
|
245
|
+
#: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:166
|
|
233
246
|
msgid "Days"
|
|
234
247
|
msgstr ""
|
|
235
248
|
|
|
236
|
-
#: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:
|
|
249
|
+
#: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:175
|
|
237
250
|
msgid "Days of week"
|
|
238
251
|
msgstr ""
|
|
239
252
|
|
|
240
|
-
#: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:
|
|
253
|
+
#: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:176
|
|
241
254
|
msgid "Mon"
|
|
242
255
|
msgstr ""
|
|
243
256
|
|
|
244
|
-
#: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:
|
|
257
|
+
#: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:177
|
|
245
258
|
msgid "Tue"
|
|
246
259
|
msgstr ""
|
|
247
260
|
|
|
248
|
-
#: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:
|
|
261
|
+
#: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:178
|
|
249
262
|
msgid "Wed"
|
|
250
263
|
msgstr ""
|
|
251
264
|
|
|
252
|
-
#: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:
|
|
265
|
+
#: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:179
|
|
253
266
|
msgid "Thu"
|
|
254
267
|
msgstr ""
|
|
255
268
|
|
|
256
|
-
#: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:
|
|
269
|
+
#: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:180
|
|
257
270
|
msgid "Fri"
|
|
258
271
|
msgstr ""
|
|
259
272
|
|
|
260
|
-
#: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:
|
|
273
|
+
#: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:181
|
|
261
274
|
msgid "Sat"
|
|
262
275
|
msgstr ""
|
|
263
276
|
|
|
264
|
-
#: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:
|
|
277
|
+
#: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:182
|
|
265
278
|
msgid "Sun"
|
|
266
279
|
msgstr ""
|
|
267
280
|
|
|
268
281
|
#. TRANSLATORS: Time widget for when a task should start
|
|
269
|
-
#: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:
|
|
282
|
+
#: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:191
|
|
270
283
|
msgid "At"
|
|
271
284
|
msgstr ""
|
|
272
285
|
|
|
273
|
-
#: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:
|
|
286
|
+
#: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:193
|
|
274
287
|
msgid "Repeat N times"
|
|
275
288
|
msgstr ""
|
|
276
289
|
|
|
277
|
-
#: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:
|
|
290
|
+
#: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:194
|
|
278
291
|
msgid "Ends"
|
|
279
292
|
msgstr ""
|
|
280
293
|
|
|
281
|
-
#: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:
|
|
294
|
+
#: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:195
|
|
282
295
|
msgid "Never"
|
|
283
296
|
msgstr ""
|
|
284
297
|
|
|
285
298
|
#. TRANSLATORS: Button text for saying when a task should end
|
|
286
|
-
#: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:
|
|
299
|
+
#: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:197
|
|
287
300
|
msgid "On"
|
|
288
301
|
msgstr ""
|
|
289
302
|
|
|
290
|
-
#: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:
|
|
303
|
+
#: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:200
|
|
291
304
|
msgid "Ends at"
|
|
292
305
|
msgstr ""
|
|
293
306
|
|
|
@@ -295,7 +308,7 @@ msgstr ""
|
|
|
295
308
|
msgid "Unlimited"
|
|
296
309
|
msgstr ""
|
|
297
310
|
|
|
298
|
-
#: ../app/lib/actions/action_with_sub_plans.rb:
|
|
311
|
+
#: ../app/lib/actions/action_with_sub_plans.rb:11
|
|
299
312
|
msgid "%{total} task(s), %{success} success, %{failed} fail"
|
|
300
313
|
msgstr ""
|
|
301
314
|
|
|
@@ -311,7 +324,7 @@ msgstr ""
|
|
|
311
324
|
msgid "The targets are of different types"
|
|
312
325
|
msgstr ""
|
|
313
326
|
|
|
314
|
-
#: ../app/lib/actions/foreman/host/import_facts.rb:
|
|
327
|
+
#: ../app/lib/actions/foreman/host/import_facts.rb:48 action_names.rb:3
|
|
315
328
|
msgid "Import facts"
|
|
316
329
|
msgstr ""
|
|
317
330
|
|
|
@@ -387,23 +400,31 @@ msgstr ""
|
|
|
387
400
|
msgid "Initialization error: %s"
|
|
388
401
|
msgstr ""
|
|
389
402
|
|
|
390
|
-
#: ../app/models/foreman_tasks/recurring_logic.rb:
|
|
403
|
+
#: ../app/models/foreman_tasks/recurring_logic.rb:132
|
|
391
404
|
msgid "Active"
|
|
392
405
|
msgstr ""
|
|
393
406
|
|
|
394
|
-
#: ../app/models/foreman_tasks/recurring_logic.rb:
|
|
407
|
+
#: ../app/models/foreman_tasks/recurring_logic.rb:134
|
|
395
408
|
msgid "Cancelled"
|
|
396
409
|
msgstr ""
|
|
397
410
|
|
|
398
|
-
#: ../app/models/foreman_tasks/recurring_logic.rb:
|
|
411
|
+
#: ../app/models/foreman_tasks/recurring_logic.rb:136
|
|
399
412
|
msgid "Finished"
|
|
400
413
|
msgstr ""
|
|
401
414
|
|
|
402
|
-
#: ../app/models/foreman_tasks/
|
|
415
|
+
#: ../app/models/foreman_tasks/recurring_logic.rb:138
|
|
416
|
+
msgid "Disabled"
|
|
417
|
+
msgstr ""
|
|
418
|
+
|
|
419
|
+
#: ../app/models/foreman_tasks/recurring_logic_cancelled_exception.rb:3
|
|
420
|
+
msgid "Cannot update a cancelled Recurring Logic."
|
|
421
|
+
msgstr ""
|
|
422
|
+
|
|
423
|
+
#: ../app/models/foreman_tasks/task.rb:86
|
|
403
424
|
msgid "Delayed"
|
|
404
425
|
msgstr ""
|
|
405
426
|
|
|
406
|
-
#: ../app/models/foreman_tasks/task.rb:
|
|
427
|
+
#: ../app/models/foreman_tasks/task.rb:86
|
|
407
428
|
msgid "Immediate"
|
|
408
429
|
msgstr ""
|
|
409
430
|
|
|
@@ -442,24 +463,28 @@ msgid "The task could not be started"
|
|
|
442
463
|
msgstr ""
|
|
443
464
|
|
|
444
465
|
#: ../app/models/setting/foreman_tasks.rb:8
|
|
445
|
-
msgid "
|
|
466
|
+
msgid "Number of seconds to wait for synchronous task to finish."
|
|
446
467
|
msgstr ""
|
|
447
468
|
|
|
448
469
|
#: ../app/models/setting/foreman_tasks.rb:9
|
|
449
|
-
msgid "
|
|
470
|
+
msgid "Allow unlocking actions which can have dangerous consequences."
|
|
450
471
|
msgstr ""
|
|
451
472
|
|
|
452
473
|
#: ../app/models/setting/foreman_tasks.rb:10
|
|
474
|
+
msgid "Enable the dynflow console (/foreman_tasks/dynflow) for debugging"
|
|
475
|
+
msgstr ""
|
|
476
|
+
|
|
477
|
+
#: ../app/models/setting/foreman_tasks.rb:11
|
|
453
478
|
msgid ""
|
|
454
479
|
"Require user to be authenticated as user with admin rights when accessing dynf"
|
|
455
480
|
"low console"
|
|
456
481
|
msgstr ""
|
|
457
482
|
|
|
458
|
-
#: ../app/models/setting/foreman_tasks.rb:
|
|
483
|
+
#: ../app/models/setting/foreman_tasks.rb:12
|
|
459
484
|
msgid "Number of attempts to start a task on the smart proxy before failing"
|
|
460
485
|
msgstr ""
|
|
461
486
|
|
|
462
|
-
#: ../app/models/setting/foreman_tasks.rb:
|
|
487
|
+
#: ../app/models/setting/foreman_tasks.rb:13
|
|
463
488
|
msgid "Time in seconds between retries"
|
|
464
489
|
msgstr ""
|
|
465
490
|
|
|
@@ -483,12 +508,12 @@ msgstr ""
|
|
|
483
508
|
msgid "Recurring logics"
|
|
484
509
|
msgstr ""
|
|
485
510
|
|
|
486
|
-
#: ../app/views/foreman_tasks/recurring_logics/index.html.erb:
|
|
511
|
+
#: ../app/views/foreman_tasks/recurring_logics/index.html.erb:11
|
|
487
512
|
#: ../app/views/foreman_tasks/task_groups/_common.html.erb:8
|
|
488
513
|
msgid "Task count"
|
|
489
514
|
msgstr ""
|
|
490
515
|
|
|
491
|
-
#: ../app/views/foreman_tasks/recurring_logics/index.html.erb:
|
|
516
|
+
#: ../app/views/foreman_tasks/recurring_logics/index.html.erb:12
|
|
492
517
|
#: ../app/views/foreman_tasks/task_groups/recurring_logic_task_groups/_recurring_logic_task_group.html.erb:12
|
|
493
518
|
#: ../app/views/foreman_tasks/tasks/_errors.html.erb:16
|
|
494
519
|
#: ../app/views/foreman_tasks/tasks/_running_steps.html.erb:19
|
|
@@ -496,32 +521,32 @@ msgstr ""
|
|
|
496
521
|
msgid "Action"
|
|
497
522
|
msgstr ""
|
|
498
523
|
|
|
499
|
-
#: ../app/views/foreman_tasks/recurring_logics/index.html.erb:
|
|
524
|
+
#: ../app/views/foreman_tasks/recurring_logics/index.html.erb:13
|
|
500
525
|
#: ../app/views/foreman_tasks/task_groups/recurring_logic_task_groups/_recurring_logic_task_group.html.erb:16
|
|
501
526
|
msgid "Last occurrence"
|
|
502
527
|
msgstr ""
|
|
503
528
|
|
|
504
|
-
#: ../app/views/foreman_tasks/recurring_logics/index.html.erb:
|
|
529
|
+
#: ../app/views/foreman_tasks/recurring_logics/index.html.erb:14
|
|
505
530
|
#: ../app/views/foreman_tasks/task_groups/recurring_logic_task_groups/_recurring_logic_task_group.html.erb:20
|
|
506
531
|
msgid "Next occurrence"
|
|
507
532
|
msgstr ""
|
|
508
533
|
|
|
509
|
-
#: ../app/views/foreman_tasks/recurring_logics/index.html.erb:
|
|
534
|
+
#: ../app/views/foreman_tasks/recurring_logics/index.html.erb:15
|
|
510
535
|
#: ../app/views/foreman_tasks/task_groups/recurring_logic_task_groups/_recurring_logic_task_group.html.erb:24
|
|
511
536
|
msgid "Current iteration"
|
|
512
537
|
msgstr ""
|
|
513
538
|
|
|
514
|
-
#: ../app/views/foreman_tasks/recurring_logics/index.html.erb:
|
|
539
|
+
#: ../app/views/foreman_tasks/recurring_logics/index.html.erb:16
|
|
515
540
|
#: ../app/views/foreman_tasks/task_groups/recurring_logic_task_groups/_recurring_logic_task_group.html.erb:28
|
|
516
541
|
msgid "Iteration limit"
|
|
517
542
|
msgstr ""
|
|
518
543
|
|
|
519
|
-
#: ../app/views/foreman_tasks/recurring_logics/index.html.erb:
|
|
544
|
+
#: ../app/views/foreman_tasks/recurring_logics/index.html.erb:17
|
|
520
545
|
#: ../app/views/foreman_tasks/task_groups/recurring_logic_task_groups/_recurring_logic_task_group.html.erb:32
|
|
521
546
|
msgid "Repeat until"
|
|
522
547
|
msgstr ""
|
|
523
548
|
|
|
524
|
-
#: ../app/views/foreman_tasks/recurring_logics/index.html.erb:
|
|
549
|
+
#: ../app/views/foreman_tasks/recurring_logics/index.html.erb:18
|
|
525
550
|
#: ../app/views/foreman_tasks/task_groups/recurring_logic_task_groups/_recurring_logic_task_group.html.erb:36
|
|
526
551
|
#: ../app/views/foreman_tasks/tasks/_running_steps.html.erb:24
|
|
527
552
|
#: ../app/views/foreman_tasks/tasks/dashboard/_latest_tasks_in_error_warning.html.erb:5
|
|
@@ -619,6 +644,11 @@ msgstr ""
|
|
|
619
644
|
msgid "Execution type"
|
|
620
645
|
msgstr ""
|
|
621
646
|
|
|
647
|
+
#: ../app/views/foreman_tasks/tasks/_details.html.erb:117
|
|
648
|
+
#: ../app/views/foreman_tasks/tasks/index.html.erb:20
|
|
649
|
+
msgid "(Disabled)"
|
|
650
|
+
msgstr ""
|
|
651
|
+
|
|
622
652
|
#: ../app/views/foreman_tasks/tasks/_details.html.erb:127
|
|
623
653
|
#: ../app/views/foreman_tasks/tasks/index.html.erb:10
|
|
624
654
|
msgid "Started at"
|
|
@@ -771,9 +801,9 @@ msgid "Recurring Logics"
|
|
|
771
801
|
msgstr ""
|
|
772
802
|
|
|
773
803
|
#: action_names.rb:2
|
|
774
|
-
msgid "
|
|
804
|
+
msgid "Action with sub plans"
|
|
775
805
|
msgstr ""
|
|
776
806
|
|
|
777
|
-
#: action_names.rb:
|
|
778
|
-
msgid "
|
|
807
|
+
#: action_names.rb:5
|
|
808
|
+
msgid "Remote action:"
|
|
779
809
|
msgstr ""
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: foreman-tasks
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.14.
|
|
4
|
+
version: 0.14.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ivan Nečas
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-
|
|
11
|
+
date: 2018-11-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: foreman-tasks-core
|