-
Notifications
You must be signed in to change notification settings - Fork 213
Expand file tree
/
Copy pathNOTICE.TXT
More file actions
5685 lines (4274 loc) · 416 KB
/
NOTICE.TXT
File metadata and controls
5685 lines (4274 loc) · 416 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Progress Chef Infra Server v15
Copyright © 2025 Progress Software Corporation and/or one of its subsidiaries or affiliates. All rights reserved.
Portions of the Product include certain open source and commercial third-party components listed below (“Third-Party Components”). The authors of the Third-Party Components require Progress Software Corporation (“PSC”) to include the following notices and additional licensing terms as a condition of PSC’s use of such Third-Party Components. You acknowledge that the authors of the Third-Party Components have no obligation to provide support to you for the Third-Party Components or the Product. You hereby undertake to comply with all licenses related to the applicable Third-Party Components. Notwithstanding anything to the contrary, to the extent that any of the terms and conditions of the Product Agreement conflict, vary, or are in addition to the terms and conditions of the aforementioned third-party licenses for these technologies, such terms and conditions are offered by Progress alone and not by any other party.
-------------------------------------------------------------------------
SUMMARY OF COMPONENTS:
ComponentName | VersionName | LicenseType
addressable | 2.8.7 | Apache-2.0
appbundler | 0.13.4 | Apache-2.0
aws-eventstream | 1.4.0 | Apache-2.0
aws-partitions | 1.1174.0 | Apache-2.0
aws-sdk-core | 3.234.0 | Apache-2.0
aws-sdk-kms | 1.115.0 | Apache-2.0
aws-sdk-s3 | 1.201.0 | Apache-2.0
aws-sdk-secretsmanager | 1.121.0 | Apache-2.0
bear | 119234548783af19b8ec75c879c5062676b92571 | Apache-2.0
bookshelf | | Apache-2.0
Capture-Tiny | 0.50 | Apache-2.0
chef | 18.8.46 | Apache-2.0
chef_authn | 57ae954ab231e4cd24740315eddc932aaf5515fc | Apache-2.0
chef_secrets | a690fb9f92718bee1249605ebd6718058f38ab32 | Apache-2.0
chef-bin | 18.8.46 | Apache-2.0
chef-config | 18.8.46 | Apache-2.0
cheffish | 17.1.7 | Apache-2.0
chefstyle | 2.2.3 | Apache-2.0
chef-telemetry | 1.1.1 | Apache-2.0
chef-utils | 18.8.46 | Apache-2.0
chef-vault | 4.2.5 | Apache-2.0
chef-winrm | 2.3.12 | Apache-2.0
chef-winrm-elevated | 1.2.5 | Apache-2.0
chef-winrm-fs | 1.3.7 | Apache-2.0
chef-zero | 15.0.21 | Apache-2.0
cookstyle | 8.5.0 | Apache-2.0
darklaunch | 33a4f070eede8b7e71fceab1ed1e30ef6ddea3fb | Apache-2.0
efast_xs | c2a6b925ed94ab8a28ff49375782834033919190 | Apache-2.0
eini | 511a94254d6eecc9331da31cd4fa08ff64b4d2e2 | Apache-2.0
ej | f0425c1b8894acddb6e687fe3acbc9c1eafbd3e0 | Apache-2.0
envy | 0148fb4b7ed0e188511578e98b42d6e7dde0ebd1 | Apache-2.0
erlang | 26.2.5.14 | Apache-2.0
ffi-libarchive | 1.1.14 | Apache-2.0
folsom | 38e2cce7c64ce1f0a3a918d90394cfc0a940b1ba | Apache-2.0
folsom_graphite | 6898a51a6478767b45b9e568274c9ade7d71908d | Apache-2.0
inspec-core | 5.23.6 | Apache-2.0
inspec-core-bin | 5.22.58 | Apache-2.0
jmespath | 1.6.2 | Apache-2.0
lager | a140ea935eae9149bb35234bb40f6acf1c69caa1 | Apache-2.0
libyajl2 | 2.1.0 | Apache-2.0
license-acceptance | 2.1.13 | Apache-2.0
List-MoreUtils | 0.430 | Apache-2.0
mini_s3 | aa206d4d5a8380aff68629b46c15b87931e5c801 | Apache-2.0
mixer | d5f58392be09f5823ab21aa3664d7be97e9aa3bc | Apache-2.0
mixlib-archive | 1.1.7 | Apache-2.0
mixlib-authentication | 3.0.10 | Apache-2.0
mixlib-cli | 2.1.8 | Apache-2.0
mixlib-config | 3.0.27 | Apache-2.0
mixlib-log | 3.1.2.1 | Apache-2.0
mixlib-shellout | 3.3.9 | Apache-2.0
oc_bifrost | | Apache-2.0
oc_erchef | | Apache-2.0
oc_id | | Apache-2.0
oc-chef-pedant | | Apache-2.0
ohai | 18.2.6 | Apache-2.0
omniauth-chef | 0.4.1 | Apache-2.0
omnibus-ctl | 4e968f4cf713a545bbb70ee13b8ff7ebd37f7f3e | Apache-2.0
opensearch | 1.3.20 | Commercial License
opscoderl_folsom | d493429f895a904e9fd86d12a68f7075dfa8e227 | Apache-2.0
opscoderl_httpc | 3cdc661e55a48af321b7097941b9a03e8d7b113f | Apache-2.0
opscoderl_wm | 6495dd0f97f64f363db1c05504436834cc1136cd | Apache-2.0
pooler | bf52b40d666625769c5b612545c2de5ae7a42b0d | Apache-2.0
semverse | 3.0.2 | Apache-2.0
sqerl | f9de1ba35aababbe31a542a3b72af1e866376e3e | Apache-2.0
stats_hero | 4fbca5e2fcb4d464eab458025f7933f5c53f6330 | Apache-2.0
train-core | 3.13.4 | Apache-2.0
train-rest | 0.5.0 | Apache-2.0
train-winrm | 0.2.19 | Apache-2.0
uuidtools | 2.2.0 | Apache-2.0
veil | 0.3.11 | Apache-2.0
webmachine | 8e3141994826a731d8d68ceaac45e80a7ff9f7fa | Apache-2.0
websocket-driver | 0.8.0 | Apache-2.0
websocket-extensions | 0.1.5 | Apache-2.0
winrm | 2.3.8 | Apache-2.0
winrm-elevated | 1.2.3 | Apache-2.0
winrm-fs | 1.3.5 | Apache-2.0
wmi-lite | 1.0.7 | Apache-2.0
Algorithm-Diff | 1.201 | Artistic-1.0
Any-Moose | 0.27 | Artistic-1.0
B-Hooks-EndOfScope | 0.28 | Artistic-1.0
Class-Data-Inheritable | 0.10 | Artistic-1.0
Class-Inspector | 1.36 | Artistic-1.0
Class-Load | 0.25 | Artistic-1.0
Class-Method-Modifiers | 2.15 | Artistic-1.0
Class-Singleton | 1.6 | Artistic-1.0
Clone | 0.47 | Artistic-1.0
Clone-Choose | 0.010 | Artistic-1.0
Clone-PP | 1.08 | Artistic-1.0
Config-GitLike | 1.18 | Artistic-1.0
Data-OptList | 0.114 | Artistic-1.0
DateTime-Locale | 1.45 | Artistic-1.0
DateTime-TimeZone | 2.65 | Artistic-1.0
DBI | 1.647 | Artistic-1.0
Devel-CheckCompiler | 0.07 | Artistic-1.0
Devel-GlobalDestruction | 0.14 | Artistic-1.0
Devel-OverloadInfo | 0.008 | Artistic-1.0
Digest-SHA1 | 2.13 | Artistic-1.0
Dist-CheckConflicts | 0.11 | Artistic-1.0
Eval-Closure | 0.14 | Artistic-1.0
Exception-Class | 1.45 | Artistic-1.0
Exporter-Tiny | 1.006002 | Artistic-1.0
ExtUtils-Config | 0.010 | Artistic-1.0
ExtUtils-Helpers | 0.028 | Artistic-1.0
ExtUtils-InstallPaths | 0.014 | Artistic-1.0
File-HomeDir | 1.006 | Artistic-1.0
File-ShareDir | 1.118 | Artistic-1.0
File-ShareDir-Install | 0.14 | Artistic-1.0
File-Which | 1.27 | Artistic-1.0
Hash-Merge | 0.302 | Artistic-1.0
IO-Pager | 2.10 | Artistic-1.0
IPC-System-Simple | 1.30 | Artistic-1.0
MIME-Base32 | 1.303 | Artistic-1.0
Module-Build-Tiny | 0.052 | Artistic-1.0
Module-Build-XSUtil | 0.19 | Artistic-1.0
Module-Runtime | 0.018 | Artistic-1.0
Module-Runtime-Conflicts | 0.003 | Artistic-1.0
Moo | 2.005005 | Artistic-1.0
Moose | 2.4000 | Artistic-1.0
MooseX-Role-Parameterized | 1.11 | Artistic-1.0
MooX-Types-MooseLike | 0.29 | Artistic-1.0
Mouse | v2.5.11 | Artistic-1.0
MouseX-NativeTraits | 1.09 | Artistic-1.0
MouseX-Types | 0.06 | Artistic-1.0
MouseX-Types-Path-Class | 0.07 | Artistic-1.0
MRO-Compat | 0.15 | Artistic-1.0
namespace-autoclean | 0.31 | Artistic-1.0
namespace-clean | 0.27 | Artistic-1.0
Package-Stash | 0.40 | Artistic-1.0
Package-Stash-XS | 0.30 | Artistic-1.0
Params-Util | 1.102 | Artistic-1.0
Path-Class | 0.37 | Artistic-1.0
PerlIO-utf8_strict | 0.010 | Artistic-1.0
Pod-Parser | 1.67 | Artistic-1.0
Role-HasMessage | 0.007 | Artistic-1.0
Role-Identifiable | 0.009 | Artistic-1.0
Role-Tiny | 2.002004 | Artistic-1.0
Scalar-List-Utils | 1.70 | Artistic-1.0
String-Errf | 0.009 | Artistic-1.0
String-ShellQuote | 1.04 | Artistic-1.0
Sub-Exporter | 0.991 | Artistic-1.0
Sub-Exporter-Progressive | 0.001013 | Artistic-1.0
Sub-Identify | 0.14 | Artistic-1.0
Sub-Install | 0.929 | Artistic-1.0
Sub-Quote | 2.006009 | Artistic-1.0
Sub-Uplevel | 0.2800 | Artistic-1.0
SUPER | 1.20190531 | Artistic-1.0
Template-Tiny | 1.16 | Artistic-1.0
Test-Deep | 1.205 | Artistic-1.0
Test-Dir | 1.014 | Artistic-1.0
Test-Exception | 0.43 | Artistic-1.0
Test-Fatal | 0.017 | Artistic-1.0
Test-File-Contents | 0.242 | Artistic-1.0
Test-UseAllModules | 0.17 | Artistic-1.0
Text-Diff | 1.45 | Artistic-1.0
Throwable | 1.001 | Artistic-1.0
uri | 1.0.4 | Artistic-1.0
XString | 0.005 | Artistic-1.0
Class-Load-XS | 0.10 | Artistic-2.0
cpanminus | 1.7046 | Artistic-2.0
DateTime | 1.66 | Artistic-2.0
Devel-StackTrace | 2.05 | Artistic-2.0
Module-Implementation | 0.09 | Artistic-2.0
Package-DeprecationManager | 0.18 | Artistic-2.0
Params-ValidationCompiler | 0.31 | Artistic-2.0
perl | 5.34.0 | Artistic-2.0
perl_pg_driver | 3.3.0 | Artistic-2.0
Specio | 0.52 | Artistic-2.0
Test-File | 1.995 | Artistic-2.0
IPC-Run3 | 0.049 | BSD
pg | 1.5.9 | BSD
rb-readline | 0.5.5 | BSD
rubyzip | 2.4.1 | BSD 2-Clause
base16 | f78918e7b593fbdc35ec9bcc349aa50f47f45a8b | BSD-2-Clause
bigdecimal | 3.2.2 | BSD-2-Clause
byebug | 12.0.0 | BSD-2-Clause
bzip2 | 1.0.8 | BSD-2-Clause
date | 3.4.1 | BSD-2-Clause
domain_name | 0.6.20240107 | BSD-2-Clause
erlcloud | 398d67ecfe6d398a444d42ab9e94e8b1df0171a5 | BSD-2-Clause
ibrowse | d541f7190894734e2b69f4763c3664fb4d6bb9db | BSD-2-Clause
libarchive | 3.6.2 | BSD-2-Clause
logger | 1.7.0 | BSD-2-Clause
net-protocol | 0.2.2 | BSD-2-Clause
openresty | 1.27.1.2 | BSD-2-Clause
pcre | 8.45 | BSD-2-Clause
quickrand | c7eca718faa0d52c097155263dea6c25067396f7 | BSD-2-Clause
rexml | 3.4.2 | BSD-2-Clause
ruby | 3.1.7 | BSD-2-Clause
stringio | 3.1.7 | BSD-2-Clause
time | 0.4.1 | BSD-2-Clause
timeout | 0.4.3 | BSD-2-Clause
unicode_utils | 1.4.0 | BSD-2-Clause
uuid | 41c3725fe87a11f7d2e77463dcff72eb11fcdee0 | MIT
cf | 2bcf00402db9ca5a4790de7f82c8139baaf8856c | BSD-3-Clause
epgsql | 57ea14d2e4c60df6de1c86a27aa09db9c939b6e7 | BSD-3-Clause
ffi | 1.16.3 | BSD-3-Clause
valkey | 7.2.11 | BSD-3-Clause
lhttpc | b8ea2a03b081c65902600e358cbdb17b5f826ffe | BSD-3-Clause
libedit | 20120601-3.0 | BSD-3-Clause
recon | f7b6c08e6e9e2219db58bfb012c58c178822e01e | BSD-3-Clause
runit | 2.1.1 | BSD-3-Clause
String-Formatter | 1.235 | gpl_2
haproxy | 3.0.11 | GPL-2.0
logrotate | 3.19.0 | GPL-2.0
server-open-jre | 17.0.9+9 | GPL-2.0 (with the Classpath Exception)
config_guess | 84f04b02a7e2fc8eaa9d52deee5f6d57b06fe447 | GPL-3.0 (with exception)
fs | 936ba9dcf88186250ecc5995e25154bde44252a1 | ISC
goldrush | 8f1b715d36b650ec1e1f5612c00e28af6ab0de82 | ISC
poolboy | 29be47db8c2be38b18c908e43a80ebb7b9b6116b | ISC
Test-NoWarnings | 1.06 | lgpl_2_1
libiconv | 1.17 | LGPL-2.1
libintl-perl | 1.23 | LGPL-2.1
libuuid | 2.21 | LGPL-2.1
kgio | 2.11.4 | LGPL-2.1+
raindrops | 0.20.1 | LGPL-2.1+
erlsom | 131e660ee39254a58b75075e07dfd742f445bfce | LGPL-3.0
actioncable | 7.1.5.2 | MIT
actionmailbox | 7.1.5.2 | MIT
actionmailer | 7.1.5.2 | MIT
actionpack | 7.1.5.2 | MIT
actiontext | 7.1.5.2 | MIT
actionview | 7.1.5.2 | MIT
activejob | 7.1.5.2 | MIT
activemodel | 7.1.5.2 | MIT
activerecord | 7.1.5.2 | MIT
activestorage | 7.1.5.2 | MIT
activesupport | 7.1.5.2 | MIT
ast | 2.4.3 | MIT
aws-sigv4 | 1.12.1 | MIT
bcrypt | 3.1.20 | MIT
binding_of_caller | 1.0.1 | MIT
builder | 3.3.0 | MIT
bundler | 2.3.27 | MIT
chef-gyoku | 1.4.5 | MIT
coderay | 1.1.3 | Public Domain
coffee-rails | 5.0.0 | MIT
coffee-script | 2.4.1 | MIT
coffee-script-source | 1.12.2 | MIT
concurrent-ruby | 1.3.5 | MIT
config | 4.2.1 | MIT
connection_pool | 2.5.4 | MIT
corefoundation | 0.3.13 | MIT
crass | 1.0.6 | MIT
curl | 8.4.0 | MIT
debug_inspector | 1.2.0 | MIT
deep_merge | 1.2.2 | MIT
diff-lcs | 1.5.1 | MIT
doorkeeper | 5.8.2 | MIT
dry-configurable | 1.3.0 | MIT
dry-core | 1.1.0 | MIT
dry-inflector | 1.2.0 | MIT
dry-initializer | 3.2.0 | MIT
dry-logic | 1.6.0 | MIT
dry-schema | 1.14.1 | MIT
dry-types | 1.8.3 | MIT
dry-validation | 1.11.1 | MIT
ed25519 | 1.4.0 | MIT
erlware_commons | f511ed875bea87212ba9ee40ade1c9f53498ce79 | MIT
erubi | 1.13.1 | MIT
erubis | 2.7.0 | MIT
execjs | 2.10.0 | MIT
faraday | 2.13.4 | MIT
faraday-follow_redirects | 0.4.0 | MIT
faraday-net_http | 3.4.1 | MIT
ffi-yajl | 2.6.0 | MIT
fuzzyurl | 0.9.0 | MIT
gecode | 3.7.3 | MIT
globalid | 1.3.0 | MIT
gssapi | 1.3.1 | MIT
gyoku | 1.4.0 | MIT
hashie | 5.0.0 | MIT
http-accept | 2.1.1 | MIT
http-cookie | 1.1.0 | MIT
i18n | 1.14.7 | MIT
iniparse | 1.5.0 | MIT
ipaddress | 0.8.3 | MIT
iso8601 | 4603fc810cacf859761c0e154590cde2ce9cc6b5 | MIT
jbuilder | 2.14.1 | MIT
jiffy | 9ea1b35b6e60ba21dfd4adbd18e7916a831fd7d4 | MIT
jquery-rails | 4.6.0 | MIT
jsx | e8d2e01b608e0670a4f82e35ccb5ef3f86115423 | MIT
jwt | 3.1.2 | MIT
language_server-protocol | 3.17.0.5 | MIT
libffi | 3.4.4 | MIT
libnghttp2 | 1.58.0 | MIT
libossp-uuid | 1.6.2 | MIT
libxml2 | 2.11.7 | MIT
libxslt | 1.1.39 | MIT
libyaml | 0.2.5 | MIT
lint_roller | 1.1.0 | MIT
little-plugger | 1.1.4 | MIT
logging | 2.4.0 | MIT
loofah | 2.24.1 | MIT
mail | 2.8.1 | MIT
marcel | 1.1.0 | MIT
method_source | 1.1.0 | MIT
mime-types | 3.7.0 | MIT
mime-types-data | 3.2025.0924 | MIT
mini_mime | 1.1.5 | MIT
mini_portile2 | 2.8.9 | MIT
minitest | 5.25.5 | MIT
mochiweb | 666ac57d5cad8da0341e53db884855ee9a9805b0 | MIT
multi_json | 1.17.0 | MIT
multipart-post | 2.4.1 | MIT
ncurses | 6.4 | MIT
neotoma | 760928ec8870da02eb11bccb501e2700925d06c6 | MIT
netrc | 0.11.0 | MIT
net-scp | 4.1.0 | MIT
net-sftp | 4.0.0 | MIT
net-ssh | 7.3.0 | MIT
nio4r | 2.7.4 | MIT
nokogiri | 1.18.9-x86_64-linux-gnu | MIT
nori | 2.7.0 | MIT
observer_cli | baa70569bccc5508e9839e20768540ef3cdca016 | MIT
omniauth | 2.1.3 | MIT
openresty-lpeg | 1.0.1 | MIT
parallel | 1.27.0 | MIT
parser | 3.3.9.0 | MIT
parslet | 2.0.0 | MIT
pastel | 0.8.0 | MIT
pbkdf2 | 0.1.0 | MIT
plist | 3.7.2 | MIT
popt | 1.19 | MIT
prism | 1.6.0 | MIT
prometheus | f8619006f945eeaeb1725206209ec89a1409575c | MIT
proxifier2 | 1.1.0 | MIT
pry | 0.15.2 | MIT
pry-byebug | 3.11.0 | MIT
pry-stack_explorer | 0.6.1 | MIT
psych | 5.2.6 | MIT
public_suffix | 6.0.2 | MIT
rack | 3.2.3 | MIT
rack-protection | 4.2.1 | MIT
rack-session | 2.1.1 | MIT
rack-test | 2.2.0 | MIT
rackup | 2.2.1 | MIT
rails | 7.1.5.2 | MIT
rails-dom-testing | 2.3.0 | MIT
rails-html-sanitizer | 1.6.2 | MIT
railties | 7.1.5.2 | MIT
rainbow | 3.1.1 | MIT
rake | 13.3.0 | MIT
redis-gem | 3.3.3 | MIT
regexp_parser | 2.11.3 | MIT
responders | 3.2.0 | MIT
rest-client | 2.1.0 | MIT
rspec | 3.13.2 | MIT
rspec_junit_formatter | 0.6.0 | MIT
rspec-core | 3.13.6 | MIT
rspec-expectations | 3.13.5 | MIT
rspec-its | 2.0.0 | MIT
rspec-mocks | 3.13.6 | MIT
rspec-rerun | 1.1.0 | MIT
rspec-support | 3.13.6 | MIT
rubocop | 1.81.0 | MIT
rubocop-ast | 1.47.1 | MIT
rubyntlm | 0.6.5 | MIT
ruby-progressbar | 1.13.0 | MIT
sassc | 2.4.0 | MIT
sassc-rails | 2.1.2 | MIT
sass-rails | 6.0.0 | MIT
sequel | 3.34.1 | MIT
sprockets | 4.2.2 | MIT
sprockets-rails | 3.5.2 | MIT
sqitch | 0.973 | MIT
strings | 0.2.1 | MIT
strings-ansi | 0.2.0 | MIT
sync | 7c9367e73b7dbb01a788f8d0120d747330112f6f | MIT
syslog-logger | 1.6.8 | MIT
thor | 1.2.2 | MIT
tilt | 2.6.1 | MIT
tomlrb | 1.3.0 | MIT
Try-Tiny | 0.32 | mit
tty-box | 0.7.0 | MIT
tty-color | 0.6.0 | MIT
tty-cursor | 0.7.1 | MIT
tty-prompt | 0.23.1 | MIT
tty-reader | 0.9.0 | MIT
tty-screen | 0.8.2 | MIT
tty-table | 0.12.0 | MIT
turbolinks | 5.2.1 | MIT
turbolinks-source | 5.2.0 | MIT
tzinfo | 2.0.6 | MIT
tzinfo-data | 1.2025.2 | MIT
uglifier | 4.2.1 | MIT
unf_ext | 0.0.8.2 | MIT
unicode-display_width | 2.6.0 | MIT
unicorn-rails | 2.2.1 | MIT
wisper | 2.0.1 | MIT
zeitwerk | 2.6.18 | MIT
cacerts | 2022-10-11 | MPL-2.0
sslshake | 1.3.1 | MPL-2.0
vault | 0.18.2 | MPL-2.0
TermReadKey | 2.38 | Public Domain
postgresql13 | 13.22 | Commercial License
postgresql96-bin | 9.6.23 | PostgreSQL
chef-server-ctl | | Proprietary
cleanup | 1.0.0 | Proprietary
gpg-key | 1.0.1 | Proprietary
more-ruby-cleanup-server | | Proprietary
partybus | | Proprietary
patchelf | 0.13.1 | Proprietary
preparation | 1.0.0 | Proprietary
private-chef-scripts | | Proprietary
private-chef-upgrades | | Proprietary
ruby-cleanup | 1.0.0 | Proprietary
server-complete | | Proprietary
server-ctl-cookbooks | | Proprietary
ruby-shadow | 2.5.0 | Public Domain
liblzma | 5.2.10 | Public-Domain
net-http-spy | 0.2.1 | Public-Domain
base64 | 0.3.0 | Ruby
cgi | 0.5.0 | Ruby
drb | 2.2.3 | Ruby
erb | 4.0.4 | Ruby
httpclient | 2.9.0 | Ruby
io-console | 0.8.1 | Ruby
irb | 1.15.2 | Ruby
json | 2.13.2 | Ruby
mutex_m | 0.3.0 | Ruby
net-ftp | 0.3.8 | Ruby
net-http | 0.6.0 | Ruby
net-imap | 0.5.9 | Ruby
net-pop | 0.1.2 | Ruby
net-smtp | 0.5.1 | Ruby
openssl | 3.2.4 | Ruby
pp | 0.6.3 | Ruby
prettyprint | 0.2.0 | Ruby
racc | 1.8.1 | Ruby
rdoc | 6.15.0 | Ruby
reline | 0.6.2 | Ruby
unicorn | 6.1.0 | Ruby
webrick | 1.9.1 | Ruby
zlib | 1.2.13 | Zlib
-------------------------------------------------------------------------
1. Special Notices Regarding Open-Source Third-Party Components incorporated into the Product:
(1) The Apache Software License, Version 2.0:
Progress Chef Infra Server v15 incorporates
addressable v2.8.7,
appbundler v0.13.4,
aws-eventstream v1.3.0,
aws-partitions v1.981.0,
aws-sdk-core v3.209.1,
aws-sdk-kms v1.94.0,
aws-sdk-s3 v1.166.0,
aws-sdk-secretsmanager v1.108.0,
bear v119234548783af19b8ec75c879c5062676b92571,
bookshelf,
Capture-Tiny v0.5,
chef v18.8.46,
chef_authn v57ae954ab231e4cd24740315eddc932aaf5515fc,
chef_secrets va690fb9f92718bee1249605ebd6718058f38ab32,
chef-bin v18.8.46,
chef-config v18.8.46,
cheffish v17.1.7,
chefstyle v2.2.3,
chef-telemetry v1.1.1,
chef-utils v18.8.46,
chef-vault v4.1.11,
chef-winrm v2.3.12,
chef-winrm-elevated v1.2.5,
chef-winrm-fs v1.3.7,
chef-zero v15.0.11,
cookstyle v7.32.8,
darklaunch v33a4f070eede8b7e71fceab1ed1e30ef6ddea3fb,
efast_xs vc2a6b925ed94ab8a28ff49375782834033919190,
eini v511a94254d6eecc9331da31cd4fa08ff64b4d2e2,
ej vf0425c1b8894acddb6e687fe3acbc9c1eafbd3e0,
envy v0148fb4b7ed0e188511578e98b42d6e7dde0ebd1,
erlang v26.2.5.14,
ffi-libarchive v1.1.3,
folsom v38e2cce7c64ce1f0a3a918d90394cfc0a940b1ba,
folsom_graphite v6898a51a6478767b45b9e568274c9ade7d71908d,
inspec-core v5.22.58,
inspec-core-bin v5.22.58,
jmespath v1.6.2,
lager va140ea935eae9149bb35234bb40f6acf1c69caa1,
libyajl2 v2.1.0,
license-acceptance v2.1.13,
List-MoreUtils v0.43,
meck ve48641a20a605174e640ac91a528d443be11c9b9,
mini_s3 vaa206d4d5a8380aff68629b46c15b87931e5c801,
mixer vd5f58392be09f5823ab21aa3664d7be97e9aa3bc,
mixlib-archive v1.1.7,
mixlib-authentication v3.0.10,
mixlib-cli v2.1.8,
mixlib-config v3.0.27,
mixlib-log v3.0.9,
mixlib-shellout v3.2.8,
oc_bifrost,
oc_erchef,
oc_id,
oc-chef-pedant,
ohai v18.2.4,
omniauth-chef v0.4.1,
omnibus-ctl v4e968f4cf713a545bbb70ee13b8ff7ebd37f7f3e,
opscoderl_folsom vd493429f895a904e9fd86d12a68f7075dfa8e227,
opscoderl_httpc v3cdc661e55a48af321b7097941b9a03e8d7b113f,
opscoderl_wm v6495dd0f97f64f363db1c05504436834cc1136cd,
pooler vbf52b40d666625769c5b612545c2de5ae7a42b0d,
semverse v3.0.2,
sqerl vf9de1ba35aababbe31a542a3b72af1e866376e3e,
stats_hero v4fbca5e2fcb4d464eab458025f7933f5c53f6330,
train-core v3.12.7,
train-rest v0.5.0,
train-winrm v0.2.13,
uuidtools v2.2.0,
veil v0.3.14,
webmachine v8e3141994826a731d8d68ceaac45e80a7ff9f7fa,
websocket-driver v0.8.0,
websocket-extensions v0.1.5,
winrm v2.3.9,
winrm-elevated v1.2.3,
winrm-fs v1.3.5, and
wmi-lite v1.0.7.
All such above-listed technologies are subject to the following terms and conditions:
Apache Software License Version 2.0. Copyright 2001-2004 The Apache Software Foundation. Such Apache Technology is subject to the following terms and conditions: The Apache Software License, Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
-------------------------------------------------------------------------
(2) Artistic License 1.0:
Progress Chef Infra Server v15 incorporates
Algorithm-Diff v1.201,
Any-Moose v0.27,
B-Hooks-EndOfScope v0.28,
Class-Data-Inheritable v0.1,
Class-Inspector v1.36,
Class-Load v0.25,
Class-Method-Modifiers v2.15,
Class-Singleton v1.6,
Clone v0.47,
Clone-Choose v0.01,
Clone-PP v1.08,
Config-GitLike v1.18,
Data-OptList v0.114,
DateTime-Locale v1.45,
DateTime-TimeZone v2.65,
DBI v1.647,
Devel-CheckCompiler v0.07,
Devel-GlobalDestruction v0.14,
Devel-OverloadInfo v0.008,
Digest-SHA1 v2.13,
Dist-CheckConflicts v0.11,
Eval-Closure v0.14,
Exception-Class v1.45,
Exporter-Tiny v1.006002,
ExtUtils-Config v0.01,
ExtUtils-Helpers v0.028,
ExtUtils-InstallPaths v0.014,
File-HomeDir v1.006,
File-ShareDir v1.118,
File-ShareDir-Install v0.14,
File-Which v1.27,
Hash-Merge v0.302,
IO-Pager v2.1,
IPC-System-Simple v1.3,
MIME-Base32 v1.303,
Module-Build-Tiny v0.052,
Module-Build-XSUtil v0.19,
Module-Runtime v0.018,
Module-Runtime-Conflicts v0.003,
Moo v2.005005,
Moose v2.4,
MooseX-Role-Parameterized v1.11,
MooX-Types-MooseLike v0.29,
Mouse v2.5.11,
MouseX-NativeTraits v1.09,
MouseX-Types v0.06,
MouseX-Types-Path-Class v0.07,
MRO-Compat v0.15,
namespace-autoclean v0.31,
namespace-clean v0.27,
Package-Stash v0.4,
Package-Stash-XS v0.3,
Params-Util v1.102,
Path-Class v0.37,
PerlIO-utf8_strict v0.01,
Pod-Parser v1.67,
Role-HasMessage v0.007,
Role-Identifiable v0.009,
Role-Tiny v2.002004,
Scalar-List-Utils v1.7,
String-Errf v0.009,
String-ShellQuote v1.04,
Sub-Exporter v0.991,
Sub-Exporter-Progressive v0.001013,
Sub-Identify v0.14,
Sub-Install v0.929,
Sub-Quote v2.006009,
Sub-Uplevel v0.28,
SUPER v1.20190531,
Template-Tiny v1.16,
Test-Deep v1.205,
Test-Dir v1.014,
Test-Exception v0.43,
Test-Fatal v0.017,
Test-File-Contents v0.242,
Test-UseAllModules v0.17,
Text-Diff v1.45,
Throwable v1.001,
Uri v0.13.1, and
XString v0.005.
All such above-listed technologies are subject to the following terms and conditions:
The Artistic License 1.0
The Artistic License
Preamble
The intent of this document is to state the conditions under which a Package
may be copied, such that the Copyright Holder maintains some semblance of
artistic control over the development of the package, while giving the users of
the package the right to use and distribute the Package in a more-or-less
customary fashion, plus the right to make reasonable modifications.
Definitions:
- "Package" refers to the collection of files distributed by the Copyright
Holder, and derivatives of that collection of files created through textual modification.
- "Standard Version" refers to such a Package if it has not been modified,
or has been modified in accordance with the wishes of the Copyright Holder.
- "Copyright Holder" is whoever is named in the copyright or copyrights for the package.
- "You" is you, if you're thinking about copying or distributing this Package.
- "Reasonable copying fee" is whatever you can justify on the basis of media cost, duplication charges, time of people involved, and so on. (You will not be required to justify it to the Copyright Holder, but only to the computing community at large as a market that must bear the fee.)
- "Freely Available" means that no fee is charged for the item itself, though there may be fees involved in handling the item. It also means that recipients of the item may redistribute it under the same conditions they received it.
1. You may make and give away verbatim copies of the source form of the
Standard Version of this Package without restriction, provided that you
duplicate all of the original copyright notices and associated disclaimers.
2. You may apply bug fixes, portability fixes and other modifications derived from the Public Domain or from the Copyright Holder. A Package modified in such a way shall still be considered the Standard Version.
3. You may otherwise modify your copy of this Package in any way, provided that you insert a prominent notice in each changed file stating how and when you changed that file, and provided that you do at least ONE of the following:
a) place your modifications in the Public Domain or otherwise make them Freely Available, such as by posting said modifications to Usenet or an equivalent medium, or placing the modifications on a major archive site such as ftp.uu.net, or by allowing the Copyright Holder to include your modifications in the Standard Version of the Package.
b) use the modified Package only within your corporation or organization.
c) rename any non-standard executables so the names do not conflict with standard executables, which must also be provided, and provide a separate manual page for each non-standard executable that clearly documents how it differs from the Standard Version.
d) make other distribution arrangements with the Copyright Holder.
4. You may distribute the programs of this Package in object code or executable form, provided that you do at least ONE of the following:
a) distribute a Standard Version of the executables and library files, together with instructions (in the manual page or equivalent) on where to get the Standard Version.
b) accompany the distribution with the machine-readable source of the Package with your modifications.
c) accompany any non-standard executables with their corresponding Standard Version executables, giving the non-standard executables non-standard names, and clearly documenting the differences in manual pages (or equivalent), together with instructions on where to get the Standard Version.
d) make other distribution arrangements with the Copyright Holder.
5. You may charge a reasonable copying fee for any distribution of this
Package. You may charge any fee you choose for support of this Package. You may not charge a fee for this Package itself. However, you may distribute this Package in aggregate with other (possibly commercial) programs as part of a larger (possibly commercial) software distribution provided that you do not advertise this Package as a product of your own.
6. The scripts and library files supplied as input to or produced as output from the programs of this Package do not automatically fall under the copyright of this Package, but belong to whomever generated them, and may be sold commercially, and may be aggregated with this Package.
7. C or perl subroutines supplied by you and linked into this Package shall not be considered part of this Package.
8. The name of the Copyright Holder may not be used to endorse or promote
products derived from this software without specific prior written permission.
9. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
The End
(3) Artistic License 2.0:
Progress Chef Infra Server v15 incorporates
Class-Load-XS 0.1
cpanminus 1.7046
DateTime 1.66
Devel-StackTrace 2.05
Module-Implementation 0.09
Package-DeprecationManager 0.18
Params-ValidationCompiler 0.31
perl 5.34.0
perl_pg_driver 3.3.0
Specio 0.52
Test-File 1.995
All such above-listed technologies are subject to the following terms and conditions:
Artistic License 2.0
Copyright (c) 2000-2006, The Perl Foundation.
Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.
Preamble
This license establishes the terms under which a given free software Package may be copied, modified, distributed, and/or redistributed. The intent is that the Copyright Holder maintains some artistic control over the development of that Package while still keeping the Package available as open source and free software.
You are always permitted to make arrangements wholly outside of this license directly with the Copyright Holder of a given Package. If the terms of this license do not permit the full use that you propose to make of the Package, you should contact the Copyright Holder and seek a different licensing arrangement.
Definitions
“Copyright Holder” means the individual(s) or organization(s) named in the copyright notice for the entire Package.
“Contributor” means any party that has contributed code or other material to the Package, in accordance with the Copyright Holder’s procedures.
“You” and “your” means any person who would like to copy, distribute, or modify the Package.
“Package” means the collection of files distributed by the Copyright Holder, and derivatives of that collection and/or of those files. A given Package may consist of either the Standard Version, or a Modified Version.
“Distribute” means providing a copy of the Package or making it accessible to anyone else, or in the case of a company or organization, to others outside of your company or organization.
“Distributor Fee” means any fee that you charge for Distributing this Package or providing support for this Package to another party. It does not mean licensing fees.
“Standard Version” refers to the Package if it has not been modified, or has been modified only in ways explicitly requested by the Copyright Holder.
“Modified Version” means the Package, if it has been changed, and such changes were not explicitly requested by the Copyright Holder.
“Original License” means this Artistic License as Distributed with the Standard Version of the Package, in its current version or as it may be modified by The Perl Foundation in the future.
“Source” form means the source code, documentation source, and configuration files for the Package.
“Compiled” form means the compiled bytecode, object code, binary, or any other form resulting from mechanical transformation or translation of the Source form.
Permission for Use and Modification Without Distribution
(1) You are permitted to use the Standard Version and create and use Modified Versions for any purpose without restriction, provided that you do not Distribute the Modified Version.
Permissions for Redistribution of the Standard Version
(2) You may Distribute verbatim copies of the Source form of the Standard Version of this Package in any medium without restriction, either gratis or for a Distributor Fee, provided that you duplicate all of the original copyright notices and associated disclaimers. At your discretion, such verbatim copies may or may not include a Compiled form of the Package.
(3) You may apply any bug fixes, portability changes, and other modifications made available from the Copyright Holder. The resulting Package will still be considered the Standard Version, and as such will be subject to the Original License.
Distribution of Modified Versions of the Package as Source
(4) You may Distribute your Modified Version as Source (either gratis or for a Distributor Fee, and with or without a Compiled form of the Modified Version) provided that you clearly document how it differs from the Standard Version, including, but not limited to, documenting any non-standard features, executables, or modules, and provided that you do at least ONE of the following:
(a) make the Modified Version available to the Copyright Holder of the Standard Version, under the Original License, so that the Copyright Holder may include your modifications in the Standard Version.
(b) ensure that installation of your Modified Version does not prevent the user installing or running the Standard Version. In addition, the Modified Version must bear a name that is different from the name of the Standard Version.
(c) allow anyone who receives a copy of the Modified Version to make the Source form of the Modified Version available to others under
(i) the Original License or
(ii) a license that permits the licensee to freely copy, modify and redistribute the Modified Version using the same licensing terms that apply to the copy that the licensee received, and requires that the Source form of the Modified Version, and of any works derived from it, be made freely available in that license fees are prohibited but Distributor Fees are allowed.
Distribution of Compiled Forms of the Standard Version or Modified Versions without the Source
(5) You may Distribute Compiled forms of the Standard Version without the Source, provided that you include complete instructions on how to get the Source of the Standard Version. Such instructions must be valid at the time of your distribution. If these instructions, at any time while you are carrying out such distribution, become invalid, you must provide new instructions on demand or cease further distribution. If you provide valid instructions or cease distribution within thirty days after you become aware that the instructions are invalid, then you do not forfeit any of your rights under this license.
(6) You may Distribute a Modified Version in Compiled form without the Source, provided that you comply with Section 4 with respect to the Source of the Modified Version.
Aggregating or Linking the Package
(7) You may aggregate the Package (either the Standard Version or Modified Version) with other packages and Distribute the resulting aggregation provided that you do not charge a licensing fee for the Package. Distributor Fees are permitted, and licensing fees for other components in the aggregation are permitted. The terms of this license apply to the use and Distribution of the Standard or Modified Versions as included in the aggregation.
(8) You are permitted to link Modified and Standard Versions with other works, to embed the Package in a larger work of your own, or to build stand-alone binary or bytecode versions of applications that include the Package, and Distribute the result without restriction, provided the result does not expose a direct interface to the Package.
Items That are Not Considered Part of a Modified Version
(9) Works (including, but not limited to, modules and scripts) that merely extend or make use of the Package, do not, by themselves, cause the Package to be a Modified Version. In addition, such works are not considered parts of the Package itself, and are not subject to the terms of this license.
General Provisions
(10) Any use, modification, and distribution of the Standard or Modified Versions is governed by this Artistic License. By using, modifying or distributing the Package, you accept this license. Do not use, modify, or distribute the Package, if you do not accept this license.
(11) If your Modified Version has been derived from a Modified Version made by someone other than you, you are nevertheless required to ensure that your Modified Version complies with the requirements of this license.
(12) This license does not grant you the right to use any trademark, service mark, tradename, or logo of the Copyright Holder.
(13) This license includes the non-exclusive, worldwide, free-of-charge patent license to make, have made, use, offer to sell, sell, import and otherwise transfer the Package with respect to any patent claims licensable by the Copyright Holder that are necessarily infringed by the Package. If you institute patent litigation (including a cross-claim or counterclaim) against any party alleging that the Package constitutes direct or contributory patent infringement, then this Artistic License to you shall terminate on the date that such litigation is filed.
(14) Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS “AS IS’ AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES. THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT PERMITTED BY YOUR LOCAL LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
(4) BSD-Style Licenses:
(a) Progress Chef Infra Server v15 incorporates bzip2 v1.0.8. Such technology is subject to the following terms and conditions:
This program, "bzip2", the associated library "libbzip2", and all
documentation, are copyright (C) 1996-2019 Julian R Seward. All
rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. The origin of this software must not be misrepresented; you must
not claim that you wrote the original software. If you use this
software in a product, an acknowledgment in the product
documentation would be appreciated but is not required.
3. Altered source versions must be plainly marked as such, and must
not be misrepresented as being the original software.
4. The name of the author may not be used to endorse or promote
products derived from this software without specific prior written
permission.
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Julian Seward, jseward@acm.org
bzip2/libbzip2 version 1.0.8 of 13 July 2019
(b) Progress Chef Infra Server v15 incorporates IPC-Run3 v0.049. Such technology is subject to the following terms and conditions:
Copyright <YEAR> Barrie Slaymaker
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS “AS IS” AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
(c) Progress Chef Infra Server v15 incorporates pg 1.5.9, date v3.3.4, bigdeciml v3.1.8, net-protocol v0.2.2, rxml v3.3.8, ruby v3.1.7, stringio v3.0.1.1, time v0.4.0, timeout v0.4.1, and logger v1.5.3. Such technologies are subject to the following terms and conditions:
Copyright (C) 1993-2013 Yukihiro Matsumoto. All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
(d) Progress Chef Infra Server v15 incorporates rb-readline v9fba246073f78831b7c7129c76cc07d8476a8892. Such technology is subject to the following terms and conditions:
Copyright (c) 2009, Park Heesob
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
* Neither the name of Park Heesob nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
(e) Progress Chef Infra Server v15 incorporates rubyzip v2.3.2. Such technology is subject to the following terms and conditions:
BSD 2-Clause License
Copyright (c) 2002-2025, The Rubyzip Developers
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
(f) Progress Chef Infra Server v15 incorporates byebug v3.1.8. Such technology is subject to the following terms and conditions:
Copyright (c) 2018 David Rodríguez <deivid.rodriguez@riseup.net>
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
(g) Progress Chef Infra Server v15 incorporates domain_name v0.6.20240107. Such technology is subject to the following terms and conditions:
Copyright (c) 2011-2017 Akinori MUSHA
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
* lib/domain_name/punycode.rb
This file is derived from the implementation of punycode available at
here:
https://www.verisign.com/en_US/channel-resources/domain-registry-products/idn-sdks/index.xhtml
Copyright (C) 2000-2002 Verisign Inc., All rights reserved.
Redistribution and use in source and binary forms, with or
without modification, are permitted provided that the following
conditions are met:
1) Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2) Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in
the documentation and/or other materials provided with the
distribution.
3) Neither the name of the VeriSign Inc. nor the names of its
contributors may be used to endorse or promote products derived
from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
This software is licensed under the BSD open source license. For more
information visit www.opensource.org.
Authors:
John Colosi (VeriSign)
Srikanth Veeramachaneni (VeriSign)
Nagesh Chigurupati (Verisign)
Praveen Srinivasan(Verisign)
* lib/domain_name/etld_data.rb
This file is generated from the Public Suffix List
(https://publicsuffix.org/), which is licensed under MPL 2.0:
https://mozilla.org/MPL/2.0/
(h) Progress Chef Infra Server v15 incorporates erlcloud v398d67ecfe6d398a444d42ab9e94e8b1df0171a5. Such technology is subject to the following terms and conditions:
Copyright (C) 2010 Brian Buchanan. All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ``AS IS'' AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
(i) Progress Chef Infra Server v15 incorporates libarchive v3.6.2. Such technology is subject to the following terms and conditions:
The libarchive distribution as a whole is Copyright by Tim Kientzle
and is subject to the copyright notice reproduced at the bottom of
this file.
Each individual file in this distribution should have a clear
copyright/licensing statement at the beginning of the file. If any do
not, please let me know and I will rectify it. The following is
intended to summarize the copyright status of the individual files;
the actual statements in the files are controlling.
* Except as listed below, all C sources (including .c and .h files)
and documentation files are subject to the copyright notice reproduced
at the bottom of this file.
* The following source files are also subject in whole or in part to
a 3-clause UC Regents copyright; please read the individual source
files for details:
libarchive/archive_read_support_filter_compress.c
libarchive/archive_write_add_filter_compress.c
libarchive/mtree.5
* The following source files are in the public domain:
libarchive/archive_getdate.c
* The following source files are triple-licensed with the ability to choose
from CC0 1.0 Universal, OpenSSL or Apache 2.0 licenses:
libarchive/archive_blake2.h
libarchive/archive_blake2_impl.h
libarchive/archive_blake2s_ref.c
libarchive/archive_blake2sp_ref.c
* The build files---including Makefiles, configure scripts,
and auxiliary scripts used as part of the compile process---have
widely varying licensing terms. Please check individual files before
distributing them to see if those restrictions apply to you.
I intend for all new source code to use the license below and hope over
time to replace code with other licenses with new implementations that
do use the license below. The varying licensing of the build scripts
seems to be an unavoidable mess.
Copyright (c) 2003-2018 <author(s)>
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer
in this position and unchanged.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the