forked from strongloop/apiconnect-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
non_ibm_license.txt
1924 lines (1534 loc) · 141 KB
/
non_ibm_license.txt
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
TERMS AND CONDITIONS FOR SEPARATELY LICENSED CODE
IBM API Connect on Docker V5.0
The IBM license agreement and any applicable information on the web
download page for IBM products refers Licensee to this file for details
concerning terms and conditions applicable to code identified as
Separately Licensed Code in the License Information document and
included in the products listed above ("the Program").
The "Separately Licensed Code" identified in the License Information
document of the IBM license agreement is provided to Licensee under terms
and conditions that are different from the IBM license agreement.
Licensee's use of such components or portions thereof is subject to the
terms of the associated license agreement provided or referenced in this
section and not the terms of the IBM license agreement.
Please note: This NON_IBM_LICENSE file may identify Separately Licensed
Code and its related agreements that are not used by, or that were not
shipped with, the Program as Licensee installed it.
The following are Separately Licensed Code:
acl
acpi
acpid
acpi-support
adaptivetheme (drupal)
addressfield (drupal)
AddToAny (drupal)
adduser
admin_menu (drupal)
adminimal_admin_menu (drupal)
adminimal_theme (drupal)
advagg (drupal)
Advanced Forum (drupal)
Advanced syslog (drupal)
alpha_pagination
alsa-lib
angular.js/images/logo
Ansible
apt
aptitude
aptitude-common
apt-transport-https
apt-utils
at
AT Tools (drupal)
atk
attr
audit
audit-libs
augeas
autogen
autogen-libopts
Automated Logout (drupal)
avahi
base-files
base-lsb
base-passwd
bash
bc
Bean (drupal)
better_exposed_filters (drupal...
binary_heap.js
bind
bind9-host
binutils
Block Class (drupal)
Block Class Styles (drupal)
BOA
bridge-utils
bsdutils
busybox
c3p0
ca-certificates
cairo
cairo-spice
caniuse-db(node)
CAPTCHA (Drupal)
cdrkit
chain_menu_access
chkconfig
commons.wikimedia
compat-gcc-32
config.guess
ConsoleKit
console-setup
content_access (drupal)
context (drupal)
coreutils
cpio
cracklib
cracklib-dicts
cron
cronie
crontabs
cryptsetup-libs
cryptsetup-luks
csync2
CTools (drupal)
cups
cvs
d3 (drupal)
dash
dbus
dbus-glib
dbus-libs
debian-archive-keyring
debianutils
desktop-file-utils
device-mapper
device-mapper-libs
device-mapper-multipath
dialog
dictionaries-common
diffutils
discover
dmidecode
dmsetup
dnsmasq
dpkg
dracut
Drafty (Drupal)
drbd83-kmod
drbd83-utils
Drupal
drupal_helpers (drupal)
drush_language (drupal)
e2fslibs
e2fslibs:amd64
e2fsprogs
ebtables
ed
eggdbus
eject
ejectorseat (drupal)
elfutils
entity (drupal)
Entity API (drupal)
Entity Reference (drupal)
ethtool
FAQ (drupal)
faq.html
Farbtastic
ffmpeg-spice
field_group (drupal)
filesystem
findutils
fipscheck
Fivestar (drupal)
Flag (Drupal)
flood_control
follow
Font Awesome4.1.0
Font-Awesome
forum_access
frameprevention (drupal)
gamin
gawk
gcc
gcc-4.7-base
gcc-5-base
gcc-6-base
gdb
gdbm
geoip-database
gettext
gettext-base
git
git-core
git-man
glib2
glibc
glibc-common
gmp
GNU Libtool
gnupg
gnupg2
gnutls
gobject-introspection
gpgme
gpgv
gpm
gpxe
grep
groff
groff-base
Group (drupal)
grub
grub2-common
grubby
grub-common
grub-pc
grub-pc-bin
gtfs
gtk2
gzip
Hibernate
hicolor-icon-theme
hide_submit (Drupal)
Hierachical Select (Drupal)
hierarchical_select
hierarchical_select (drupal)
hostname
Htmlmail (drupal)
httprl (drupal)
hwdata
hybridauth (drupal)
hybridauth library
i18n (drupal)
ifupdown
igb-kmod
Image CAPTCHA Refresh (drupal)
Images
IMCE
IMCE (drupal)
imce_wysiwyg
imce_wysiwyg (drupal)
index-debug.html
inetutils-ping
info
init
initramfs-tools
initscripts
init-system-helpers
insserv
installation-report
install-info
iproute
iproute2
iptables
iputils
iputils-ping
ipvsadm
irqbalance
iscsi-initiator-utils
iso-codes
ixgbe-kmod
java-common
jq
jQuery Update (drupal)
JSONSelect site
kbd
kernel
kexec-tools
keyboard-configuration
keyutils
keyutils-libs
klibc-utils
kmod
kmod-libs
kpartx
l10n_update
l10n_update (drupal)
LDAP (drupal)
legal (drupal)
less
libacl
libacl1
libacl1:amd64
libaio
libaio1
libaio-devel
libapparmor1
libapt-inst1.5
libapt-pkg4.12
libapt-pkg4.12:amd64
libapt-pkg5.0
libart_lgpl
libasprintf0c2
libasprintf0c2:amd64
libassuan
libasyncns
libatm1
libattr
libattr1
libattr1:amd64
libaudit1
libaudit1:amd64
libaudit-common
libavahi-common-data:amd64
libblkid
libblkid1
libblkid1:amd64
libbz2-1.0
libbz2-1.0:amd64
libc6
libc6:amd64
libcap2
libcap2-bin
libcap-ng
libc-bin
libcgroup
libclass-isa-perl
libcmpiutil
libcomerr2
libcryptsetup4
libcryptsetup4:amd64
libcwidget3
libdb5.1
libdb5.1:amd64
libdbd-mysql-perl
libdbi-perl
libdb-utils
libdevmapper1.02.1
libdevmapper1.02.1:amd64
libdevmapper-event1.02.1
libdiscover2
libept1.4.12
liberror-perl
libestr0
libev4
libfdisk1
libfile-copy-recursive-perl
libfreetype6
libfreetype6:amd64
libfuse2
libgcc1
libgcc1:amd64
libgcrypt
libgcrypt11
libgcrypt11:amd64
libgcrypt20
libgcrypt20:amd64
libgd2-xpm
libgd2-xpm:amd64
libgd3
libgdbm3
libgdbm3:amd64
libgeoip1
libgeoip1:amd64
libglib
libglib2.0-0
libglib2.0-data
libgmp10
libgmp10:amd64
libgnutls2
libgnutls26:amd64
libgnutls30
libgnutls-openssl27
libgnutls-openssl27:amd64
libgpg-error
libgpg-error0
libgpg-error0:amd64
libgpm2
libhogweed2:amd64
libhogweed4
libhtml-template-perl
libidn
libidn11
libidn11:amd64
libjbig0
libjbig0:amd64
libjpeg8
libjpeg-turbo
libkeyutils1
libkeyutils1:amd64
libklibc
libkmod2
libkmod2:amd64
liblcms2-2:amd64
liblocale-gettext-perl
libltdl7
libltdl7:amd64
liblz4-1
liblzma5
liblzma5:amd64
libmariadbclient18
libmcrypt4
libmnl
libmnl0
libmount
libmount1
libmount1:amd64
libmverbs
libmysqlclient18
libmysqlclient20
libnetfilter_conntrack
libnettle4:amd64
libnettle6
libnewt0.52
libnfnetlink
libnfnetlink0
libnih
libnl
libnspr4:amd64
libnuma1
libopts25
libp11-kit0
libp11-kit0:amd64
libpam0g
libpam0g:amd64
libpam-modules
libpam-modules:amd64
libpam-modules-bin
libpam-runtime
libpci3
libpci3:amd64
libperconaserverclient18.1
libperl5.22
libpipeline1
libpipeline1:amd64
libpng12-0
libpng12-0:amd64
libpopt0
libpopt0:amd64
libprocps0
libprocps0:amd64
libprocps3:amd64
libprocps4
libqdbm14
Libraries API (drupal)
libreadline5
libreadline5:amd64
libreadline6
libreadline6:amd64
librsync1
librsync1:amd64
librtmp0
librtmp0:amd64
librtmp1
librtmp1:amd64
libsasl2-2
libsasl2-2:amd64
libsasl2-modules
libsasl2-modules:amd64
libsasl2-modules-db
libseccomp2
libselinux
libselinux1
libselinux1:amd64
libsemanage
libsemanage1
libsemanage1:amd64
libsemanage-common
libsepol
libsepol1
libsepol1:amd64
libsigc++-2.0-0c2a
libsigc++-2.0-0c2a:amd64
libsigsegv2
libslang2
libslang2:amd64
libsmartcols1
libsmartcols1:amd64
libsndfile
libss
libss2
libss2:amd64
libstdc++
libstdc++6
libstdc++6:amd64
libswitch-perl
libsystemd0
libsystemd0:amd64
libt
libt1-5
libtasn1
libtasn1-3
libtasn1-3:amd64
libtasn1-6
libtasn1-6:amd64
libtext-charwidth-perl
libtext-iconv-perl
libtext-wrapi18n-perl
libthai
libtool
libudev0
libudev0:amd64
libudev1
libudev1:amd64
libusb
libusb-0.1-4
libusb-0.1-4:amd64
libuser
libustr-1.0-1
libustr-1.0-1:amd64
libutempter
libuuid1
libuuid1:amd64
libuuid-perl
libvirt
libvirt-cim
libvpx1:amd64
libxapian22
libxtables11
linkchecker (drupal)
linkit
linkit (drupal)
linkit_picker
linkit_picker (drupal)
linux-base
linux-image-3.2.0
lksctp-tools
lm_sensors
locales
login
logrotate
lsb-base
lsb-release
lsof
lsyncd
lvm2
lzo
lzop
m4
Mailsystem (drupal)
make
MAKEDEV
man
man-db
manpages
mariadb-client-5.5
mariadb-client-core-5.5
mariadb-common
mariadb-galera-server
mariadb-galera-server-5.5
markdown (drupal)
material-design-icons
material-design-icons-iconfont
mawk
mdadm
megaraid_sas-kmod
menu_item_visibility (drupal)
messaging (drupal)
metatag (drupal)
microcode_ctl
mime-support
mingetty
module-init-tools
motif
mount
mptlinux-kmod
multiarch-support
mysql
mysql-common
nano
netbase
netcat-traditional
netcf
net-tools
newt
nfs-utils
nginx
nginx-common
nginx-full
nmap
no_autocomplete (drupal)
node_clone (drupal)
notifications (drupal)
notifications_forum (drupal)
nss-pam-ldapd
ntp
ntpdate
numactl
numad
ocfs2-tools
ofa_kernel
OpenIPMI
openjdk-8-jre-headless:amd64
openssh-blacklist
openssh-blacklist-extra
openssh-client
openssh-server
openssh-sftp-server
oprofile
os-prober
pam
pam_ldap
Panels (drupal)
pango
parted
passwd
Password policy (drupal)
patch
Pathologic (drupal)
PCD
pciutils
Percona XtraDB Cluster
percona-xtrabackup
Percona-XtraDB-Cluster
percona-xtradb-cluster-client-5.6
percona-xtradb-cluster-common-5.6
percona-xtradb-cluster-galera-3
percona-xtradb-cluster-galera-3.x
perl
perl-base
perl-modules
perl-modules-5.22
PHP SAML2
phpmailer
PHPMailer (drupal)
pinentry
pkgconfig
pkg-config
plymouth
pm-utils
polkit
portreserve
prelink
procmail
procps
procps-ng
psmisc
pth
pulseaudio
pygobject3-base
pygpgme
pyliblzma
python
python2.7
python2.7-minimal
python-apt
python-apt-common
python-chardet
python-gnupginterface
python-kitchen
python-minimal
python-pycurl
python-software-properties
python-support
python-urlgrabber
pyxattr
qemu-kvm
qrencode-libs
readline
readline-common
rename
restrict_by_ip (drupal)
restws (drupal)
rng-tools
rpm
rpm-build-libs
rpm-libs
rpm-python
rsync
rsyslog
Rules_http_client (drupal)
scsi-target-utils
seabios
search_autocomplete (drupal)
search_config (drupal)
search404 (drupal)
seckit (drupal)
security_questions (drupal)
sed
seek-bzip
sensible-utils
session_limit (drupal)
sgml-base
shadow-utils
shared-mime-info
sharutils
Simple Dialog
simplesamlphp
simplesamlphp_auth (drupal)
site_test (drupal)
site_test_helpers (drupal)
slang
slick (drupal)
slick_extras (drupal)
slick_views (drupal)
socat
SPDX specification
spdx-exceptions(Node)1.0.3
spdx-exceptions(Node)1.0.4
spdx-exceptions(Node)1.0.5
spdx-expression-parse (node)
spice-server
ssh-import-id
sshpass
ssmtp
startpar
StatsD (drupal)
stickynav (drupal)
Support Ticketing System (drupal)
swig
sysfsutils
syslog-ng
sysstat
systemd
systemd-libs
systemd-sysv
sysvinit
sysvinit-utils
sysv-rc
TagCloud (drupal)
tar
tar-static
tasksel
tasksel-data
taxonomy_menu
taxonomy_menu (drupal)
taxonomy_menu_block (drupal)
texinfo
tfa
tfa (drupal)
tfa_basic
tfa_basic (drupal)
time
tinyMCE
tmpreaper
Token (Drupal)
traceroute
Translation helpers (drupal)
transliteration (drupal)
trustedgrub
tunctl
Twitter Timeline (drupal)
ubuntu-keyring
ucf
udev
ufw
Ulimate Cron (Drupal)
unattended-upgrades
underscore.js (drupal)
unixODBC
update-inetd
upstart
user_pwreset_timeout (Drupal)
usersearchtoadmin (Drupal)
ustr
util-linux
util-linux-locales
util-linux-ng
Variable (drupal)
vgabios
Views (drupal)
Views data export (Drupal)
Views_bulk_operations (drupal)
views_send (drupal)
vim
vim-minimal
Voting API (drupal)
VPPR (drupal)
wget
which
whiptail
workbench (drupal)
workbench_moderation (drupal)
Wysiwig (drupal)
x11-common
xautoload (drupal)
xdg-user-dirs
xml-core
xmlto
xpath.js
xtrabackup
xz
xz-utils
yum
yum-metadata-parser
yum-plugin-fastestmirror
yum-plugin-ovl
yum-utils
The Program includes some or all of the following licensed to you as Separately Licensed Code under the GNU General Public License version 2.
Acl,acpi,acpid,acpi-support,adaptivetheme (drupal),addressfield (drupal),AddToAny (drupal),adduser,admin_menu (drupal),adminimal_admin_menu (drupal),adminimal_theme (drupal),advagg (drupal),Advanced Forum (drupal),Advanced syslog (drupal),alpha_pagination,apt,aptitude,aptitude-common,apt-transport-https,apt-utils,AT Tools (drupal),audit-libs,Automated Logout (drupal),base-files,base-passwd,Bean (drupal),better_exposed_filters (drupal...,bind9-host,binutils,Block Class (drupal),Block Class Styles (drupal),BOA,bsdutils,ca-certificates,CAPTCHA (Drupal),chain_menu_access,chkconfig,console-setup,content_access (drupal),context (drupal),cpio,cron,csync2,CTools (drupal),d3 (drupal),dash,dbus,dbus-libs,debian-archive-keyring,debianutils,dictionaries-common,discover,dmidecode,dmsetup,dpkg,Drafty (Drupal),Drupal,drupal_helpers (drupal),drush_language (drupal),e2fslibs,e2fslibs:amd64,e2fsprogs,eject,ejectorseat (drupal),entity (drupal),Entity API (drupal),Entity Reference (drupal),FAQ (drupal),Farbtastic,field_group (drupal),findutils,fipscheck,Fivestar (drupal),Flag (Drupal),flood_control,follow,forum_access,frameprevention (drupal),gettext-base,git,git-core,git-man,glibc,glibc-common,Group (drupal),hide_submit (Drupal),Hierachical Select (Drupal),hierarchical_select,hierarchical_select (drupal),hostname,Htmlmail (drupal),httprl (drupal),hybridauth (drupal),i18n (drupal),ifupdown,Image CAPTCHA Refresh (drupal),IMCE,imce_wysiwyg,initramfs-tools,initscripts,insserv,installation-report,iproute,iproute2,iptables,iputils,iputils-ping,java-common,jq,jQuery Update (drupal),kbd,keyboard-configuration,klibc-utils,kmod,kpartx,l10n_update,LDAP (drupal),legal (drupal),libapt-inst1.5,libapt-pkg4.12,libapt-pkg4.12:amd64,libapt-pkg5.0,libaudit1,libaudit1:amd64,libaudit-common,libblkid1,libblkid1:amd64,libbz2-1.0,libbz2-1.0:amd64,libc6,libcap2,libcap2-bin,libcap-ng,libc-bin,libclass-isa-perl,libcomerr2,libcryptsetup4,libcryptsetup4:amd64,libcwidget3,libdb5.1,libdbd-mysql-perl,libdbi-perl,libdevmapper1.02.1,libdevmapper-event1.02.1,libdiscover2,libev4,libfdisk1,libfuse2,libgcrypt11,libgd2-xpm,libgd3,libgdbm3,libgdbm3:amd64,libgpm2,libhtml-template-perl,libjbig0,libjbig0:amd64,libjpeg-turbo,libkeyutils1,libklibc,libkmod2,liblcms2-2:amd64,liblocale-gettext-perl,libltdl7,liblz4-1,libmariadbclient18,libmnl0,libmount1,libmount1:amd64,libmysqlclient18,libmysqlclient20,libnetfilter_conntrack,libnettle4:amd64,libnfnetlink,libnih,libp11-kit0,libp11-kit0:amd64,libpci3,libperconaserverclient18.1,libpng12-0,libpopt0,libprocps0,libprocps3:amd64,libqdbm14,Libraries API (drupal),libreadline5,libreadline6,librtmp0,libselinux,libselinux1,libselinux1:amd64,libsemanage1,libsemanage-common,libsepol1,libsigsegv2,libslang2,libsmartcols1,libsmartcols1:amd64,libss,libss2,libss2:amd64,libswitch-perl,libt,libt1-5 ,libtext-charwidth-perl,libtext-iconv-perl,libtext-wrapi18n-perl,libudev0,libudev1,libustr-1.0-1,libuuid1,libuuid-perl,libxapian22,libxtables11,linkchecker (drupal),linkit,linkit_picker,linux-base,linux-image-3.2.0,locales,login,logrotate,lsb-base,lsb-release,lsof,lsyncd,lvm2,Mailsystem (drupal),make,man-db,manpages,mariadb-client-5.5,mariadb-client-core-5.5,mariadb-common,mariadb-galera-server,mariadb-galera-server-5.5,markdown (drupal),mawk,menu_item_visibility (drupal),messaging (drupal),metatag (drupal),mime-support,module-init-tools,mount,multiarch-support,mysql-common,netbase,netcat-traditional,net-tools,nginx,nginx-common,nginx-full,no_autocomplete (drupal),node_clone (drupal),notifications (drupal),notifications_forum (drupal),ntpdate,openjdk-8-jre-headless:amd64,openssh-blacklist,openssh-blacklist-extra,openssh-sftp-server,os-prober,pam,Panels (drupal),passwd,Password policy (drupal),patch,Pathologic (drupal),pciutils,percona-xtrabackup,Percona-XtraDB-Cluster,percona-xtradb-cluster-client-5.6,percona-xtradb-cluster-common-5.6,percona-xtradb-cluster-galera-3,percona-xtradb-cluster-galera-3.x,perl,perl-base,perl-modules,perl-modules-5.22,PHPMailer (drupal),pinentry,pkgconfig,procps,psmisc,python,python2.7,python2.7-minimal,python-apt,python-apt-common,pytho
n-gnupginterface,python-minimal,python-software-properties,python-support,readline-common,restrict_by_ip (drupal),restws (drupal),rpm,rpm-build-libs,rpm-libs,rpm-python,Rules_http_client (drupal),search_autocomplete (drupal),search_config (drupal),search404 (drupal),seckit (drupal),security_questions (drupal),sed,sensible-utils,session_limit (drupal),sgml-base,shared-mime-info,Simple Dialog,simplesamlphp_auth (drupal),site_test (drupal),site_test_helpers (drupal),slick (drupal),slick_extras (drupal),slick_views (drupal),socat,sshpass,startpar,StatsD (drupal),stickynav (drupal),Support Ticketing System (drupal),syslog-ng,sysvinit,sysvinit-utils,sysv-rc,TagCloud (drupal),tar,tasksel,tasksel-data,taxonomy_menu,taxonomy_menu_block (drupal),tfa,tfa_basic,tmpreaper,Token (Drupal),traceroute,Translation helpers (drupal),transliteration (drupal),Twitter Timeline (drupal),ubuntu-keyring,ucf,Ulimate Cron (Drupal),unattended-upgrades,underscore.js (drupal),update-inetd,upstart,user_pwreset_timeout (Drupal),usersearchtoadmin (Drupal),ustr,util-linux,util-linux-locales,Variable (drupal),Views (drupal),Views data export (Drupal),Views_bulk_operations (drupal),views_send (drupal),vim-minimal,Voting API (drupal),VPPR (drupal),wget,workbench (drupal),workbench_moderation (drupal),Wysiwig (drupal),x11-common,xautoload (drupal),xdg-user-dirs,xml-core,xtrabackup,yum,yum-metadata-parser,yum-plugin-fastestmirror,yum-plugin-ovl,yum-utils
Note: Source code to any of the above-listed packages is available upon written request to the following address: IBM Corporation, Dept. QX3A, 3039 Cornwallis Rd., Research Triangle Park NC 27709. Identify the IBM product and the GPL-licensed program for which you are requesting the source code.
=========================================================
The Program includes some or all of the following licensed to you as Separately Licensed Code under the GNU Lesser General Public License version 2.1.
aaa_base,acl,attr,bash,bc,bind,busybox,c3p0,coreutils,device-mapper,dialog,dmidecode,drbd,e2fsprogs,ethtool,filesystem,fillup,gawk,gdb,gdbm,git,git-core,git-man,glib2,glibc,gmp,gobject-introspection,grep,grub,gzip,hibernate,insserv,iproute2,iptables,ipvsadm,iso-codes,kernel,kexec-tools,keyutils,kmod,libacl,libacl1,libacl1:amd64,libaio1,libasprintf0c2:amd64,libatm1,libattr1,libattr1:amd64,libblkid,libc6,libc6:amd64,libc-bin,libdevmapper1.02.1,libdevmapper-event1.02.1,libept1.4.12,libestr0,libgcrypt11,libgcrypt20,libgcrypt20:amd64,libgeoip1:amd64,libgnutls26,libgnutls-openssl27,libgpg-error,libgpg-error0,libgpg-error0:amd64,libhogweed2:amd64,libhogweed4,libidn11,libjpeg8,libkmod2,liblzma5,libmnl,libnettle6,libnl,libnuma1,libqdbm14,librsync1,librtmp0,libsemanage1,libsemanage-common,libsepol,libsepol1,libsepol1:amd64,libsigc++-2.0-0c2a,libslang2:amd64,libstdcxx-compat,libsystemd0:amd64,libtasn1-3,libtasn1-6,libudev0,libusb,libusb-0.1-4:amd64,libustr-1.0-1,locales,logrotate,lvm2,mdadm,mingetty,module-init-,module-init-tools,multiarch-support,multipath-tools,netcfg,net-tools,numactl,open-iscsi,pam,pam_ldap,PCD,PHP SAML2,phpmailer,procps,psmisc,pygpgme,python-kitchen,python-pycurl,python-urlgrabber,readline,rpm,sed,seek-bzip,sharutils,simplesamlphp,strongswan,sysfsutils,sysstat,systemd,systemd-libs,systemd-sysv,termcap,tinyMCE,tools,traceroute,trustedgrub,udev,update-desktop-files,util-linux,vlan,wodim,xz-utils
Note: Source code to any of the above-listed packages is available upon written request to the following address: IBM Corporation, Dept. QX3A, 3039 Cornwallis Rd., Research Triangle Park NC 27709. Identify the IBM product and the LGPL-licensed program for which you are requesting the source code.
=========================================================
This product contains certain code packages that are licensed pursuant to the terms of the GNU General Public License ("GPL") and/or the GNU Lesser General Public License ("LGPL"). Those terms are reproduced below for your reference. The code packages that are licensed under the GPL or LGPL version 2 include:
cracklib,cracklib-dicts,cryptsetup-libs,debianutils,device-mapper,device-mapper-libs,dracut,elfutils-libelf,elfutils-libs,geoip-database,gpgme,keyutils-libs,kmod-libs,libaio,libaio-devel,libapparmor1,libattr,libavahi-common-data:amd64,libdb-utils,libdevmapper1.02.1:amd64,libfuse2,libgcrypt,libgeoip1,libgeoip1:amd64,libglib,libglib2.0-0,libglib2.0-data,libgmp10,libgmp10:amd64,libkeyutils1,libkeyutils1:amd64,libkmod2,libkmod2:amd64,liblocale-gettext-perl,libmcrypt4,libmount,libnewt0.52,libprocps0,libprocps4,librtmp1,librtmp1:amd64,libseccomp2,libsemanage,libsemanage1:amd64,libsemanage-common,libsystemd0,libudev1:amd64,libusb-0.1-4,libuser,libustr-1.0-1:amd64,libutempter,motif,multiarch-support,procps,procps-ng,pth,pygobject3-base,python-chardet,pyxattr,qrencode-libs,systemd,systemd-sysv,udev,whiptailil
Note: Source code to any of the above-listed packages is available upon written request to the following address:
IBM Corporation
Linux Technology Center, Dept. 7UDA
11501 Burnet Road
Austin, TX 78758
=========================================================
The code packages that are licensed under the GPL or LGPL version 3 include:
Ansible,autogen,autogen-libopts,bash,bind9-host,busybox,coreutils,cpio,diffutils,dpkg,findutils,gawk,gcc-4.7-base,gcc-5-base,gcc-6-base,gdbm,glib2,gmp,gnupg,gnupg2,gpgv,grep,groff-base,grub2-common,grub-common,grub-pc,grub-pc-bin,gzip,hybridauth library,inetutils-ping,info,init,init-system-helpers,install-info,less,libasprintf0c2,libassuan,libattr,liberror-perl,libfile-copy-recursive-perl,libfreetype6,libfreetype6:amd64,libgcc1,libgnutls26,libgnutls30,libgnutls-openssl27,libidn,libidn11,liblzma5,libnfnetlink0,libnspr4:amd64,libopts25,libpam0g,libpam0g:amd64,libpam-modules,libpam-modules:amd64,libpam-modules-bin,libpam-runtime,libpipeline1,libreadline5,libreadline6,libreadline6:amd64,libsasl2-2,libsasl2-modules,libsasl2-modules-db,libstdc++,libstdc++6,libstdc++6:amd64,libstdcxx,libtasn1,libtasn1-3,libtasn1-6:amd64,man-db,nano,ntp,openssh-client,openssh-server,percona-xtrabackup,pyliblzma,python-software-properties,readline,readline-common,rsync,rsyslog,sed,socat,ssh-import-id,tar,ufw,wget,xtrabackup,xz,xz-utils
Note: Source code to any of the above-listed packages is available upon written request to the following address:
IBM Corporation
Linux Technology Center, Dept. 7UDA
11501 Burnet Road
Austin, TX 78758
=========================================================
The icons that are licensed under the Creative Commons Attribution 2.5 license include :
silk/star.png
silk/readme.txt
silk/magnifier.png
silk/heart.png
silk/exclamation.png
silk/error.png
silk/delete.png
silk/accept.png
=========================================================
The icon packages that are listed under the SIL Open Font License include :
Font-Awesome
material-design-icons
=========================================================
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Creative Commons License CC by 3.0
The Program includes some or all of the following works licensed under
the Creative Commons CC by 3.0 License.
spdx-exceptions(Node)1.0.3, Kyle E. Mitchell, https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-1.0.3.tgz
spdx-exceptions(Node)1.0.4, Kyle E. Mitchell, https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-1.0.4.tgz
spdx-exceptions(Node)1.0.5, Kyle E. Mitchell, https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-1.0.5.tgz
Font Awesome4.1.0, Dave Gandy, https://github.com/nomiddlename/log4js-node/releases/tag/v0.6.26
binary_heap.js, (C) Marijn Haverbeke, http://eloquentjavascript.net/1st_edition/appendix2.html
JSONSelect site, Lloyd Hilaiel <[email protected]>, https://registry.npmjs.org/JSONSelect/-/JSONSelect-0.4.0.tgz|
index-debug.html, Google, Inc., https://code.angularjs.org/1.2.0rc1/angular-1.2.0rc1.zip
spdx-expression-parse(node)1.0.4, Kyle E. Mitchell, https://github.com/kemitchell/spdx-expression-parse.js/archive/v1.0.4.tar.gz
End of Creative Commons License NOTICES AND INFORMATION
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Creative Commons License CC by 4.0
The Program includes some or all of the following works licensed under
the Creative Commons CC by 4.0 License.
caniuse-db(node) Alexis Deveria https://github.com/Fyrd/caniuse/tree/798250b18f61bf8763dbe9a1c4cacb27ba8e3457
material-design-icons-iconfont
End of Creative Commons License NOTICES AND INFORMATION
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Creative Commons License CC by SA 2.0
The Program includes some or all of the following works licensed under
the Creative Commons CC by SA 2.0 License.
xpath.js 1.0.3, Cameron McCormack, https://github.com/yaronn/xpath.js.git
End of Creative Commons License NOTICES AND INFORMATION
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Creative Commons Attribution-ShareAlike 3.0
The Program includes some or all of the following works licensed under
the Creative Commons Attribution-ShareAlike 3.0 License.
commons.wikimedia, jQuery Foundation, http://commons.wikimedia.org/wiki/Main_Page
angular.js/images/logo, Google, Inc., https://github.com/angular/angular.js/tree/master/images/logo
faq.html, Google, Inc., https://code.angularjs.org/1.2.0rc1/angular-1.2.0rc1.zip
Images, jQuery Foundation and other contributors, https://github.com/jquery/jquery-ui/tree/1.10.4
SPDX specification, Kyle E. Mitchell, https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-1.0.2.tgz
gtfs, Daniel Wirtz, https://github.com/dcodeIO/ProtoBuf.js
End of Creative Commons License NOTICES AND INFORMATION
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Unique License
optjs (node) 3.2.1-boom
NASA OPEN SOURCE AGREEMENT VERSION 1.3
THIS OPEN SOURCE AGREEMENT ("AGREEMENT") DEFINES THE RIGHTS OF USE,
REPRODUCTION, DISTRIBUTION, MODIFICATION AND REDISTRIBUTION OF CERTAIN
COMPUTER SOFTWARE ORIGINALLY RELEASED BY THE UNITED STATES GOVERNMENT AS
REPRESENTED BY THE GOVERNMENT AGENCY LISTED BELOW ("GOVERNMENT AGENCY").
THE UNITED STATES GOVERNMENT, AS REPRESENTED BY GOVERNMENT AGENCY, IS AN
INTENDED THIRD-PARTY BENEFICIARY OF ALL SUBSEQUENT DISTRIBUTIONS OR
REDISTRIBUTIONS OF THE SUBJECT SOFTWARE. ANYONE WHO USES, REPRODUCES,
DISTRIBUTES, MODIFIES OR REDISTRIBUTES THE SUBJECT SOFTWARE, AS DEFINED
HEREIN, OR ANY PART THEREOF, IS, BY THAT ACTION, ACCEPTING IN FULL THE
RESPONSIBILITIES AND OBLIGATIONS CONTAINED IN THIS AGREEMENT.
Government Agency: _____________________________________
Government Agency Original Software Designation: ______________
Government Agency Original Software Title: ____________________
User Registration Requested. Please Visit http://__________________
Government Agency Point of Contact for Original Software: ___________________ ________________________________________________
1. DEFINITIONS
A. "Contributor" means Government Agency, as the developer of the
Original Software, and any entity that makes a Modification. B.
"Cover|ed Patents" mean patent claims licensable by a Contributor |that
are necessarily infringed by the |use or sale of its Modification alone
or when combined with the Subject Software. C. "Display" means the
showing of a copy of the Subject Software, either directly or by means
of an image, or any other device. D. "Distribution" means conveyance or
transfer of the Subject Software, regardless of means, to another. E.
"Larger Work" means computer software that combines Subject Software, or
portions thereof, with software separate from the Subject Software that
is not governed by the terms of this Agreement. F. "Modification" means
any alteration of, including |addition to or deletion from, the
substance or structure of either the Original |Software or Subject
Software, and includes derivative works, as that term is defined in the
Copyright Statute, 17 USC 101. However, the act of including Subject
Software as part of a Larger Work does not in and of itself constitute a
Modification. G. "Original Software" means the computer software first
released under this Agreement by Government Agency with Government
Agency designation ______________ and entitled
_____________________________________________, |including source code,
object code and |accompanying documentation, if any. H. "Recipient"
means anyone who acquires the Subject Software |under this Agreement,
including all Contributors. |I. "Redistribution" means Distribution of
the Subject Software after a Modification has been made. J.
"Reproduction" means the making of a counterpart, image or copy of the
Subject Software. K. "Sale" means the exchange of the Subject Software
for money or equivalent value. L. "Subject Software" means the Original
Software, Modifications, or any respective parts thereof. M. "Use" means
the application or employment of the Subject Software for any purpose.
2. GRANT OF RIGHTS
A. Under Non-Patent Rights: |Subject to the terms and conditions of this
|Agreement, each Contributor, with respect to its own contribution to
the Subject Software, hereby grants to each |Recipient a non-exclusive,
world-wide, royalty-free |license to engage in the following activities
pertaining to the Subject Software:
1. Use
2. Distribution
3. Reproduction
4. Modification
5. Redistribution
6. Display
B. Under Patent Rights: |Subject to the terms and conditions of this
|Agreement, each Contributor, with respect to its own contribution to
the Subject Software, hereby grants to each Recipient under Covered
Patents |a non-exclusive, world-wide, royalty-free license |to engage in
the following activities pertaining to the Subject Software:
1. Use
2. Distribution
3. Reproduction
4. Sale
5. Offer for Sale
C. The rights granted under Paragraph B. also apply to the combination
of a Contributor's Modification and the Subject Software if, at the time
the Modification is added by the Contributor, the addition of such
Modification causes the combination to be covered by the Covered
Patents. It does not apply to any other combinations that include a
Modification.
D. The rights granted in Paragraphs A. and B. allow the Recipient to
sublicense those same rights. Such sublicense must be under the sam|e
terms and conditions of this Agreement.
3. |OBLIGATIONS OF RECIPIENT
A. Distribution or Redistribution of the Subject Software must be made under this Agreement except for additions covered under paragraph 3H.
1. Whenever a Recipient distributes or redistributes the Subject
Software, |a copy of this Agreement must be included with each copy of
the |Subject Software; and 2. If Recipient distributes or redistributes
the Subject |Software in any form other than source code, |Recipient
must also make the source code freely available, and must provide with
each copy of the Subject Software information on how to obtain the
source code |in a reasonable manner on or through a medium customarily
used for software exchange.
|B. Each Recipient must ensure that the following copyright notice
appears prominently in the Subject Software:
[Government Agency will insert the applicable copyright notice in each
agreement accompanying the initial distribution of original software and
remove this bracketed language.]
[The following copyright notice will be used if created by a contractor
pursuant to Government Agency contract and rights obtained from creator
by assignment. Government Agency will insert the year and its Agency
designation and remove the bracketed language.] Copyright " {YEAR}
United States Government as represented by ______