foreman_remote_execution 12.0.7 → 13.0.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.
Files changed (91) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/js_ci.yml +1 -1
  3. data/.github/workflows/ruby_ci.yml +16 -81
  4. data/.packit.yaml +8 -3
  5. data/app/assets/javascripts/foreman_remote_execution/locale/de/foreman_remote_execution.js +23 -14
  6. data/app/assets/javascripts/foreman_remote_execution/locale/en/foreman_remote_execution.js +22 -4
  7. data/app/assets/javascripts/foreman_remote_execution/locale/en_GB/foreman_remote_execution.js +23 -14
  8. data/app/assets/javascripts/foreman_remote_execution/locale/es/foreman_remote_execution.js +23 -14
  9. data/app/assets/javascripts/foreman_remote_execution/locale/fr/foreman_remote_execution.js +23 -14
  10. data/app/assets/javascripts/foreman_remote_execution/locale/ja/foreman_remote_execution.js +23 -14
  11. data/app/assets/javascripts/foreman_remote_execution/locale/ka/foreman_remote_execution.js +23 -14
  12. data/app/assets/javascripts/foreman_remote_execution/locale/ko/foreman_remote_execution.js +23 -14
  13. data/app/assets/javascripts/foreman_remote_execution/locale/pt_BR/foreman_remote_execution.js +23 -14
  14. data/app/assets/javascripts/foreman_remote_execution/locale/ru/foreman_remote_execution.js +23 -14
  15. data/app/assets/javascripts/foreman_remote_execution/locale/zh_CN/foreman_remote_execution.js +23 -14
  16. data/app/assets/javascripts/foreman_remote_execution/locale/zh_TW/foreman_remote_execution.js +23 -14
  17. data/app/controllers/ui_job_wizard_controller.rb +1 -1
  18. data/app/helpers/job_invocations_helper.rb +1 -1
  19. data/app/helpers/remote_execution_helper.rb +2 -2
  20. data/app/lib/actions/remote_execution/proxy_action.rb +1 -1
  21. data/app/lib/actions/remote_execution/run_host_job.rb +9 -3
  22. data/app/lib/actions/remote_execution/run_hosts_job.rb +0 -1
  23. data/app/models/host_status/execution_status.rb +2 -2
  24. data/app/views/job_invocations/_preview_hosts_list.html.erb +1 -1
  25. data/app/views/job_invocations/show.html.erb +12 -5
  26. data/app/views/job_invocations/show.js.erb +8 -1
  27. data/app/views/job_invocations/welcome.html.erb +1 -1
  28. data/app/views/template_invocations/_refresh.js.erb +10 -4
  29. data/app/views/template_invocations/show.html.erb +2 -2
  30. data/app/views/templates/script/convert2rhel_analyze.erb +12 -1
  31. data/lib/foreman_remote_execution/engine.rb +1 -1
  32. data/lib/foreman_remote_execution/version.rb +1 -1
  33. data/locale/de/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  34. data/locale/de/foreman_remote_execution.po +24 -6
  35. data/locale/en/foreman_remote_execution.po +24 -6
  36. data/locale/en_GB/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  37. data/locale/en_GB/foreman_remote_execution.po +24 -6
  38. data/locale/es/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  39. data/locale/es/foreman_remote_execution.po +24 -6
  40. data/locale/foreman_remote_execution.pot +170 -142
  41. data/locale/fr/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  42. data/locale/fr/foreman_remote_execution.po +24 -6
  43. data/locale/ja/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  44. data/locale/ja/foreman_remote_execution.po +24 -6
  45. data/locale/ka/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  46. data/locale/ka/foreman_remote_execution.po +24 -6
  47. data/locale/ko/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  48. data/locale/ko/foreman_remote_execution.po +24 -6
  49. data/locale/pt_BR/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  50. data/locale/pt_BR/foreman_remote_execution.po +24 -6
  51. data/locale/ru/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  52. data/locale/ru/foreman_remote_execution.po +24 -6
  53. data/locale/zh_CN/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  54. data/locale/zh_CN/foreman_remote_execution.po +24 -6
  55. data/locale/zh_TW/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  56. data/locale/zh_TW/foreman_remote_execution.po +24 -6
  57. data/package.json +1 -5
  58. data/test/functional/api/v2/job_invocations_controller_test.rb +7 -7
  59. data/test/functional/api/v2/template_invocations_controller_test.rb +3 -3
  60. data/test/helpers/remote_execution_helper_test.rb +8 -7
  61. data/test/unit/actions/run_host_job_test.rb +1 -1
  62. data/test/unit/actions/run_hosts_job_test.rb +11 -11
  63. data/test/unit/concerns/foreman_tasks_cleaner_extensions_test.rb +5 -5
  64. data/test/unit/concerns/host_extensions_test.rb +34 -34
  65. data/test/unit/concerns/nic_extensions_test.rb +1 -1
  66. data/test/unit/execution_task_status_mapper_test.rb +10 -10
  67. data/test/unit/input_template_renderer_test.rb +53 -49
  68. data/test/unit/job_invocation_composer_test.rb +78 -78
  69. data/test/unit/job_invocation_test.rb +25 -25
  70. data/test/unit/job_template_effective_user_test.rb +3 -3
  71. data/test/unit/job_template_test.rb +28 -28
  72. data/test/unit/remote_execution_feature_test.rb +14 -14
  73. data/test/unit/remote_execution_provider_test.rb +39 -39
  74. data/test/unit/renderer_scope_input_test.rb +6 -6
  75. data/test/unit/targeting_test.rb +32 -32
  76. data/webpack/JobWizard/JobWizardConstants.js +4 -0
  77. data/webpack/JobWizard/JobWizardSelectors.js +31 -3
  78. data/webpack/JobWizard/PermissionDenied.js +64 -0
  79. data/webpack/JobWizard/__tests__/fixtures.js +3 -3
  80. data/webpack/JobWizard/autofill.js +8 -4
  81. data/webpack/JobWizard/index.js +40 -1
  82. data/webpack/JobWizard/steps/CategoryAndTemplate/CategoryAndTemplate.js +26 -5
  83. data/webpack/JobWizard/steps/HostsAndInputs/HostPreviewModal.js +3 -3
  84. data/webpack/JobWizard/steps/HostsAndInputs/SelectGQL.js +1 -0
  85. data/webpack/JobWizard/steps/HostsAndInputs/SelectedChips.js +13 -6
  86. data/webpack/JobWizard/steps/HostsAndInputs/hosts.gql +1 -0
  87. data/webpack/JobWizard/steps/HostsAndInputs/index.js +21 -1
  88. data/webpack/JobWizard/steps/ReviewDetails/index.js +3 -2
  89. data/webpack/JobWizard/steps/form/SearchSelect.js +3 -1
  90. data/webpack/JobWizard/steps/form/__tests__/SelectSearch.test.js +2 -0
  91. metadata +7 -6
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4f871d2e9c1aee96069fc7407b225e5b2d05f68e477cae70b2eb291a120f39f9
4
- data.tar.gz: 9603e2e2dd2a2cb79ce5887ed31f82349d23a07c7d72b7263a2fc79eab5d86e4
3
+ metadata.gz: 9a5e47997164244116ccb9c37d8eb7f7ec32b36d953ddcba6763ba86afc84a0f
4
+ data.tar.gz: ec69e4b0ef576ba474949648e164ba6d6bcd252bc4f9e501c7adaa8dc69b4da9
5
5
  SHA512:
