foreman_host_reports 0.0.3
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 +7 -0
- data/LICENSE +619 -0
- data/README.md +545 -0
- data/app/controllers/api/v2/host_reports_controller.rb +98 -0
- data/app/controllers/concerns/foreman_host_reports/controller/parameters/host_report.rb +25 -0
- data/app/controllers/host_reports_controller.rb +46 -0
- data/app/models/concerns/foreman_host_reports/host_extensions.rb +9 -0
- data/app/models/concerns/foreman_host_reports/smart_proxy_extensions.rb +9 -0
- data/app/models/host_report.rb +85 -0
- data/app/models/report_keyword.rb +11 -0
- data/app/views/api/v2/host_reports/base.json.rabl +5 -0
- data/app/views/api/v2/host_reports/create.json.rabl +5 -0
- data/app/views/api/v2/host_reports/index.json.rabl +5 -0
- data/app/views/api/v2/host_reports/main.json.rabl +15 -0
- data/app/views/api/v2/host_reports/show.json.rabl +11 -0
- data/config/routes.rb +33 -0
- data/db/migrate/20210112183526_add_host_reports.rb +36 -0
- data/db/migrate/20210616133601_create_report_keywords.rb +12 -0
- data/lib/foreman_host_reports/engine.rb +68 -0
- data/lib/foreman_host_reports/version.rb +3 -0
- data/lib/foreman_host_reports.rb +4 -0
- data/lib/tasks/foreman_host_reports_tasks.rake +50 -0
- data/locale/Makefile +60 -0
- data/locale/en/foreman_host_reports.po +19 -0
- data/locale/foreman_host_reports.pot +19 -0
- data/locale/gemspec.rb +2 -0
- data/package.json +45 -0
- data/test/controllers/api/v2/host_reports_controller_test.rb +278 -0
- data/test/factories/foreman_host_reports_factories.rb +21 -0
- data/test/snapshots/foreman-web.json +918 -0
- data/test/test_plugin_helper.rb +11 -0
- data/test/unit/foreman_host_reports_test.rb +9 -0
- data/webpack/global_index.js +4 -0
- data/webpack/global_test_setup.js +11 -0
- data/webpack/index.js +0 -0
- data/webpack/src/Router/HostReports/Components/HostReportDeleteModal.js +50 -0
- data/webpack/src/Router/HostReports/IndexPage/Components/HostReportsTable/Components/FormatCell.js +53 -0
- data/webpack/src/Router/HostReports/IndexPage/Components/HostReportsTable/Components/FormatCell.scss +4 -0
- data/webpack/src/Router/HostReports/IndexPage/Components/HostReportsTable/Components/Formatters/formatCellFormatter.js +6 -0
- data/webpack/src/Router/HostReports/IndexPage/Components/HostReportsTable/Components/Formatters/hostReportsToShowFormatter.js +13 -0
- data/webpack/src/Router/HostReports/IndexPage/Components/HostReportsTable/Components/Formatters/index.js +4 -0
- data/webpack/src/Router/HostReports/IndexPage/Components/HostReportsTable/Components/Formatters/reportToShowFormatter.js +13 -0
- data/webpack/src/Router/HostReports/IndexPage/Components/HostReportsTable/Components/Formatters/statusFormatter.js +9 -0
- data/webpack/src/Router/HostReports/IndexPage/Components/HostReportsTable/Components/HostReportsToShowCell.js +32 -0
- data/webpack/src/Router/HostReports/IndexPage/Components/HostReportsTable/Components/ReportToShowCell.js +27 -0
- data/webpack/src/Router/HostReports/IndexPage/Components/HostReportsTable/Components/StatusCell.js +77 -0
- data/webpack/src/Router/HostReports/IndexPage/Components/HostReportsTable/Components/StatusCell.scss +9 -0
- data/webpack/src/Router/HostReports/IndexPage/Components/HostReportsTable/Components/formatImages.js +7 -0
- data/webpack/src/Router/HostReports/IndexPage/Components/HostReportsTable/Components/images/ansible.png +0 -0
- data/webpack/src/Router/HostReports/IndexPage/Components/HostReportsTable/Components/images/puppet.png +0 -0
- data/webpack/src/Router/HostReports/IndexPage/Components/HostReportsTable/HostReportsTable.js +85 -0
- data/webpack/src/Router/HostReports/IndexPage/Components/HostReportsTable/HostReportsTableSchema.js +65 -0
- data/webpack/src/Router/HostReports/IndexPage/Components/HostReportsTable/index.js +28 -0
- data/webpack/src/Router/HostReports/IndexPage/IndexPage.js +88 -0
- data/webpack/src/Router/HostReports/IndexPage/IndexPageActions.js +55 -0
- data/webpack/src/Router/HostReports/IndexPage/IndexPageHelpers.js +50 -0
- data/webpack/src/Router/HostReports/IndexPage/IndexPageSelectors.js +86 -0
- data/webpack/src/Router/HostReports/IndexPage/constants.js +14 -0
- data/webpack/src/Router/HostReports/IndexPage/index.js +98 -0
- data/webpack/src/Router/HostReports/ShowPage/Components/HostReportMetrics/HostReportMetrics.scss +3 -0
- data/webpack/src/Router/HostReports/ShowPage/Components/HostReportMetrics/index.js +100 -0
- data/webpack/src/Router/HostReports/ShowPage/Components/ReportLogs/Ansible.js +77 -0
- data/webpack/src/Router/HostReports/ShowPage/Components/ReportLogs/Puppet.js +79 -0
- data/webpack/src/Router/HostReports/ShowPage/Components/ReportLogs/helpers.js +17 -0
- data/webpack/src/Router/HostReports/ShowPage/Components/ReportLogs/index.js +29 -0
- data/webpack/src/Router/HostReports/ShowPage/Components/ReportLogsFilter/index.js +109 -0
- data/webpack/src/Router/HostReports/ShowPage/ShowPage.js +160 -0
- data/webpack/src/Router/HostReports/ShowPage/ShowPageSelectors.js +51 -0
- data/webpack/src/Router/HostReports/ShowPage/index.js +75 -0
- data/webpack/src/Router/HostReports/constants.js +15 -0
- data/webpack/src/Router/routes.js +23 -0
- data/webpack/test_setup.js +17 -0
- metadata +133 -0
|
@@ -0,0 +1,918 @@
|
|
|
1
|
+
{
|
|
2
|
+
"format": "puppet",
|
|
3
|
+
"id": "3db9c6aa-694a-47e5-896d-b115b68487c2",
|
|
4
|
+
"host": "web.example.com",
|
|
5
|
+
"proxy": "localhost",
|
|
6
|
+
"reported_at": "2021-01-19T12:34:02.841645028Z",
|
|
7
|
+
"report_format": 11,
|
|
8
|
+
"puppet_version": "6.19.1",
|
|
9
|
+
"environment": "production",
|
|
10
|
+
"metrics": {
|
|
11
|
+
"resources": {
|
|
12
|
+
"name": "resources",
|
|
13
|
+
"label": "Resources",
|
|
14
|
+
"values": [
|
|
15
|
+
[
|
|
16
|
+
"total",
|
|
17
|
+
"Total",
|
|
18
|
+
539
|
|
19
|
+
],
|
|
20
|
+
[
|
|
21
|
+
"skipped",
|
|
22
|
+
"Skipped",
|
|
23
|
+
1
|
|
24
|
+
],
|
|
25
|
+
[
|
|
26
|
+
"failed",
|
|
27
|
+
"Failed",
|
|
28
|
+
0
|
|
29
|
+
],
|
|
30
|
+
[
|
|
31
|
+
"failed_to_restart",
|
|
32
|
+
"Failed to restart",
|
|
33
|
+
0
|
|
34
|
+
],
|
|
35
|
+
[
|
|
36
|
+
"restarted",
|
|
37
|
+
"Restarted",
|
|
38
|
+
0
|
|
39
|
+
],
|
|
40
|
+
[
|
|
41
|
+
"changed",
|
|
42
|
+
"Changed",
|
|
43
|
+
1
|
|
44
|
+
],
|
|
45
|
+
[
|
|
46
|
+
"out_of_sync",
|
|
47
|
+
"Out of sync",
|
|
48
|
+
0
|
|
49
|
+
],
|
|
50
|
+
[
|
|
51
|
+
"scheduled",
|
|
52
|
+
"Scheduled",
|
|
53
|
+
0
|
|
54
|
+
],
|
|
55
|
+
[
|
|
56
|
+
"corrective_change",
|
|
57
|
+
"Corrective change",
|
|
58
|
+
1
|
|
59
|
+
]
|
|
60
|
+
]
|
|
61
|
+
},
|
|
62
|
+
"time": {
|
|
63
|
+
"name": "time",
|
|
64
|
+
"label": "Time",
|
|
65
|
+
"values": [
|
|
66
|
+
[
|
|
67
|
+
"package",
|
|
68
|
+
"Package",
|
|
69
|
+
0.006311147999999999
|
|
70
|
+
],
|
|
71
|
+
[
|
|
72
|
+
"file",
|
|
73
|
+
"File",
|
|
74
|
+
1.8178436940000022
|
|
75
|
+
],
|
|
76
|
+
[
|
|
77
|
+
"service",
|
|
78
|
+
"Service",
|
|
79
|
+
0.159880658
|
|
80
|
+
],
|
|
81
|
+
[
|
|
82
|
+
"user",
|
|
83
|
+
"User",
|
|
84
|
+
0.026587876999999996
|
|
85
|
+
],
|
|
86
|
+
[
|
|
87
|
+
"ssh_authorized_key",
|
|
88
|
+
"Ssh authorized key",
|
|
89
|
+
0.000546961
|
|
90
|
+
],
|
|
91
|
+
[
|
|
92
|
+
"anchor",
|
|
93
|
+
"Anchor",
|
|
94
|
+
0.000572391
|
|
95
|
+
],
|
|
96
|
+
[
|
|
97
|
+
"ini_setting",
|
|
98
|
+
"Ini setting",
|
|
99
|
+
0.001237097
|
|
100
|
+
],
|
|
101
|
+
[
|
|
102
|
+
"cron",
|
|
103
|
+
"Cron",
|
|
104
|
+
0.021146553999999998
|
|
105
|
+
],
|
|
106
|
+
[
|
|
107
|
+
"exec",
|
|
108
|
+
"Exec",
|
|
109
|
+
0.040606399999999994
|
|
110
|
+
],
|
|
111
|
+
[
|
|
112
|
+
"group",
|
|
113
|
+
"Group",
|
|
114
|
+
0.000434506
|
|
115
|
+
],
|
|
116
|
+
[
|
|
117
|
+
"yum_cron_config",
|
|
118
|
+
"Yum cron config",
|
|
119
|
+
0.016862188
|
|
120
|
+
],
|
|
121
|
+
[
|
|
122
|
+
"mailalias",
|
|
123
|
+
"Mailalias",
|
|
124
|
+
0.000496385
|
|
125
|
+
],
|
|
126
|
+
[
|
|
127
|
+
"sshd_config",
|
|
128
|
+
"Sshd config",
|
|
129
|
+
0.045512515999999996
|
|
130
|
+
],
|
|
131
|
+
[
|
|
132
|
+
"concat_file",
|
|
133
|
+
"Concat file",
|
|
134
|
+
0.0033136499999999996
|
|
135
|
+
],
|
|
136
|
+
[
|
|
137
|
+
"concat_fragment",
|
|
138
|
+
"Concat fragment",
|
|
139
|
+
0.012639834000000003
|
|
140
|
+
],
|
|
141
|
+
[
|
|
142
|
+
"selmodule",
|
|
143
|
+
"Selmodule",
|
|
144
|
+
3.724772995
|
|
145
|
+
],
|
|
146
|
+
[
|
|
147
|
+
"selboolean",
|
|
148
|
+
"Selboolean",
|
|
149
|
+
0.013223949
|
|
150
|
+
],
|
|
151
|
+
[
|
|
152
|
+
"selinux_fcontext",
|
|
153
|
+
"Selinux fcontext",
|
|
154
|
+
0.001096409
|
|
155
|
+
],
|
|
156
|
+
[
|
|
157
|
+
"filebucket",
|
|
158
|
+
"Filebucket",
|
|
159
|
+
7.547e-05
|
|
160
|
+
],
|
|
161
|
+
[
|
|
162
|
+
"startup_time",
|
|
163
|
+
"Startup time",
|
|
164
|
+
1.302107831
|
|
165
|
+
],
|
|
166
|
+
[
|
|
167
|
+
"node_retrieval",
|
|
168
|
+
"Node retrieval",
|
|
169
|
+
1.1892705876380205
|
|
170
|
+
],
|
|
171
|
+
[
|
|
172
|
+
"plugin_sync",
|
|
173
|
+
"Plugin sync",
|
|
174
|
+
3.887040803208947
|
|
175
|
+
],
|
|
176
|
+
[
|
|
177
|
+
"fact_generation",
|
|
178
|
+
"Fact generation",
|
|
179
|
+
2.056480610743165
|
|
180
|
+
],
|
|
181
|
+
[
|
|
182
|
+
"convert_catalog",
|
|
183
|
+
"Convert catalog",
|
|
184
|
+
1.692790374159813
|
|
185
|
+
],
|
|
186
|
+
[
|
|
187
|
+
"config_retrieval",
|
|
188
|
+
"Config retrieval",
|
|
189
|
+
12.106256296858191
|
|
190
|
+
],
|
|
191
|
+
[
|
|
192
|
+
"transaction_evaluation",
|
|
193
|
+
"Transaction evaluation",
|
|
194
|
+
7.9166328720748425
|
|
195
|
+
],
|
|
196
|
+
[
|
|
197
|
+
"catalog_application",
|
|
198
|
+
"Catalog application",
|
|
199
|
+
8.08100863546133
|
|
200
|
+
],
|
|
201
|
+
[
|
|
202
|
+
"total",
|
|
203
|
+
"Total",
|
|
204
|
+
32.376340691
|
|
205
|
+
]
|
|
206
|
+
]
|
|
207
|
+
},
|
|
208
|
+
"changes": {
|
|
209
|
+
"name": "changes",
|
|
210
|
+
"label": "Changes",
|
|
211
|
+
"values": [
|
|
212
|
+
[
|
|
213
|
+
"total",
|
|
214
|
+
"Total",
|
|
215
|
+
0
|
|
216
|
+
]
|
|
217
|
+
]
|
|
218
|
+
},
|
|
219
|
+
"events": {
|
|
220
|
+
"name": "events",
|
|
221
|
+
"label": "Events",
|
|
222
|
+
"values": [
|
|
223
|
+
[
|
|
224
|
+
"total",
|
|
225
|
+
"Total",
|
|
226
|
+
0
|
|
227
|
+
],
|
|
228
|
+
[
|
|
229
|
+
"failure",
|
|
230
|
+
"Failure",
|
|
231
|
+
0
|
|
232
|
+
],
|
|
233
|
+
[
|
|
234
|
+
"success",
|
|
235
|
+
"Success",
|
|
236
|
+
0
|
|
237
|
+
]
|
|
238
|
+
]
|
|
239
|
+
}
|
|
240
|
+
},
|
|
241
|
+
"logs": [
|
|
242
|
+
[
|
|
243
|
+
"notice",
|
|
244
|
+
"//web.example.com/Puppet",
|
|
245
|
+
"Applied catalog in 8.08 seconds"
|
|
246
|
+
]
|
|
247
|
+
],
|
|
248
|
+
"resource_statuses": [
|
|
249
|
+
"Package[exim]",
|
|
250
|
+
"File[/etc/exim/exim.conf]",
|
|
251
|
+
"Service[exim]",
|
|
252
|
+
"User[foreman_rex]",
|
|
253
|
+
"Ssh_authorized_key[foreman-proxy@puppetmaster]",
|
|
254
|
+
"Package[awstats]",
|
|
255
|
+
"File[/etc/cron.hourly/awstats]",
|
|
256
|
+
"File[/etc/awstats]",
|
|
257
|
+
"Package[rsync]",
|
|
258
|
+
"Package[xinetd]",
|
|
259
|
+
"File[/etc/xinetd.d]",
|
|
260
|
+
"File[/etc/xinetd.conf]",
|
|
261
|
+
"Anchor[selinux::start]",
|
|
262
|
+
"Package[policycoreutils-python]",
|
|
263
|
+
"Anchor[selinux::module pre]",
|
|
264
|
+
"Package[letsencrypt]",
|
|
265
|
+
"File[/etc/letsencrypt]",
|
|
266
|
+
"File[/opt/puppetlabs/puppet/cache/letsencrypt]",
|
|
267
|
+
"Ini_setting[/etc/letsencrypt/cli.ini server https://acme-v02.api.letsencrypt.org/directory]",
|
|
268
|
+
"Ini_setting[/etc/letsencrypt/cli.ini email foreman-infra-notifications@googlegroups.com]",
|
|
269
|
+
"File[letsencrypt-renewal-hooks-puppet]",
|
|
270
|
+
"Cron[letsencrypt-renew]",
|
|
271
|
+
"Exec[initialize letsencrypt]",
|
|
272
|
+
"File[/usr/local/sbin/letsencrypt-domain-validation]",
|
|
273
|
+
"Cron[letsencrypt_renew]",
|
|
274
|
+
"Package[httpd]",
|
|
275
|
+
"Group[apache]",
|
|
276
|
+
"User[apache]",
|
|
277
|
+
"Exec[mkdir /etc/httpd/conf.d]",
|
|
278
|
+
"Exec[mkdir /etc/httpd/conf.modules.d]",
|
|
279
|
+
"Package[mailcap]",
|
|
280
|
+
"File[mime.conf]",
|
|
281
|
+
"File[mime_magic.conf]",
|
|
282
|
+
"File[alias.conf]",
|
|
283
|
+
"File[autoindex.conf]",
|
|
284
|
+
"File[deflate.conf]",
|
|
285
|
+
"File[dir.conf]",
|
|
286
|
+
"File[negotiation.conf]",
|
|
287
|
+
"File[setenvif.conf]",
|
|
288
|
+
"File[/etc/httpd/conf.modules.d/prefork.conf]",
|
|
289
|
+
"File[/var/www/vhosts]",
|
|
290
|
+
"File[/usr/local/bin/filter_apache_stats]",
|
|
291
|
+
"File[/usr/local/bin/fastly-purge]",
|
|
292
|
+
"File[/usr/local/bin/fastly-purge-find]",
|
|
293
|
+
"Cron[filter_apache_stats]",
|
|
294
|
+
"Package[createrepo]",
|
|
295
|
+
"File[/etc/puppetlabs/puppet]",
|
|
296
|
+
"Package[puppet-agent]",
|
|
297
|
+
"Anchor[sudo::begin]",
|
|
298
|
+
"Package[sudo]",
|
|
299
|
+
"File[/etc/sudoers]",
|
|
300
|
+
"File[/etc/sudoers.d]",
|
|
301
|
+
"File[/etc/sudoers.d/foreman_rex]",
|
|
302
|
+
"Anchor[sudo::end]",
|
|
303
|
+
"File[/etc/motd]",
|
|
304
|
+
"Package[yum-cron]",
|
|
305
|
+
"Yum_cron_config[commands/update_cmd]",
|
|
306
|
+
"Yum_cron_config[commands/update_messages]",
|
|
307
|
+
"Yum_cron_config[commands/download_updates]",
|
|
308
|
+
"Yum_cron_config[commands/apply_updates]",
|
|
309
|
+
"Yum_cron_config[commands/random_sleep]",
|
|
310
|
+
"Yum_cron_config[emitters/system_name]",
|
|
311
|
+
"Yum_cron_config[email/email_to]",
|
|
312
|
+
"Yum_cron_config[email/email_host]",
|
|
313
|
+
"Yum_cron_config[base/debuglevel]",
|
|
314
|
+
"Yum_cron_config[base/exclude]",
|
|
315
|
+
"Service[yum-cron]",
|
|
316
|
+
"Package[vim-enhanced]",
|
|
317
|
+
"Package[htop]",
|
|
318
|
+
"Package[iftop]",
|
|
319
|
+
"Package[screen]",
|
|
320
|
+
"Package[ruby-shadow]",
|
|
321
|
+
"Mailalias[sysadmins]",
|
|
322
|
+
"Mailalias[root]",
|
|
323
|
+
"Package[ntp]",
|
|
324
|
+
"File[/etc/ntp.conf]",
|
|
325
|
+
"File[/etc/ntp/step-tickers]",
|
|
326
|
+
"Service[ntp]",
|
|
327
|
+
"File[/root/.ssh/authorized_keys]",
|
|
328
|
+
"File[/etc/ssh/sshd_config]",
|
|
329
|
+
"Sshd_config[PermitRootLogin]",
|
|
330
|
+
"Sshd_config[PasswordAuthentication]",
|
|
331
|
+
"Sshd_config[StrictModes]",
|
|
332
|
+
"Sshd_config[LogLevel]",
|
|
333
|
+
"Service[sshd]",
|
|
334
|
+
"Package[tzdata]",
|
|
335
|
+
"File[/etc/localtime]",
|
|
336
|
+
"File[/etc/sysconfig/clock]",
|
|
337
|
+
"File[10_foreman-proxy-rex]",
|
|
338
|
+
"Exec[sudo-syntax-check for file /etc/sudoers.d/10_foreman-proxy-rex]",
|
|
339
|
+
"File[/etc/awstats/awstats.all.conf]",
|
|
340
|
+
"File[/var/lib/awstats/all]",
|
|
341
|
+
"File[/etc/cron.hourly/awstats-all]",
|
|
342
|
+
"File[/etc/awstats/awstats.deb.conf]",
|
|
343
|
+
"File[/var/lib/awstats/deb]",
|
|
344
|
+
"File[/etc/cron.hourly/awstats-deb]",
|
|
345
|
+
"File[/etc/awstats/awstats.debugs.conf]",
|
|
346
|
+
"File[/var/lib/awstats/debugs]",
|
|
347
|
+
"File[/etc/cron.hourly/awstats-debugs]",
|
|
348
|
+
"File[/etc/awstats/awstats.downloads.conf]",
|
|
349
|
+
"File[/var/lib/awstats/downloads]",
|
|
350
|
+
"File[/etc/cron.hourly/awstats-downloads]",
|
|
351
|
+
"File[/etc/awstats/awstats.stagingdeb.conf]",
|
|
352
|
+
"File[/var/lib/awstats/stagingdeb]",
|
|
353
|
+
"File[/etc/cron.hourly/awstats-stagingdeb]",
|
|
354
|
+
"File[/etc/awstats/awstats.web.conf]",
|
|
355
|
+
"File[/var/lib/awstats/web]",
|
|
356
|
+
"File[/etc/cron.hourly/awstats-web]",
|
|
357
|
+
"File[/etc/awstats/awstats.yum.conf]",
|
|
358
|
+
"File[/var/lib/awstats/yum]",
|
|
359
|
+
"File[/etc/cron.hourly/awstats-yum]",
|
|
360
|
+
"File[/etc/xinetd.d/rsync]",
|
|
361
|
+
"Service[xinetd]",
|
|
362
|
+
"Concat_file[/etc/rsyncd.conf]",
|
|
363
|
+
"File[/etc/rsyncd.conf]",
|
|
364
|
+
"Concat_fragment[rsyncd_conf_header]",
|
|
365
|
+
"File[/opt/puppetlabs/puppet/cache/puppet-selinux]",
|
|
366
|
+
"File[/opt/puppetlabs/puppet/cache/puppet-selinux/bin]",
|
|
367
|
+
"File[/opt/puppetlabs/puppet/cache/puppet-selinux/bin/selinux_build_module_simple.sh]",
|
|
368
|
+
"File[/opt/puppetlabs/puppet/cache/puppet-selinux/modules]",
|
|
369
|
+
"File[/opt/puppetlabs/puppet/cache/puppet-selinux/modules/tmp]",
|
|
370
|
+
"Package[selinux-policy-devel]",
|
|
371
|
+
"File[/opt/puppetlabs/puppet/cache/puppet-selinux/modules/rsync_debug.te]",
|
|
372
|
+
"File[/opt/puppetlabs/puppet/cache/puppet-selinux/modules/rsync_debug.fc]",
|
|
373
|
+
"File[/opt/puppetlabs/puppet/cache/puppet-selinux/modules/rsync_debug.if]",
|
|
374
|
+
"File[/opt/puppetlabs/puppet/cache/puppet-selinux/modules/rsync_debug.pp]",
|
|
375
|
+
"Exec[clean-module-rsync_debug]",
|
|
376
|
+
"Exec[build-module-rsync_debug]",
|
|
377
|
+
"Exec[install-module-rsync_debug]",
|
|
378
|
+
"File[/opt/puppetlabs/puppet/cache/puppet-selinux/modules/rsync_debug.loaded]",
|
|
379
|
+
"Selmodule[rsync_debug]",
|
|
380
|
+
"Anchor[selinux::module post]",
|
|
381
|
+
"Selboolean[allow_rsync_anon_write]",
|
|
382
|
+
"Concat_file[/etc/httpd/conf/ports.conf]",
|
|
383
|
+
"File[/etc/httpd/conf/ports.conf]",
|
|
384
|
+
"File[/etc/httpd/conf/httpd.conf]",
|
|
385
|
+
"Concat_fragment[Apache ports header]",
|
|
386
|
+
"File[log_config.load]",
|
|
387
|
+
"File[systemd.load]",
|
|
388
|
+
"File[unixd.load]",
|
|
389
|
+
"File[authz_host.load]",
|
|
390
|
+
"File[actions.load]",
|
|
391
|
+
"File[authn_core.load]",
|
|
392
|
+
"File[cache.load]",
|
|
393
|
+
"File[ext_filter.load]",
|
|
394
|
+
"File[mime.load]",
|
|
395
|
+
"File[mime_magic.load]",
|
|
396
|
+
"File[rewrite.load]",
|
|
397
|
+
"File[speling.load]",
|
|
398
|
+
"File[suexec.load]",
|
|
399
|
+
"File[version.load]",
|
|
400
|
+
"File[vhost_alias.load]",
|
|
401
|
+
"File[auth_digest.load]",
|
|
402
|
+
"File[authn_anon.load]",
|
|
403
|
+
"File[authn_dbm.load]",
|
|
404
|
+
"File[authz_dbm.load]",
|
|
405
|
+
"File[authz_owner.load]",
|
|
406
|
+
"File[expires.load]",
|
|
407
|
+
"File[include.load]",
|
|
408
|
+
"File[logio.load]",
|
|
409
|
+
"File[substitute.load]",
|
|
410
|
+
"File[usertrack.load]",
|
|
411
|
+
"File[alias.load]",
|
|
412
|
+
"File[authn_file.load]",
|
|
413
|
+
"File[autoindex.load]",
|
|
414
|
+
"File[dav.load]",
|
|
415
|
+
"File[dav_fs.conf]",
|
|
416
|
+
"File[dav_fs.load]",
|
|
417
|
+
"File[deflate.load]",
|
|
418
|
+
"File[dir.load]",
|
|
419
|
+
"File[negotiation.load]",
|
|
420
|
+
"File[setenvif.load]",
|
|
421
|
+
"File[auth_basic.load]",
|
|
422
|
+
"File[filter.load]",
|
|
423
|
+
"File[authz_core.load]",
|
|
424
|
+
"File[access_compat.load]",
|
|
425
|
+
"File[authz_user.load]",
|
|
426
|
+
"File[authz_groupfile.load]",
|
|
427
|
+
"File[env.load]",
|
|
428
|
+
"File[/etc/httpd/conf.modules.d/prefork.load]",
|
|
429
|
+
"File[cgi.load]",
|
|
430
|
+
"File[/var/log/httpd]",
|
|
431
|
+
"Exec[letsencrypt certonly example.com]",
|
|
432
|
+
"Selinux_fcontext[/var/www(/.*)?_a]",
|
|
433
|
+
"Package[freight]",
|
|
434
|
+
"Package[ruby]",
|
|
435
|
+
"File[/etc/cron.daily/freight]",
|
|
436
|
+
"File[/var/www/vhosts/debugs]",
|
|
437
|
+
"User[downloads]",
|
|
438
|
+
"File[/home/downloads]",
|
|
439
|
+
"File[/home/downloads/.ssh]",
|
|
440
|
+
"File[/home/downloads/.ssh/authorized_keys]",
|
|
441
|
+
"File[/home/downloads/bin]",
|
|
442
|
+
"File[/home/downloads/bin/secure_downloads]",
|
|
443
|
+
"File[/var/www/vhosts/downloads]",
|
|
444
|
+
"File[/etc/cron.daily/freightstage]",
|
|
445
|
+
"File[/var/www/vhosts/web]",
|
|
446
|
+
"User[yumrepo]",
|
|
447
|
+
"File[/home/yumrepo]",
|
|
448
|
+
"File[/home/yumrepo/.ssh]",
|
|
449
|
+
"File[/home/yumrepo/.ssh/authorized_keys]",
|
|
450
|
+
"File[/home/yumrepo/bin]",
|
|
451
|
+
"File[/home/yumrepo/bin/secure_yumrepo]",
|
|
452
|
+
"File[/var/www/vhosts/yum]",
|
|
453
|
+
"Concat_file[/etc/puppetlabs/puppet/puppet.conf]",
|
|
454
|
+
"File[/etc/puppetlabs/puppet/puppet.conf]",
|
|
455
|
+
"File[/etc/puppetlabs/puppet/auth.conf]",
|
|
456
|
+
"User[gregsutcliffe]",
|
|
457
|
+
"File[/home/gregsutcliffe]",
|
|
458
|
+
"File[/home/gregsutcliffe/.ssh]",
|
|
459
|
+
"File[/home/gregsutcliffe/.ssh/authorized_keys]",
|
|
460
|
+
"User[ohadlevy]",
|
|
461
|
+
"File[/home/ohadlevy]",
|
|
462
|
+
"File[/home/ohadlevy/.ssh]",
|
|
463
|
+
"File[/home/ohadlevy/.ssh/authorized_keys]",
|
|
464
|
+
"User[lzap]",
|
|
465
|
+
"File[/home/lzap]",
|
|
466
|
+
"File[/home/lzap/.ssh]",
|
|
467
|
+
"File[/home/lzap/.ssh/authorized_keys]",
|
|
468
|
+
"User[ehelms]",
|
|
469
|
+
"File[/home/ehelms]",
|
|
470
|
+
"File[/home/ehelms/.ssh]",
|
|
471
|
+
"File[/home/ehelms/.ssh/authorized_keys]",
|
|
472
|
+
"User[dlobatog]",
|
|
473
|
+
"File[/home/dlobatog]",
|
|
474
|
+
"File[/home/dlobatog/.ssh]",
|
|
475
|
+
"File[/home/dlobatog/.ssh/authorized_keys]",
|
|
476
|
+
"User[ekohl]",
|
|
477
|
+
"File[/home/ekohl]",
|
|
478
|
+
"File[/home/ekohl/.ssh]",
|
|
479
|
+
"File[/home/ekohl/.ssh/authorized_keys]",
|
|
480
|
+
"User[evgeni]",
|
|
481
|
+
"File[/home/evgeni]",
|
|
482
|
+
"File[/home/evgeni/.ssh]",
|
|
483
|
+
"File[/home/evgeni/.ssh/authorized_keys]",
|
|
484
|
+
"User[oprazak]",
|
|
485
|
+
"File[/home/oprazak]",
|
|
486
|
+
"File[/home/oprazak/.ssh]",
|
|
487
|
+
"File[/home/oprazak/.ssh/authorized_keys]",
|
|
488
|
+
"User[tbrisker]",
|
|
489
|
+
"File[/home/tbrisker]",
|
|
490
|
+
"File[/home/tbrisker/.ssh]",
|
|
491
|
+
"File[/home/tbrisker/.ssh/authorized_keys]",
|
|
492
|
+
"User[pcreech]",
|
|
493
|
+
"File[/home/pcreech]",
|
|
494
|
+
"File[/home/pcreech/.ssh]",
|
|
495
|
+
"File[/home/pcreech/.ssh/authorized_keys]",
|
|
496
|
+
"User[zhunting]",
|
|
497
|
+
"File[/home/zhunting]",
|
|
498
|
+
"File[/home/zhunting/.ssh]",
|
|
499
|
+
"File[/home/zhunting/.ssh/authorized_keys]",
|
|
500
|
+
"User[wclark]",
|
|
501
|
+
"File[/home/wclark]",
|
|
502
|
+
"File[/home/wclark/.ssh]",
|
|
503
|
+
"File[/home/wclark/.ssh/authorized_keys]",
|
|
504
|
+
"User[mmoll]",
|
|
505
|
+
"Concat_file[15-default.conf]",
|
|
506
|
+
"Concat_fragment[default-apache-header]",
|
|
507
|
+
"Concat_fragment[default-docroot]",
|
|
508
|
+
"Concat_fragment[default-directories]",
|
|
509
|
+
"Concat_fragment[default-logging]",
|
|
510
|
+
"Concat_fragment[default-serversignature]",
|
|
511
|
+
"Concat_fragment[default-access_log]",
|
|
512
|
+
"Concat_fragment[default-scriptalias]",
|
|
513
|
+
"Concat_fragment[default-file_footer]",
|
|
514
|
+
"Concat_file[15-default-ssl.conf]",
|
|
515
|
+
"Concat_fragment[default-ssl-apache-header]",
|
|
516
|
+
"Concat_fragment[default-ssl-docroot]",
|
|
517
|
+
"Concat_fragment[default-ssl-directories]",
|
|
518
|
+
"Concat_fragment[default-ssl-logging]",
|
|
519
|
+
"Concat_fragment[default-ssl-serversignature]",
|
|
520
|
+
"Concat_fragment[default-ssl-access_log]",
|
|
521
|
+
"Concat_fragment[default-ssl-scriptalias]",
|
|
522
|
+
"Concat_fragment[default-ssl-ssl]",
|
|
523
|
+
"Concat_fragment[default-ssl-file_footer]",
|
|
524
|
+
"File[headers.load]",
|
|
525
|
+
"File[/var/www/vhosts/deb]",
|
|
526
|
+
"Selinux_fcontext[/var/www/freight(/.*)?_a]",
|
|
527
|
+
"File[/var/www/vhosts/debugs/htdocs]",
|
|
528
|
+
"File[/var/www/vhosts/debugs/htdocs/awstats]",
|
|
529
|
+
"File[/var/www/vhosts/debugs/htdocs/awstats/all.html]",
|
|
530
|
+
"File[/var/www/vhosts/debugs/htdocs/awstats/deb.html]",
|
|
531
|
+
"File[/var/www/vhosts/debugs/htdocs/awstats/debugs.html]",
|
|
532
|
+
"File[/var/www/vhosts/debugs/htdocs/awstats/downloads.html]",
|
|
533
|
+
"File[/var/www/vhosts/debugs/htdocs/awstats/stagingdeb.html]",
|
|
534
|
+
"File[/var/www/vhosts/debugs/htdocs/awstats/web.html]",
|
|
535
|
+
"File[/var/www/vhosts/debugs/htdocs/awstats/yum.html]",
|
|
536
|
+
"Concat_fragment[frag-debug-incoming]",
|
|
537
|
+
"Cron[remove-old-tarballs]",
|
|
538
|
+
"File[/var/www/vhosts/downloads/htdocs]",
|
|
539
|
+
"File[/var/www/vhosts/downloads/htdocs/HEADER.html]",
|
|
540
|
+
"Concat_fragment[frag-downloads]",
|
|
541
|
+
"File[/var/www/vhosts/stagingdeb]",
|
|
542
|
+
"Selinux_fcontext[/var/www/freightstage(/.*)?_a]",
|
|
543
|
+
"Anchor[selinux::end]",
|
|
544
|
+
"User[freightstage]",
|
|
545
|
+
"User[freight]",
|
|
546
|
+
"File[/var/www/freight]",
|
|
547
|
+
"File[/home/freight]",
|
|
548
|
+
"File[/home/freight/rsync_cache]",
|
|
549
|
+
"File[/home/freight/freight.conf]",
|
|
550
|
+
"File[/home/freight/.ssh]",
|
|
551
|
+
"File[/home/freight/.ssh/authorized_keys]",
|
|
552
|
+
"File[/home/freight/bin]",
|
|
553
|
+
"File[/home/freight/bin/secure_deploy_debs]",
|
|
554
|
+
"File[/home/freight/bin/secure_freight]",
|
|
555
|
+
"File[/var/www/freightstage]",
|
|
556
|
+
"File[/home/freightstage]",
|
|
557
|
+
"File[/home/freightstage/freight.conf]",
|
|
558
|
+
"File[/home/freightstage/rsync_cache]",
|
|
559
|
+
"File[/home/freightstage/.ssh]",
|
|
560
|
+
"File[/home/freightstage/.ssh/authorized_keys]",
|
|
561
|
+
"File[/home/freightstage/bin]",
|
|
562
|
+
"File[/home/freightstage/bin/secure_freightstage]",
|
|
563
|
+
"User[website]",
|
|
564
|
+
"File[/var/www/vhosts/web/htdocs]",
|
|
565
|
+
"File[/home/website]",
|
|
566
|
+
"File[/home/website/rsync_cache]",
|
|
567
|
+
"File[/home/website/.ssh]",
|
|
568
|
+
"File[/home/website/.ssh/authorized_keys]",
|
|
569
|
+
"File[/home/website/bin]",
|
|
570
|
+
"File[/home/website/bin/secure_web]",
|
|
571
|
+
"File[/var/www/vhosts/yum/htdocs]",
|
|
572
|
+
"File[/var/www/vhosts/yum/htdocs/HEADER.html]",
|
|
573
|
+
"File[/var/www/vhosts/yum/htdocs/robots.txt]",
|
|
574
|
+
"File[/var/www/vhosts/yum/htdocs/RPM-GPG-KEY-foreman]",
|
|
575
|
+
"File[/var/www/vhosts/yum/htdocs/releases]",
|
|
576
|
+
"File[/var/www/vhosts/yum/htdocs/releases/latest]",
|
|
577
|
+
"Exec[fastly-purge-releases-latest]",
|
|
578
|
+
"File[/var/www/vhosts/yum/htdocs/plugins]",
|
|
579
|
+
"File[/var/www/vhosts/yum/htdocs/plugins/latest]",
|
|
580
|
+
"Exec[fastly-purge-plugins-latest]",
|
|
581
|
+
"File[/var/www/vhosts/yum/htdocs/client]",
|
|
582
|
+
"File[/var/www/vhosts/yum/htdocs/client/latest]",
|
|
583
|
+
"Exec[fastly-purge-client-latest]",
|
|
584
|
+
"Exec[fastly-purge-root-latest]",
|
|
585
|
+
"File[/var/www/vhosts/yum/htdocs/releases/nightly]",
|
|
586
|
+
"Concat_fragment[frag-yum]",
|
|
587
|
+
"File[10_sudo-puppet-gregsutcliffe]",
|
|
588
|
+
"Exec[sudo-syntax-check for file /etc/sudoers.d/10_sudo-puppet-gregsutcliffe]",
|
|
589
|
+
"File[10_sudo-puppet-ohadlevy]",
|
|
590
|
+
"Exec[sudo-syntax-check for file /etc/sudoers.d/10_sudo-puppet-ohadlevy]",
|
|
591
|
+
"File[10_sudo-puppet-lzap]",
|
|
592
|
+
"Exec[sudo-syntax-check for file /etc/sudoers.d/10_sudo-puppet-lzap]",
|
|
593
|
+
"File[10_sudo-puppet-ehelms]",
|
|
594
|
+
"Exec[sudo-syntax-check for file /etc/sudoers.d/10_sudo-puppet-ehelms]",
|
|
595
|
+
"File[10_sudo-puppet-dlobatog]",
|
|
596
|
+
"Exec[sudo-syntax-check for file /etc/sudoers.d/10_sudo-puppet-dlobatog]",
|
|
597
|
+
"File[10_sudo-puppet-ekohl]",
|
|
598
|
+
"Exec[sudo-syntax-check for file /etc/sudoers.d/10_sudo-puppet-ekohl]",
|
|
599
|
+
"File[10_sudo-puppet-evgeni]",
|
|
600
|
+
"Exec[sudo-syntax-check for file /etc/sudoers.d/10_sudo-puppet-evgeni]",
|
|
601
|
+
"File[10_sudo-puppet-oprazak]",
|
|
602
|
+
"Exec[sudo-syntax-check for file /etc/sudoers.d/10_sudo-puppet-oprazak]",
|
|
603
|
+
"File[10_sudo-puppet-tbrisker]",
|
|
604
|
+
"Exec[sudo-syntax-check for file /etc/sudoers.d/10_sudo-puppet-tbrisker]",
|
|
605
|
+
"File[10_sudo-puppet-pcreech]",
|
|
606
|
+
"Exec[sudo-syntax-check for file /etc/sudoers.d/10_sudo-puppet-pcreech]",
|
|
607
|
+
"File[10_sudo-puppet-zhunting]",
|
|
608
|
+
"Exec[sudo-syntax-check for file /etc/sudoers.d/10_sudo-puppet-zhunting]",
|
|
609
|
+
"File[10_sudo-puppet-wclark]",
|
|
610
|
+
"Exec[sudo-syntax-check for file /etc/sudoers.d/10_sudo-puppet-wclark]",
|
|
611
|
+
"File[10_sudo-puppet-mmoll]",
|
|
612
|
+
"Exec[sudo-syntax-check for file /etc/sudoers.d/10_sudo-puppet-mmoll]",
|
|
613
|
+
"File[/var/www/vhosts/deb/htdocs]",
|
|
614
|
+
"File[/var/www/vhosts/deb/htdocs/HEADER.html]",
|
|
615
|
+
"File[/var/www/vhosts/deb/htdocs/foreman.asc]",
|
|
616
|
+
"Concat_fragment[frag-deb]",
|
|
617
|
+
"Concat_file[25-debugs.conf]",
|
|
618
|
+
"Concat_fragment[debugs-apache-header]",
|
|
619
|
+
"Concat_fragment[debugs-docroot]",
|
|
620
|
+
"Concat_fragment[debugs-directories]",
|
|
621
|
+
"Concat_fragment[debugs-logging]",
|
|
622
|
+
"Concat_fragment[debugs-serversignature]",
|
|
623
|
+
"Concat_fragment[debugs-access_log]",
|
|
624
|
+
"Concat_fragment[debugs-custom_fragment]",
|
|
625
|
+
"Concat_fragment[debugs-file_footer]",
|
|
626
|
+
"Package[mod_ssl]",
|
|
627
|
+
"File[/etc/httpd/conf.d]",
|
|
628
|
+
"File[/etc/httpd/conf.d/15-default.conf]",
|
|
629
|
+
"File[/etc/httpd/conf.d/15-default-ssl.conf]",
|
|
630
|
+
"File[ssl.conf]",
|
|
631
|
+
"File[/etc/httpd/conf.d/25-debugs.conf]",
|
|
632
|
+
"File[ssl.load]",
|
|
633
|
+
"File[socache_shmcb.load]",
|
|
634
|
+
"File[/etc/httpd/conf.modules.d]",
|
|
635
|
+
"Anchor[::apache::modules_set_up]",
|
|
636
|
+
"Concat_file[25-debugs-https.conf]",
|
|
637
|
+
"File[/etc/httpd/conf.d/25-debugs-https.conf]",
|
|
638
|
+
"Concat_fragment[debugs-https-apache-header]",
|
|
639
|
+
"Concat_fragment[debugs-https-docroot]",
|
|
640
|
+
"Concat_fragment[debugs-https-directories]",
|
|
641
|
+
"Concat_fragment[debugs-https-logging]",
|
|
642
|
+
"Concat_fragment[debugs-https-serversignature]",
|
|
643
|
+
"Concat_fragment[debugs-https-access_log]",
|
|
644
|
+
"Concat_fragment[debugs-https-ssl]",
|
|
645
|
+
"Concat_fragment[debugs-https-custom_fragment]",
|
|
646
|
+
"Concat_fragment[debugs-https-file_footer]",
|
|
647
|
+
"Concat_file[25-downloads.conf]",
|
|
648
|
+
"File[/etc/httpd/conf.d/25-downloads.conf]",
|
|
649
|
+
"Concat_fragment[downloads-apache-header]",
|
|
650
|
+
"Concat_fragment[downloads-docroot]",
|
|
651
|
+
"Concat_fragment[downloads-directories]",
|
|
652
|
+
"Concat_fragment[downloads-logging]",
|
|
653
|
+
"Concat_fragment[downloads-serversignature]",
|
|
654
|
+
"Concat_fragment[downloads-access_log]",
|
|
655
|
+
"Concat_fragment[downloads-file_footer]",
|
|
656
|
+
"Concat_file[25-downloads-https.conf]",
|
|
657
|
+
"File[/etc/httpd/conf.d/25-downloads-https.conf]",
|
|
658
|
+
"Concat_fragment[downloads-https-apache-header]",
|
|
659
|
+
"Concat_fragment[downloads-https-docroot]",
|
|
660
|
+
"Concat_fragment[downloads-https-directories]",
|
|
661
|
+
"Concat_fragment[downloads-https-logging]",
|
|
662
|
+
"Concat_fragment[downloads-https-serversignature]",
|
|
663
|
+
"Concat_fragment[downloads-https-access_log]",
|
|
664
|
+
"Concat_fragment[downloads-https-ssl]",
|
|
665
|
+
"Concat_fragment[downloads-https-file_footer]",
|
|
666
|
+
"File[/var/www/vhosts/stagingdeb/htdocs]",
|
|
667
|
+
"File[/var/www/vhosts/stagingdeb/htdocs/HEADER.html]",
|
|
668
|
+
"File[/var/www/vhosts/stagingdeb/htdocs/foreman.asc]",
|
|
669
|
+
"Concat_fragment[frag-stagingdeb]",
|
|
670
|
+
"Concat_file[25-web.conf]",
|
|
671
|
+
"File[/etc/httpd/conf.d/25-web.conf]",
|
|
672
|
+
"Concat_fragment[web-apache-header]",
|
|
673
|
+
"Concat_fragment[web-docroot]",
|
|
674
|
+
"Concat_fragment[web-directories]",
|
|
675
|
+
"Concat_fragment[web-logging]",
|
|
676
|
+
"Concat_fragment[web-serversignature]",
|
|
677
|
+
"Concat_fragment[web-access_log]",
|
|
678
|
+
"Concat_fragment[web-error_document]",
|
|
679
|
+
"Concat_fragment[web-rewrite]",
|
|
680
|
+
"Concat_fragment[web-serveralias]",
|
|
681
|
+
"Concat_fragment[web-file_footer]",
|
|
682
|
+
"Concat_file[25-web-https.conf]",
|
|
683
|
+
"File[/etc/httpd/conf.d/25-web-https.conf]",
|
|
684
|
+
"Concat_fragment[web-https-apache-header]",
|
|
685
|
+
"Concat_fragment[web-https-docroot]",
|
|
686
|
+
"Concat_fragment[web-https-directories]",
|
|
687
|
+
"Concat_fragment[web-https-logging]",
|
|
688
|
+
"Concat_fragment[web-https-serversignature]",
|
|
689
|
+
"Concat_fragment[web-https-access_log]",
|
|
690
|
+
"Concat_fragment[web-https-error_document]",
|
|
691
|
+
"Concat_fragment[web-https-rewrite]",
|
|
692
|
+
"Concat_fragment[web-https-serveralias]",
|
|
693
|
+
"Concat_fragment[web-https-ssl]",
|
|
694
|
+
"Concat_fragment[web-https-file_footer]",
|
|
695
|
+
"Concat_file[25-yum.conf]",
|
|
696
|
+
"File[/etc/httpd/conf.d/25-yum.conf]",
|
|
697
|
+
"Concat_fragment[yum-apache-header]",
|
|
698
|
+
"Concat_fragment[yum-docroot]",
|
|
699
|
+
"Concat_fragment[yum-directories]",
|
|
700
|
+
"Concat_fragment[yum-logging]",
|
|
701
|
+
"Concat_fragment[yum-serversignature]",
|
|
702
|
+
"Concat_fragment[yum-access_log]",
|
|
703
|
+
"Concat_fragment[yum-file_footer]",
|
|
704
|
+
"Concat_file[25-yum-https.conf]",
|
|
705
|
+
"File[/etc/httpd/conf.d/25-yum-https.conf]",
|
|
706
|
+
"Concat_fragment[yum-https-apache-header]",
|
|
707
|
+
"Concat_fragment[yum-https-docroot]",
|
|
708
|
+
"Concat_fragment[yum-https-directories]",
|
|
709
|
+
"Concat_fragment[yum-https-logging]",
|
|
710
|
+
"Concat_fragment[yum-https-serversignature]",
|
|
711
|
+
"Concat_fragment[yum-https-access_log]",
|
|
712
|
+
"Concat_fragment[yum-https-ssl]",
|
|
713
|
+
"Concat_fragment[yum-https-file_footer]",
|
|
714
|
+
"Concat_fragment[puppet.conf_main]",
|
|
715
|
+
"Concat_fragment[puppet.conf_main_vardir]",
|
|
716
|
+
"Concat_fragment[puppet.conf_main_logdir]",
|
|
717
|
+
"Concat_fragment[puppet.conf_main_rundir]",
|
|
718
|
+
"Concat_fragment[puppet.conf_main_ssldir]",
|
|
719
|
+
"Concat_fragment[puppet.conf_main_privatekeydir]",
|
|
720
|
+
"Concat_fragment[puppet.conf_main_hostprivkey]",
|
|
721
|
+
"Concat_fragment[puppet.conf_main_show_diff]",
|
|
722
|
+
"Concat_fragment[puppet.conf_main_codedir]",
|
|
723
|
+
"Concat_fragment[puppet.conf_main_server]",
|
|
724
|
+
"Concat_fragment[puppet.conf_main_pluginsource]",
|
|
725
|
+
"Concat_fragment[puppet.conf_main_pluginfactsource]",
|
|
726
|
+
"Concat_fragment[puppet.conf_main_certname]",
|
|
727
|
+
"Concat_fragment[puppet.conf_agent]",
|
|
728
|
+
"Concat_fragment[puppet.conf_agent_classfile]",
|
|
729
|
+
"Concat_fragment[puppet.conf_agent_localconfig]",
|
|
730
|
+
"Concat_fragment[puppet.conf_agent_default_schedules]",
|
|
731
|
+
"Concat_fragment[puppet.conf_agent_report]",
|
|
732
|
+
"Concat_fragment[puppet.conf_agent_masterport]",
|
|
733
|
+
"Concat_fragment[puppet.conf_agent_environment]",
|
|
734
|
+
"Concat_fragment[puppet.conf_agent_listen]",
|
|
735
|
+
"Concat_fragment[puppet.conf_agent_splay]",
|
|
736
|
+
"Concat_fragment[puppet.conf_agent_splaylimit]",
|
|
737
|
+
"Concat_fragment[puppet.conf_agent_runinterval]",
|
|
738
|
+
"Concat_fragment[puppet.conf_agent_noop]",
|
|
739
|
+
"Concat_fragment[puppet.conf_agent_usecacheonfailure]",
|
|
740
|
+
"Service[puppet]",
|
|
741
|
+
"Service[puppet-run.timer]",
|
|
742
|
+
"File[/etc/systemd/system/puppet-run.timer]",
|
|
743
|
+
"File[/etc/systemd/system/puppet-run.service]",
|
|
744
|
+
"Exec[systemctl-daemon-reload-puppet]",
|
|
745
|
+
"Cron[puppet]",
|
|
746
|
+
"Concat_file[25-deb.conf]",
|
|
747
|
+
"File[/etc/httpd/conf.d/25-deb.conf]",
|
|
748
|
+
"Concat_fragment[deb-apache-header]",
|
|
749
|
+
"Concat_fragment[deb-docroot]",
|
|
750
|
+
"Concat_fragment[deb-directories]",
|
|
751
|
+
"Concat_fragment[deb-logging]",
|
|
752
|
+
"Concat_fragment[deb-serversignature]",
|
|
753
|
+
"Concat_fragment[deb-access_log]",
|
|
754
|
+
"Concat_fragment[deb-file_footer]",
|
|
755
|
+
"Concat_file[25-deb-https.conf]",
|
|
756
|
+
"File[/etc/httpd/conf.d/25-deb-https.conf]",
|
|
757
|
+
"Concat_fragment[deb-https-apache-header]",
|
|
758
|
+
"Concat_fragment[deb-https-docroot]",
|
|
759
|
+
"Concat_fragment[deb-https-directories]",
|
|
760
|
+
"Concat_fragment[deb-https-logging]",
|
|
761
|
+
"Concat_fragment[deb-https-serversignature]",
|
|
762
|
+
"Concat_fragment[deb-https-access_log]",
|
|
763
|
+
"Concat_fragment[deb-https-ssl]",
|
|
764
|
+
"Concat_fragment[deb-https-file_footer]",
|
|
765
|
+
"Concat_fragment[Listen 80]",
|
|
766
|
+
"Concat_fragment[Listen 443]",
|
|
767
|
+
"Concat_file[25-stagingdeb.conf]",
|
|
768
|
+
"File[/etc/httpd/conf.d/25-stagingdeb.conf]",
|
|
769
|
+
"Concat_fragment[stagingdeb-apache-header]",
|
|
770
|
+
"Concat_fragment[stagingdeb-docroot]",
|
|
771
|
+
"Concat_fragment[stagingdeb-directories]",
|
|
772
|
+
"Concat_fragment[stagingdeb-logging]",
|
|
773
|
+
"Concat_fragment[stagingdeb-serversignature]",
|
|
774
|
+
"Concat_fragment[stagingdeb-access_log]",
|
|
775
|
+
"Concat_fragment[stagingdeb-file_footer]",
|
|
776
|
+
"Concat_file[25-stagingdeb-https.conf]",
|
|
777
|
+
"File[/etc/httpd/conf.d/25-stagingdeb-https.conf]",
|
|
778
|
+
"Service[httpd]",
|
|
779
|
+
"Concat_fragment[stagingdeb-https-apache-header]",
|
|
780
|
+
"Concat_fragment[stagingdeb-https-docroot]",
|
|
781
|
+
"Concat_fragment[stagingdeb-https-directories]",
|
|
782
|
+
"Concat_fragment[stagingdeb-https-logging]",
|
|
783
|
+
"Concat_fragment[stagingdeb-https-serversignature]",
|
|
784
|
+
"Concat_fragment[stagingdeb-https-access_log]",
|
|
785
|
+
"Concat_fragment[stagingdeb-https-ssl]",
|
|
786
|
+
"Concat_fragment[stagingdeb-https-file_footer]",
|
|
787
|
+
"Filebucket[puppet]"
|
|
788
|
+
],
|
|
789
|
+
"keywords": [
|
|
790
|
+
"PuppetHasCorrectiveChange",
|
|
791
|
+
"PuppetHasSkips",
|
|
792
|
+
"PuppetResourceFailed:File[mime_magic.conf]",
|
|
793
|
+
"PuppetHasFailure",
|
|
794
|
+
"PuppetHasChange"
|
|
795
|
+
],
|
|
796
|
+
"evaluation_times": [
|
|
797
|
+
[
|
|
798
|
+
"Selmodule[rsync_debug]",
|
|
799
|
+
3.724772995
|
|
800
|
+
],
|
|
801
|
+
[
|
|
802
|
+
"File[/usr/local/sbin/letsencrypt-domain-validation]",
|
|
803
|
+
0.470925867
|
|
804
|
+
],
|
|
805
|
+
[
|
|
806
|
+
"File[/var/www/vhosts/downloads/htdocs/HEADER.html]",
|
|
807
|
+
0.4037435
|
|
808
|
+
],
|
|
809
|
+
[
|
|
810
|
+
"File[/opt/puppetlabs/puppet/cache/puppet-selinux/bin/selinux_build_module_simple.sh]",
|
|
811
|
+
0.158414123
|
|
812
|
+
],
|
|
813
|
+
[
|
|
814
|
+
"File[/usr/local/bin/filter_apache_stats]",
|
|
815
|
+
0.139661875
|
|
816
|
+
],
|
|
817
|
+
[
|
|
818
|
+
"File[/opt/puppetlabs/puppet/cache/puppet-selinux/modules/rsync_debug.te]",
|
|
819
|
+
0.132145601
|
|
820
|
+
],
|
|
821
|
+
[
|
|
822
|
+
"Sshd_config[PermitRootLogin]",
|
|
823
|
+
0.042893109
|
|
824
|
+
],
|
|
825
|
+
[
|
|
826
|
+
"Exec[letsencrypt certonly example.com]",
|
|
827
|
+
0.035981063
|
|
828
|
+
],
|
|
829
|
+
[
|
|
830
|
+
"Service[xinetd]",
|
|
831
|
+
0.023915259
|
|
832
|
+
],
|
|
833
|
+
[
|
|
834
|
+
"Service[puppet]",
|
|
835
|
+
0.021753468
|
|
836
|
+
],
|
|
837
|
+
[
|
|
838
|
+
"Service[httpd]",
|
|
839
|
+
0.020839443
|
|
840
|
+
],
|
|
841
|
+
[
|
|
842
|
+
"Service[sshd]",
|
|
843
|
+
0.018925084
|
|
844
|
+
],
|
|
845
|
+
[
|
|
846
|
+
"Service[yum-cron]",
|
|
847
|
+
0.018869497
|
|
848
|
+
],
|
|
849
|
+
[
|
|
850
|
+
"Service[puppet-run.timer]",
|
|
851
|
+
0.018792544
|
|
852
|
+
],
|
|
853
|
+
[
|
|
854
|
+
"Service[exim]",
|
|
855
|
+
0.018468102
|
|
856
|
+
],
|
|
857
|
+
[
|
|
858
|
+
"Service[ntp]",
|
|
859
|
+
0.018317261
|
|
860
|
+
],
|
|
861
|
+
[
|
|
862
|
+
"Selboolean[allow_rsync_anon_write]",
|
|
863
|
+
0.013223949
|
|
864
|
+
],
|
|
865
|
+
[
|
|
866
|
+
"File[expires.load]",
|
|
867
|
+
0.006807927
|
|
868
|
+
],
|
|
869
|
+
[
|
|
870
|
+
"Yum_cron_config[email/email_host]",
|
|
871
|
+
0.006316931
|
|
872
|
+
],
|
|
873
|
+
[
|
|
874
|
+
"Cron[letsencrypt_renew]",
|
|
875
|
+
0.005948368
|
|
876
|
+
],
|
|
877
|
+
[
|
|
878
|
+
"Cron[puppet]",
|
|
879
|
+
0.00588985
|
|
880
|
+
],
|
|
881
|
+
[
|
|
882
|
+
"File[/etc/motd]",
|
|
883
|
+
0.005060044
|
|
884
|
+
],
|
|
885
|
+
[
|
|
886
|
+
"Cron[filter_apache_stats]",
|
|
887
|
+
0.004852054
|
|
888
|
+
],
|
|
889
|
+
[
|
|
890
|
+
"File[/etc/sudoers.d]",
|
|
891
|
+
0.004776236
|
|
892
|
+
],
|
|
893
|
+
[
|
|
894
|
+
"File[/home/ekohl/.ssh]",
|
|
895
|
+
0.004598457
|
|
896
|
+
],
|
|
897
|
+
[
|
|
898
|
+
"File[/var/www/vhosts/yum/htdocs/robots.txt]",
|
|
899
|
+
0.004570764
|
|
900
|
+
],
|
|
901
|
+
[
|
|
902
|
+
"File[alias.load]",
|
|
903
|
+
0.004216489
|
|
904
|
+
],
|
|
905
|
+
[
|
|
906
|
+
"Cron[remove-old-tarballs]",
|
|
907
|
+
0.004008335
|
|
908
|
+
],
|
|
909
|
+
[
|
|
910
|
+
"File[version.load]",
|
|
911
|
+
0.003578525
|
|
912
|
+
],
|
|
913
|
+
[
|
|
914
|
+
"Others",
|
|
915
|
+
0.550893962
|
|
916
|
+
]
|
|
917
|
+
]
|
|
918
|
+
}
|