-
Notifications
You must be signed in to change notification settings - Fork 26
/
non_ibm_license.txt
2863 lines (2336 loc) · 242 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:
aajohan-comfortaa-fonts
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
bash-completion
bc
Bean (drupal)
better_exposed_filters (drupal...
binary_heap.js
bind
bind9-host
binutils
Block Class (drupal)
Block Class Styles (drupal)
BOA
bridge-utils
bsdmainutils
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
coreutils-common
cpio
cracklib
cracklib-dicts
cron
cronie
crontabs
crypto-policies
cryptsetup-libs
cryptsetup-luks
csync2
CTools (drupal)
cups
cvs
d3 (drupal)
dash
dbus
dbus-glib
dbus-libs
debconf
debconf-i18n
debian-archive-keyring
debianutils
desktop-file-utils
device-mapper
device-mapper-libs
device-mapper-multipath
dialog
dictionaries-common
diffutils
discover
discover-data
dmidecode
dmsetup
dnf
dnf-conf
dnf-plugins-core
dnf-yum
dnsmasq
dnsutils
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
elfutils-default-yama-scope
emacs-filesystem
entity (drupal)
Entity API (drupal)
Entity Reference (drupal)
erlang-asn1
erlang-compiler
erlang-crypto
erlang-erts
erlang-hipe
erlang-inets
erlang-kernel
erlang-mnesia
erlang-os_mon
erlang-otp_mibs
erlang-public_key
erlang-runtime_tools
erlang-sasl
erlang-snmp
erlang-ssl
erlang-stdlib
erlang-syntax_tools
erlang-tools
erlang-xmerl
ethtool
FAQ (drupal)
faq.html
Farbtastic
ffmpeg-spice
field_group (drupal)
file
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-all-langpacks
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
guile
gzip
hawkey
Hibernate
hicolor-icon-theme
hide_submit (Drupal)
Hierachical Select (Drupal)
hierarchical_select
hierarchical_select (drupal)
highlight.js
hostname
Htmlmail (drupal)
httprl (drupal)
hwdata
hybridauth (drupal)
hybridauth library
i18n (drupal)
iamerican
ibritish
ienglish-common
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
ispell
ixgbe-kmod
java-common
jq
jQuery Update (drupal)
js
jsmin
JSONSelect site
kbd
kernel
kexec-tools
keyboard-configuration
keyutils
keyutils-libs
klibc-utils
kmod
kmod-libs
kpartx
krb5-locales
l10n_update
l10n_update (drupal)
laptop-detect
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
libatomic_ops
libattr
libattr1
libattr1:amd64
libaudit1
libaudit1:amd64
libaudit-common
libavahi-common-data:amd64
libbind9-80
libblkid
libblkid1
libblkid1:amd64
libbsd0:amd64
libbz2-1.0
libbz2-1.0:amd64
libc6
libc6:amd64
libcap2
libcap2-bin
libcap-ng
libc-bin
libc-client2007e
libcgroup
libclass-isa-perl
libcmpiutil
libcomerr2
libcomps
libcryptsetup4
libcryptsetup4:amd64
libcurl3:amd64
libcurl3-gnutls: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
libdns88
libedit2:amd64
libept1.4.12
liberror-perl
libestr0
libev4
libevent
libexpat1:amd64
libfdisk
libfdisk1
libffi
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
libgssapi-krb5-2:amd64
libhogweed2:amd64
libhogweed4
libhtml-template-perl
libidn
libidn11
libidn11:amd64
libisc84
libisccc80
libisccfg82
libjbig0
libjbig0:amd64
libjpeg8
libjpeg-turbo
libk5crypto3:amd64
libkeyutils1
libkeyutils1:amd64
libklibc
libkmod2
libkmod2:amd64
libkrb5-3:amd64
libkrb5support0:amd64
libksba
liblcms2-2:amd64
liblocale-gettext-perl
libltdl7
libltdl7:amd64
liblua5.1-0:amd64
liblwres80
liblz4-1
liblzma5
liblzma5:amd64
libmagic1:amd64
libmariadbclient18
libmcrypt4
libmetalink
libmnl
libmnl0
libmount
libmount1
libmount1:amd64
libmverbs
libmysqlclient18
libmysqlclient20
libncurses5:amd64
libncursesw5:amd64
libnetfilter_conntrack
libnettle4:amd64
libnettle6
libnewt0.52
libnfnetlink
libnfnetlink0
libnghttp2
libnih
libnl
libnspr4:amd64
libnuma1
libonig2
libopts25
libp11-kit0
libp11-kit0:amd64
libpam0g
libpam0g:amd64
libpam-modules
libpam-modules:amd64
libpam-modules-bin
libpam-runtime
libpci3
libpci3:amd64
libpcre3:amd64
libperconaserverclient18.1
libperl5.22
libphp5-embed
libpipeline1
libpipeline1:amd64
libpng12-0
libpng12-0:amd64
libpopt0
libpopt0:amd64
libprocps0
libprocps0:amd64
libprocps3:amd64
libprocps4
libpsl
libqdbm14
Libraries API (drupal)
libreadline5
libreadline5:amd64
libreadline6
libreadline6:amd64
librepo
libreport-filesystem
librsync1
librsync1:amd64
librtmp0
librtmp0:amd64
librtmp1
librtmp1:amd64
libsasl2-2
libsasl2-2:amd64
libsasl2-modules
libsasl2-modules:amd64
libsasl2-modules-db
libseccomp
libseccomp2
libsecret
libselinux
libselinux1
libselinux1:amd64
libsemanage
libsemanage1
libsemanage1:amd64
libsemanage-common
libsepol
libsepol1
libsepol1:amd64
libsigc++-2.0-0c2a
libsigc++-2.0-0c2a:amd64
libsigsegv
libsigsegv2
libslang2
libslang2:amd64
libsmartcols1
libsmartcols1:amd64
libsndfile
libsqlite0
libsqlite3-0:amd64
libss
libss2
libss2:amd64
libssh2-1:amd64
libssl1.0.0:amd64
libsss_idmap
libsss_nss_idmap
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
libtinfo5:amd64
libtool
libtool-ltdl
libudev0
libudev0:amd64
libudev1
libudev1:amd64
libunistring
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
libvpx
libvpx1:amd64
libwrap0:amd64
libx11-6:amd64
libx11-data
libxapian22
libxau6:amd64
libxcb1:amd64
libxdmcp6:amd64
libxext6:amd64
libxkbcommon
libxml2:amd64
libxmuu1:amd64
libxpm4:amd64
libxslt1.1:amd64
libxtables11
libyaml-dev:amd64
linkchecker (drupal)
linkit
linkit (drupal)
linkit_picker
linkit_picker (drupal)
linux-atm-libs
linux-base
linux-image-3.2.0
lksctp-tools
lm_sensors
locales
login
logrotate
lsb-base
lsb-release
lsof
lsyncd
lua5.1
lvm2
lz4
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
memcached
menu_item_visibility (drupal)
messaging (drupal)
metatag (drupal)
microcode_ctl
mime-support
mingetty
mlock
module-init-tools
motif
mount
mozjs17
mpfr
mptlinux-kmod
multiarch-support
mysql
mysql-common
nano
ncurses-base
ncurses-bin
ncurses-compat-libs
ncurses-term
netbase
netcat-traditional
netcf
nettle
net-tools
newt
nfs-utils
nginx
nginx-common
nginx-full
nmap
no_autocomplete (drupal)
node_clone (drupal)
nodejs
nodejs-fs-ext
nodejs-nan
nodejs-nan1
notifications (drupal)
notifications_forum (drupal)
npm
npth
nss-pam-ldapd
ntp
ntpdate
numactl
numad
ocfs2-tools
ofa_kernel
openbsd-inetd
OpenIPMI
openjdk-8-jre-headless:amd64
openssh-blacklist
openssh-blacklist-extra
openssh-client
openssh-server
openssh-sftp-server
openssl
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
php5
php5-cli
php5-common
php5-curl
php5-fpm
php5-gd
php5-imap
php5-ldap
php5-mcrypt
php5-mysql
php5-readline
phpmailer
PHPMailer (drupal)
php-memcache
php-pear
pinentry
pkgconfig
pkg-config
plymouth
pm-utils
polkit
polkit-libs
polkit-pkla-compat
portreserve
postfix
prelink
procmail
procps
procps-ng
psmisc
pth
pulseaudio
pygobject3-base
pygpgme
pyliblzma
python
python2.7
python2.7-minimal
python2-iniparse
python2-iniparse
python2-pygpgme
python3
python3-dnf
python3-dnf-plugins-core
python3-hawkey
python3-iniparse
python3-iniparse
python3-libcomps
python3-librepo
python3-libs
python3-pip
python3-pygpgme
python3-six
python-apt
python-apt-common
python-chardet
python-gnupginterface
python-kitchen
python-minimal
python-pip
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-plugin-selinux
rpm-plugin-systemd-inhibit
rpm-python
rsync
rsyslog
rubypick
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
sqlite
sqlite-libs
ssh-import-id
sshpass
ssl-cert
ssmtp
sssd-client
startpar
StatsD (drupal)
stickynav (drupal)
sudo
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)
tcpd
texinfo
tfa
tfa (drupal)
tfa_basic
tfa_basic (drupal)
time
timedatex
tinyMCE
tmpreaper
Token (Drupal)
traceroute
Translation helpers (drupal)
transliteration (drupal)
trustedgrub
tunctl
Twitter Timeline (drupal)
tzdata
ubuntu-keyring
ucf
udev
ufw
Ulimate Cron (Drupal)
unattended-upgrades
underscore.js (drupal)
unixODBC
unzip
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)
wamerican
wget
which
whiptail
workbench (drupal)
workbench_moderation (drupal)
Wysiwig (drupal)
x11-common
xauth
xautoload (drupal)
xdg-user-dirs
xkb-data
xml-core
xmlto
xpath.js
xsltproc
xtrabackup
xz
xz-utils
yaml
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 1.
libperl5, rename
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 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,bash-completion,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,dnf,dnf-conf,dnf-plugins-core,dnf-yum,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),highlight.js,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,libatomic_ops,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,libcomps,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,libreport-filesystem,librtmp0,libselinux,libselinux1,libselinux1:amd64,libsemanage1,libsemanage-common,libsepol1,libsigsegv,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,lksctp-tools,locales,login,logrotate,lsb-base,lsb-release,lsof,lsyncd,lvm2,lz4,lzo,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,python3-dnf, python3-dnf-plugins-core,python3-libcomps,python-apt,python-apt-common,python-gnupginterface,python-minimal,python-software-properties,python-support,readline-common,restrict_by_ip (drupal),restws (drupal),rpm,rpm-build-libs,rpm-libs,rpm-plugin-selinux,rpm-plugin-systemd-inhibit,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,timedatex,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,crypto-policies,device-mapper,dialog,dmidecode,drbd,e2fsprogs,ethtool,filesystem,fillup,gawk,gdb,gdbm,git,git-core,git-man,glib2,glibc,glibc-all-langpacks,gmp,gobject-introspection,grep,grub,gzip,hawkey,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,libfdisk,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,librepo,librsync1,librtmp0,libseccomp,libsecret,libsemanage1,libsemanage-common,libsepol,libsepol1,libsepol1:amd64,libsigc++-2.0-0c2a,libslang2:amd64,libstdcxx-compat,libsystemd0:amd64,libtasn1-3,libtasn1-6,libtool-ltdl,libudev0,libusb,libusb-0.1-4:amd64,libustr-1.0-1,linux-atm-libs,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,polkit,polkit-libs,polkit-pkla-compat,procps,psmisc,pygpgme,python2-pygpgme,python3-hawkey,python3-librepo,python3-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-default-yama-scope,elfutils-libelf,elfutils-libs,geoip-database,gpgme,js,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,mozjs17,multiarch-support,procps,procps-ng,pth,pygobject3-base,python-chardet,pyxattr,qrencode-libs,systemd,systemd-sysv,udev,whiptail
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,coreutils-common,cpio,diffutils,dpkg,emacs-filesystem,findutils,gawk,gcc-4.7-base,gcc-5-base,gcc-6-base,gdbm,glib2,gmp,gnupg,gnupg2,gnutls,gpgv,grep,groff-base,grub2-common,grub-common,grub-pc,grub-pc-bin,guile,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,libksba,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,libsss_idmap,libsss_nss_idmap,libstdc++,libstdc++6,libstdc++6:amd64,libstdcxx,libtasn1,libtasn1-3,libtasn1-6:amd64,libunistring,man-db,mpfr,nano,nettle,npth,ntp,openssh-client,openssh-server,percona-xtrabackup,pyliblzma,python-software-properties,readline,readline-common,rsync,rsyslog,sed,socat,ssh-import-id,sssd-client,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 :
aajohan-comfortaa-fonts
Font-Awesome
material-design-icons