6
- metadata.gz: 5f2f6fd98bd577b4c6d82f4b91dc8e4c696017bdab604711547b961d05f4048def0ae2e18dbab7fb1d5b35b25f78e09f6ad395dee44a5ca4adbcca0622d09e8a
7
- data.tar.gz: 81e3797636823927c85e92400991e34129195197e601b9118263a8f0d4ba3fcaeaa0e5b2889be46c94e29ce024721f0234874c383720aab5a25c856e5a68e46b
6
+ metadata.gz: e3cf4ecf6c5834264479776dad8342b039964664ab2ff9b388da168c9ad5337d7b2f013d435bf64e6aedc15929a0147e882d068883b1d1dabaeac82a09193f72
7
+ data.tar.gz: c41da5c789687b7374a4412c12d3a20befeda3a46d1ab087d12da91a053c82a1fd6d63164d4a11043cb4931c899012e2da9b57c1f250893ed1ec79a2db8e03a1
@@ -11,7 +11,7 @@ jobs:
11
11
  strategy:
12
12
  fail-fast: false
13
13
  matrix:
14
- node-version: [12]
14
+ node-version: [14]
15
15
  steps:
16
16
  - uses: actions/checkout@v2
17
17
  - name: Setup Node
@@ -1,84 +1,19 @@
1
- name: Ruby
2
- on:
3
- pull_request:
4
- push:
5
- branches:
6
- - master
7
- env:
8
- RAILS_ENV: test
9
- DATABASE_URL: postgresql://postgres:@localhost/test
10
- DATABASE_CLEANER_ALLOW_REMOTE_DATABASE_URL: true
1
+ name: CI
2
+
3
+ on: pull_request
4
+
5
+ concurrency:
6
+ group: ${{ github.ref_name }}-${{ github.workflow }}
7
+ cancel-in-progress: true
8
+
11
9
  jobs:
12
10
  rubocop:
13
- runs-on: ubuntu-latest
14
- steps:
15
- - uses: actions/checkout@v2
16
- - run: sudo apt-get update
17
- - run: sudo apt-get install libyaml-dev
18
- - name: Setup Ruby
19
- uses: ruby/setup-ruby@v1
20
- with:
21
- ruby-version: 2.7
22
- bundler-cache: true
23
- cache-version: 1
24
- rubygems: 3.0.0
25
- - name: Run rubocop
26
- if: github.event_name != 'push'
27
- run: bundle exec rubocop --format github
28
- test_ruby:
29
- runs-on: ubuntu-latest
11
+ name: Rubocop
12
+ uses: theforeman/actions/.github/workflows/rubocop.yml@v0
13
+
14
+ test:
15
+ name: Ruby
30
16
  needs: rubocop
31
- timeout-minutes: 30
32
- env:
33
- BUNDLE_WITHOUT: journald:development:console:libvirt
34
- services:
35
- postgres:
36
- image: postgres:12.1
37
- ports: ['5432:5432']
38
- options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
39
- strategy:
40
- fail-fast: false
41
- matrix:
42
- foreman-core-branch: [develop]
43
- ruby-version: [2.7]
44
- node-version: [12]
45
- steps:
46
- - run: sudo apt-get update
47
- - run: sudo apt-get install build-essential libcurl4-openssl-dev zlib1g-dev libpq-dev libyaml-dev
48
- - uses: actions/checkout@v2
49
- with:
50
- repository: theforeman/foreman
51
- ref: ${{ matrix.foreman-core-branch }}
52
- - uses: actions/checkout@v2
53
- with:
54
- path: foreman_remote_execution
55
- - name: Setup Bundler
56
- run: |
57
- echo "gem 'foreman_remote_execution', path: './foreman_remote_execution'" > bundler.d/foreman_remote_execution.local.rb
58
- - name: Setup Ruby
59
- uses: ruby/setup-ruby@v1
60
- with:
61
- ruby-version: ${{ matrix.ruby-version }}
62
- bundler-cache: true
63
- - name: Setup Node
64
- if: github.event_name != 'push'
65
- uses: actions/setup-node@v1
66
- with:
67
- node-version: ${{ matrix.node-version }}
68
- - name: Prepare test DB
69
- if: github.event_name != 'push'
70
- run: |
71
- bundle exec rake db:create
72
- bundle exec rake db:migrate
73
- - name: Run plugin tests
74
- if: github.event_name != 'push'
75
- run: |
76
- bundle exec rake test:foreman_remote_execution
77
- bundle exec rake test TEST="test/unit/foreman/access_permissions_test.rb"
78
- - name: 'Upload logs'
79
- uses: actions/upload-artifact@v2
80
- if: failure()
81
- with:
82
- name: logs
83
- path: log/*.log
84
- retention-days: 5
17
+ uses: theforeman/actions/.github/workflows/foreman_plugin.yml@v0
18
+ with:
19
+ plugin: foreman_remote_execution
data/.packit.yaml CHANGED
@@ -28,11 +28,16 @@ jobs:
28
28
  - job: copr_build
29
29
  trigger: pull_request
30
30
  targets:
31
- centos-stream-8:
31
+ rhel-8:
32
32
  additional_modules: "foreman-devel:el8"
33
33
  additional_repos:
34
- - http://koji.katello.org/releases/yum/foreman-nightly/el8/x86_64/
35
- - http://yum.theforeman.org/plugins/nightly/el8/x86_64/
34
+ - https://yum.theforeman.org/releases/nightly/el8/x86_64/
35
+ - https://yum.theforeman.org/plugins/nightly/el8/x86_64/
36
+ rhel-9:
37
+ additional_modules: "foreman-devel:el9"
38
+ additional_repos:
39
+ - https://yum.theforeman.org/releases/nightly/el9/x86_64/
40
+ - https://yum.theforeman.org/plugins/nightly/el9/x86_64/
36
41
  module_hotfixes: true
37
42
 
38
43
  srpm_build_deps:
@@ -329,6 +329,9 @@
329
329
  "Any Location": [
330
330
  "Jeder Standort"
331
331
  ],
332
+ "Awaiting start": [
333
+ ""
334
+ ],
332
335
  "error": [
333
336
  "Error"
334
337
  ],
@@ -510,9 +513,6 @@
510
513
  "Last execution succeeded": [
511
514
  "Letzte Ausführung erfolgreich"
512
515
  ],
513
- "No execution finished yet": [
514
- "Noch keine Ausführung abgeschlossen"
515
- ],
516
516
  "Last execution cancelled": [
517
517
  "Letzte Ausführung abgebrochen"
518
518
  ],
@@ -1228,6 +1228,18 @@
1228
1228
  "Current location %s is different from job's location %s. This job may run on different hosts than before.": [
1229
1229
  ""
1230
1230
  ],
1231
+ "You are not authorized to perform this action.": [
1232
+ ""
1233
+ ],
1234
+ "Please request the required permissions listed below from a Foreman administrator:": [
1235
+ ""
1236
+ ],
1237
+ "Permission Denied": [
1238
+ ""
1239
+ ],
1240
+ "Proceed Anyway": [
1241
+ ""
1242
+ ],
1231
1243
  "'Starts before' date must in the future": [
1232
1244
  ""
1233
1245
  ],
@@ -1258,8 +1270,14 @@
1258
1270
  "All fields are required.": [
1259
1271
  "Alle Felder sind erforderlich."
1260
1272
  ],
1261
- "Error": [
1262
- "Fehler"
1273
+ "Not available": [
1274
+ ""
1275
+ ],
1276
+ "Access denied": [
1277
+ ""
1278
+ ],
1279
+ "Missing the required permissions: ${missingPermissions.join( ', ' )}": [
1280
+ ""
1263
1281
  ],
1264
1282
  "Errors:": [
1265
1283
  "Fehler:"
@@ -1572,15 +1590,6 @@
1572
1590
  ],
1573
1591
  "A plugin bringing remote execution to the Foreman, completing the config management functionality with remote management functionality.": [
1574
1592
  "Ein Plugin, das Foreman entfernte Ausführung bietet und die Konfig-Verwaltungsfunktion mit einer entfernten Verwaltungsfunktion ergänzt."
1575
- ],
1576
- "Action with sub plans": [
1577
- "Aktion mit Unterplänen"
1578
- ],
1579
- "Import Puppet classes": [
1580
- "Puppet-Klassen importieren"
1581
- ],
1582
- "Import facts": [
1583
- "Fakten importieren"
1584
1593
  ]
1585
1594
  }
1586
1595
  }
@@ -329,6 +329,9 @@
329
329
  "Any Location": [
330
330
  ""
331
331
  ],
332
+ "Awaiting start": [
333
+ ""
334
+ ],
332
335
  "error": [
333
336
  ""
334
337
  ],
@@ -510,9 +513,6 @@
510
513
  "Last execution succeeded": [
511
514
  ""
512
515
  ],
513
- "No execution finished yet": [
514
- ""
515
- ],
516
516
  "Last execution cancelled": [
517
517
  ""
518
518
  ],
@@ -1228,6 +1228,18 @@
1228
1228
  "Current location %s is different from job's location %s. This job may run on different hosts than before.": [
1229
1229
  ""
1230
1230
  ],
1231
+ "You are not authorized to perform this action.": [
1232
+ ""
1233
+ ],
1234
+ "Please request the required permissions listed below from a Foreman administrator:": [
1235
+ ""
1236
+ ],
1237
+ "Permission Denied": [
1238
+ ""
1239
+ ],
1240
+ "Proceed Anyway": [
1241
+ ""
1242
+ ],
1231
1243
  "'Starts before' date must in the future": [
1232
1244
  ""
1233
1245
  ],
@@ -1258,7 +1270,13 @@
1258
1270
  "All fields are required.": [
1259
1271
  ""
1260
1272
  ],
1261
- "Error": [
1273
+ "Not available": [
1274
+ ""
1275
+ ],
1276
+ "Access denied": [
1277
+ ""
1278
+ ],
1279
+ "Missing the required permissions: ${missingPermissions.join( ', ' )}": [
1262
1280
  ""
1263
1281
  ],
1264
1282
  "Errors:": [
@@ -329,6 +329,9 @@
329
329
  "Any Location": [
330
330
  ""
331
331
  ],
332
+ "Awaiting start": [
333
+ ""
334
+ ],
332
335
  "error": [
333
336
  ""
334
337
  ],
@@ -510,9 +513,6 @@
510
513
  "Last execution succeeded": [
511
514
  ""
512
515
  ],
513
- "No execution finished yet": [
514
- ""
515
- ],
516
516
  "Last execution cancelled": [
517
517
  ""
518
518
  ],
@@ -1228,6 +1228,18 @@
1228
1228
  "Current location %s is different from job's location %s. This job may run on different hosts than before.": [
1229
1229
  ""
1230
1230
  ],
1231
+ "You are not authorized to perform this action.": [
1232
+ ""
1233
+ ],
1234
+ "Please request the required permissions listed below from a Foreman administrator:": [
1235
+ ""
1236
+ ],
1237
+ "Permission Denied": [
1238
+ ""
1239
+ ],
1240
+ "Proceed Anyway": [
1241
+ ""
1242
+ ],
1231
1243
  "'Starts before' date must in the future": [
1232
1244
  ""
1233
1245
  ],
@@ -1258,8 +1270,14 @@
1258
1270
  "All fields are required.": [
1259
1271
  ""
1260
1272
  ],
1261
- "Error": [
1262
- "Error"
1273
+ "Not available": [
1274
+ ""
1275
+ ],
1276
+ "Access denied": [
1277
+ ""
1278
+ ],
1279
+ "Missing the required permissions: ${missingPermissions.join( ', ' )}": [
1280
+ ""
1263
1281
  ],
1264
1282
  "Errors:": [
1265
1283
  ""
@@ -1572,15 +1590,6 @@
1572
1590
  ],
1573
1591
  "A plugin bringing remote execution to the Foreman, completing the config management functionality with remote management functionality.": [
1574
1592
  ""
1575
- ],
1576
- "Action with sub plans": [
1577
- "Action with sub plans"
1578
- ],
1579
- "Import Puppet classes": [
1580
- "Import Puppet classes"
1581
- ],
1582
- "Import facts": [
1583
- "Import facts"
1584
1593
  ]
1585
1594
  }
1586
1595
  }
@@ -329,6 +329,9 @@
329
329
  "Any Location": [
330
330
  "Cualquier Lugar"
331
331
  ],
332
+ "Awaiting start": [
333
+ ""
334
+ ],
332
335
  "error": [
333
336
  "error"
334
337
  ],
@@ -511,9 +514,6 @@
511
514
  "Last execution succeeded": [
512
515
  "La última ejecución se realizó correctamente."
513
516
  ],
514
- "No execution finished yet": [
515
- "Aún no finalizó ninguna ejecución."
516
- ],
517
517
  "Last execution cancelled": [
518
518
  "Se canceló la última ejecución"
519
519
  ],
@@ -1229,6 +1229,18 @@
1229
1229
  "Current location %s is different from job's location %s. This job may run on different hosts than before.": [
1230
1230
  ""
1231
1231
  ],
1232
+ "You are not authorized to perform this action.": [
1233
+ ""
1234
+ ],
1235
+ "Please request the required permissions listed below from a Foreman administrator:": [
1236
+ ""
1237
+ ],
1238
+ "Permission Denied": [
1239
+ ""
1240
+ ],
1241
+ "Proceed Anyway": [
1242
+ ""
1243
+ ],
1232
1244
  "'Starts before' date must in the future": [
1233
1245
  ""
1234
1246
  ],
@@ -1259,8 +1271,14 @@
1259
1271
  "All fields are required.": [
1260
1272
  "Todos los campos son obligatorios."
1261
1273
  ],
1262
- "Error": [
1263
- "Error"
1274
+ "Not available": [
1275
+ ""
1276
+ ],
1277
+ "Access denied": [
1278
+ ""
1279
+ ],
1280
+ "Missing the required permissions: ${missingPermissions.join( ', ' )}": [
1281
+ ""
1264
1282
  ],
1265
1283
  "Errors:": [
1266
1284
  "Errores:"
@@ -1573,15 +1591,6 @@
1573
1591
  ],
1574
1592
  "A plugin bringing remote execution to the Foreman, completing the config management functionality with remote management functionality.": [
1575
1593
  "Un complemento que ofrece ejecución remota a Foreman y completa la funcionalidad de administración de la configuración con la funcionalidad de administración remota."
1576
- ],
1577
- "Action with sub plans": [
1578
- "Acción con subplanes"
1579
- ],
1580
- "Import Puppet classes": [
1581
- "Importar clases Puppet"
1582
- ],
1583
- "Import facts": [
1584
- "Importar datos"
1585
1594
  ]
1586
1595
  }
1587
1596
  }
@@ -329,6 +329,9 @@
329
329
  "Any Location": [
330
330
  "Tout emplacement"
331
331
  ],
332
+ "Awaiting start": [
333
+ ""
334
+ ],
332
335
  "error": [
333
336
  "erreur"
334
337
  ],
@@ -511,9 +514,6 @@
511
514
  "Last execution succeeded": [
512
515
  "La dernière exécution a réussi"
513
516
  ],
514
- "No execution finished yet": [
515
- "Aucune exécution n'est encore terminée"
516
- ],
517
517
  "Last execution cancelled": [
518
518
  "La dernière exécution a été annulée"
519
519
  ],
@@ -1230,6 +1230,18 @@
1230
1230
  "Current location %s is different from job's location %s. This job may run on different hosts than before.": [
1231
1231
  ""
1232
1232
  ],
1233
+ "You are not authorized to perform this action.": [
1234
+ ""
1235
+ ],
1236
+ "Please request the required permissions listed below from a Foreman administrator:": [
1237
+ ""
1238
+ ],
1239
+ "Permission Denied": [
1240
+ ""
1241
+ ],
1242
+ "Proceed Anyway": [
1243
+ ""
1244
+ ],
1233
1245
  "'Starts before' date must in the future": [
1234
1246
  ""
1235
1247
  ],
@@ -1260,8 +1272,14 @@
1260
1272
  "All fields are required.": [
1261
1273
  "Tous les champs sont obligatoires."
1262
1274
  ],
1263
- "Error": [
1264
- "Erreur"
1275
+ "Not available": [
1276
+ ""
1277
+ ],
1278
+ "Access denied": [
1279
+ ""
1280
+ ],
1281
+ "Missing the required permissions: ${missingPermissions.join( ', ' )}": [
1282
+ ""
1265
1283
  ],
1266
1284
  "Errors:": [
1267
1285
  "Erreurs :"
@@ -1574,15 +1592,6 @@
1574
1592
  ],
1575
1593
  "A plugin bringing remote execution to the Foreman, completing the config management functionality with remote management functionality.": [
1576
1594
  "Un greffon qui apporte l'exécution distante à Foreman, complétant la fonction de gestion de configuration avec la fonction d'exécution distante."
1577
- ],
1578
- "Action with sub plans": [
1579
- "Action avec sous-plans"
1580
- ],
1581
- "Import Puppet classes": [
1582
- "Importer des classes Puppet"
1583
- ],
1584
- "Import facts": [
1585
- "Importer des faits"
1586
1595
  ]
1587
1596
  }
1588
1597
  }
@@ -329,6 +329,9 @@
329
329
  "Any Location": [
330
330
  "任意のロケーション"
331
331
  ],
332
+ "Awaiting start": [
333
+ ""
334
+ ],
332
335
  "error": [
333
336
  "エラー"
334
337
  ],
@@ -509,9 +512,6 @@
509
512
  "Last execution succeeded": [
510
513
  "成功した最後の実行"
511
514
  ],
512
- "No execution finished yet": [
513
- "完了した実行はまだありません"
514
- ],
515
515
  "Last execution cancelled": [
516
516
  "最後の実行がキャンセルされました"
517
517
  ],
@@ -1226,6 +1226,18 @@
1226
1226
  "Current location %s is different from job's location %s. This job may run on different hosts than before.": [
1227
1227
  ""
1228
1228
  ],
1229
+ "You are not authorized to perform this action.": [
1230
+ ""
1231
+ ],
1232
+ "Please request the required permissions listed below from a Foreman administrator:": [
1233
+ ""
1234
+ ],
1235
+ "Permission Denied": [
1236
+ ""
1237
+ ],
1238
+ "Proceed Anyway": [
1239
+ ""
1240
+ ],
1229
1241
  "'Starts before' date must in the future": [
1230
1242
  ""
1231
1243
  ],
@@ -1256,8 +1268,14 @@
1256
1268
  "All fields are required.": [
1257
1269
  "すべてのフィールドは必須です。"
1258
1270
  ],
1259
- "Error": [
1260
- "エラー"
1271
+ "Not available": [
1272
+ ""
1273
+ ],
1274
+ "Access denied": [
1275
+ ""
1276
+ ],
1277
+ "Missing the required permissions: ${missingPermissions.join( ', ' )}": [
1278
+ ""
1261
1279
  ],
1262
1280
  "Errors:": [
1263
1281
  "エラー:"
@@ -1570,15 +1588,6 @@
1570
1588
  ],
1571
1589
  "A plugin bringing remote execution to the Foreman, completing the config management functionality with remote management functionality.": [
1572
1590
  "リモート実行を Foreman で実現するプラグイン。設定管理機能にリモート管理機能を補完します。"
1573
- ],
1574
- "Action with sub plans": [
1575
- "サブプランによるアクション"
1576
- ],
1577
- "Import Puppet classes": [
1578
- "Puppet クラスのインポート"
1579
- ],
1580
- "Import facts": [
1581
- "ファクトのインポート"
1582
1591
  ]
1583
1592
  }
1584
1593
  }
@@ -329,6 +329,9 @@
329
329
  "Any Location": [
330
330
  "ნებისმიერი მდებარეობა"
331
331
  ],
332
+ "Awaiting start": [
333
+ ""
334
+ ],
332
335
  "error": [
333
336
  "შეცდომა"
334
337
  ],
@@ -510,9 +513,6 @@
510
513
  "Last execution succeeded": [
511
514
  "ბოლო წარმატებული შესრულება"
512
515
  ],
513
- "No execution finished yet": [
514
- "შესრულება არ დამთავრებულა"
515
- ],
516
516
  "Last execution cancelled": [
517
517
  "ბოლო შესრულება გაუქმდა"
518
518
  ],
@@ -1228,6 +1228,18 @@
1228
1228
  "Current location %s is different from job's location %s. This job may run on different hosts than before.": [
1229
1229
  ""
1230
1230
  ],
1231
+ "You are not authorized to perform this action.": [
1232
+ ""
1233
+ ],
1234
+ "Please request the required permissions listed below from a Foreman administrator:": [
1235
+ ""
1236
+ ],
1237
+ "Permission Denied": [
1238
+ ""
1239
+ ],
1240
+ "Proceed Anyway": [
1241
+ ""
1242
+ ],
1231
1243
  "'Starts before' date must in the future": [
1232
1244
  ""
1233
1245
  ],
@@ -1258,8 +1270,14 @@
1258
1270
  "All fields are required.": [
1259
1271
  "საჭიროა ყველა ველის შევსება."
1260
1272
  ],
1261
- "Error": [
1262
- "შეცდომა"
1273
+ "Not available": [
1274
+ ""
1275
+ ],
1276
+ "Access denied": [
1277
+ ""
1278
+ ],
1279
+ "Missing the required permissions: ${missingPermissions.join( ', ' )}": [
1280
+ ""
1263
1281
  ],
1264
1282
  "Errors:": [
1265
1283
  "შეცდომები:"
@@ -1572,15 +1590,6 @@
1572
1590
  ],
1573
1591
  "A plugin bringing remote execution to the Foreman, completing the config management functionality with remote management functionality.": [
1574
1592
  ""
1575
- ],
1576
- "Action with sub plans": [
1577
- "ქმედება ქვე-გეგმებით"
1578
- ],
1579
- "Import Puppet classes": [
1580
- "Puppet-ის კლასების შემოტანა"
1581
- ],
1582
- "Import facts": [
1583
- "ფაქტების შემოტანა"
1584
1593
  ]
1585
1594
  }
1586
1595
  }