-
Notifications
You must be signed in to change notification settings - Fork 26
/
LICENSE.txt
1681 lines (1300 loc) · 76.9 KB
/
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
LICENSE INFORMATION
The Programs listed below are licensed under the following License Information terms and conditions in addition to the Program license terms previously agreed to by Client and IBM. If Client does not have previously agreed to license terms in effect for the Program, the International License Agreement for Non-Warranted Programs (Z125-5589-05) applies.
Program Name (Program Number):
IBM API Connect on Docker V5.0 (5725-Z22)
The following standard terms apply to Licensee's use of the Program.
Supporting Programs
The Program is licensed as a multi-product package and includes the Supporting Programs identified below. Licensee is authorized to install and use such Supporting Programs only to support Licensee's use of the Principal Program under this Agreement and within the limits of the Proofs of Entitlement for the Program (unless broader rights are provided elsewhere in this License Information document). The phrase "to support Licensee's use" would include only those uses that are necessary or otherwise directly related to a licensed use of the Principal Program or another Supporting Program. The Supporting Programs may not be used for any other purpose. Licensee is not authorized to transfer or remarket the Supporting Programs separate from the Principal Program. A Supporting Program may be accompanied by license terms, and those terms, if any, apply to Licensee's use of that Supporting Program. In the event of conflict, the terms in this License Information document supersede the Supporting Program's terms. When Licensee's right to use the Program expires or terminates, Licensee must discontinue use, destroy or promptly return all copies of the Supporting Programs to the party from whom Licensee acquired the Program. If Licensee downloaded the Supporting Programs, Licensee should contact the party from whom Licensee acquired the Program. If Licensee wishes to license the Supporting Programs for any use beyond the limits set forth above, please contact an IBM Sales Representative or the party from whom Licensee acquired the Program to obtain the appropriate license.
The following are Supporting Programs licensed with the Program:
IBM WebSphere DataPower Option for Application Optimization V7.5
WebSphere Application Server Liberty Core V8.5.5
API Connect Create for Node.js V5.0
IBM HTTP Server
Developer Limitation
If the Program is designated as for "Developers", the Program can only be deployed as part of Licensee's internal development and unit testing on a developer machine. A developer machine is a physical or virtual desktop environment, running a primary operating system and the Program, both of which are accessible and used by no more than one specified developer. Licensee is not authorized to use the Program for processing production workloads, simulating production workloads or testing scalability of any code, application or system. Licensee is not authorized to use any part of the Program for any other purposes without acquiring the appropriate production entitlements.
Separately Licensed Code
The provisions of this paragraph do not apply to the extent they are held to be invalid or unenforceable under the law that governs this license. Each of the components listed below is considered "Separately Licensed Code". IBM Separately Licensed Code is licensed to Licensee under the terms of the applicable third party license agreement(s) set forth in the NON_IBM_LICENSE file(s) that accompanies the Program. Notwithstanding any of the terms in the Agreement, or any other agreement Licensee may have with IBM, the terms of such third party license agreement(s) governs Licensee's use of all Separately Licensed Code unless otherwise noted below.
Future Program updates or fixes may contain additional Separately Licensed Code. Such additional Separately Licensed Code and related licenses are listed in another NON_IBM_LICENSE file that accompanies the Program update or fix. Licensee acknowledges that Licensee has read and agrees to the license agreements contained in the NON_IBM_LICENSE file(s). If Licensee does not agree to the terms of these third party license agreements, Licensee may not use the Separately Licensed Code.
For Programs acquired under the International Program License Agreement ("IPLA") or International Program License Agreement for Non Warranted Program ("ILAN") and Licensee is the original licensee of the Program, if Licensee does not agree with the third party license agreements, Licensee may return the Program in accordance with the terms of, and within the specified time frames stated in, the "Money-back Guarantee" section of the IPLA or ILAN IBM Agreement.
Note: Notwithstanding any of the terms in the third party license agreement, the Agreement, or any other agreement Licensee may have with IBM:
(a) IBM provides this Separately Licensed Code to Licensee WITHOUT WARRANTIES OF ANY KIND;
(b) IBM DISCLAIMS ANY AND ALL EXPRESS AND IMPLIED WARRANTIES AND CONDITIONS INCLUDING, BUT NOT LIMITED TO, THE WARRANTY OF TITLE, NON-INFRINGEMENT OR INTERFERENCE AND THE IMPLIED WARRANTIES AND CONDITIONS OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, WITH RESPECT TO THE SEPARATELY LICENSED CODE;
(c) IBM is not liable to Licensee, and will not defend, indemnify, or hold Licensee harmless for any claims arising from or related to the Separately Licensed Code; and
(d) IBM is not liable for any direct, indirect, incidental, special, exemplary, punitive or consequential damages including, but not limited to, lost data, lost savings, and lost profits, with respect to the Separately Licensed Code.
Notwithstanding these exclusions, in Germany and Austria, IBM's warranty and liability for the Separately Licensed Code is governed only by the respective terms applicable for Germany and Austria in IBM license agreements.
Note: IBM may provide limited support for some Separately Licensed Code. If such support is available, the details and any additional terms related to such support will be set forth in the License Information document.
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
Benchmarking
Licensee may disclose the results of any benchmark test of the Program or its subcomponents to any third party provided that Licensee (A) publicly discloses the complete methodology used in the benchmark test (for example, hardware and software setup, installation procedure and configuration files), (B) performs Licensee's benchmark testing running the Program in its Specified Operating Environment using the latest applicable updates, patches and fixes available for the Program from IBM or third parties that provide IBM products ("Third Parties"), and (C) follows any and all performance tuning and "best practices" guidance available in the Program's documentation and on IBM's support web sites for the Program. If Licensee publishes the results of any benchmark tests for the Program, then notwithstanding anything to the contrary in any agreement between Licensee and IBM or Third Parties, IBM and Third Parties will have the right to publish the results of benchmark tests with respect to Licensee's products provided IBM or Third Parties complies with the requirements of (A), (B) and (C) above in its testing of Licensee's products.
Notwithstanding the foregoing, under no circumstances may Licensee publish the results of benchmark tests run on Oracle Outside In Technology without prior written permission.
The above benchmarking terms apply to the following Programs or subcomponents:
IBM Connect V5.0
Source Components and Sample Materials
The Program may include some components in source code form ("Source Components") and other materials identified as Sample Materials. Licensee may copy and modify Source Components and Sample Materials for internal use only provided such use is within the limits of the license rights under this Agreement, provided however that Licensee may not alter or delete any copyright information or notices contained in the Source Components or Sample Materials. IBM provides the Source Components and Sample Materials without obligation of support and "AS IS", WITH NO WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTY OF TITLE, NON-INFRINGEMENT OR NON-INTERFERENCE AND THE IMPLIED WARRANTIES AND CONDITIONS OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
The following units of measure may apply to Licensee's use of the Program.
Processor Value Unit (PVU)
Processor Value Unit (PVU) is a unit of measure by which the Program can be licensed. The number of PVU entitlements required is based on the processor technology (defined within the PVU Table by Processor Vendor, Brand, Type and Model Number at http://www.ibm.com/software/lotus/passportadvantage/pvu_licensing_for_customers.html) and the number of processors made available to the Program. IBM continues to define a processor, for the purpose of PVU-based licensing, to be each processor core on a chip. A dual-core processor chip, for example, has two processor cores.
Licensee can deploy the Program using either Full Capacity licensing or Virtualization Capacity (Sub-Capacity) licensing according to the Passport Advantage Sub-Capacity Licensing Terms (see webpage below). If using Full Capacity licensing, Licensee must obtain PVU entitlements sufficient to cover all activated processor cores* in the physical hardware environment made available to or managed by the Program, except for those servers from which the Program has been permanently removed. If using Virtualization Capacity licensing, Licensee must obtain entitlements sufficient to cover all activated processor cores made available to or managed by the Program, as defined according to the Virtualization Capacity License Counting Rules at http://www.ibm.com/software/lotus/passportadvantage/Counting_Software_licenses_using_specific_virtualization_technologies.html.
* An Activated processor core is a processor core that is available for use in a physical or virtual server, regardless of whether the capacity of the processor core can be or is limited through virtualization technologies, operating system commands, BIOS settings, or similar restrictions.
L/N: L-CLIG-AHAM7K
D/N: L-CLIG-AHAM7K
P/N: L-CLIG-AHAM7K
International License Agreement for Non-Warranted Programs
Part 1 - General Terms
BY DOWNLOADING, INSTALLING, COPYING, ACCESSING, CLICKING ON AN "ACCEPT" BUTTON, OR OTHERWISE USING THE PROGRAM, LICENSEE AGREES TO THE TERMS OF THIS AGREEMENT. IF YOU ARE ACCEPTING THESE TERMS ON BEHALF OF LICENSEE, YOU REPRESENT AND WARRANT THAT YOU HAVE FULL AUTHORITY TO BIND LICENSEE TO THESE TERMS. IF YOU DO NOT AGREE TO THESE TERMS,
* DO NOT DOWNLOAD, INSTALL, COPY, ACCESS, CLICK ON AN "ACCEPT" BUTTON, OR USE THE PROGRAM; AND
* PROMPTLY RETURN THE UNUSED MEDIA AND DOCUMENTATION TO THE PARTY FROM WHOM IT WAS OBTAINED FOR A REFUND OF THE AMOUNT PAID. IF THE PROGRAM WAS DOWNLOADED, DESTROY ALL COPIES OF THE PROGRAM.
1. Definitions
"Authorized Use" - the specified level at which Licensee is authorized to execute or run the Program. That level may be measured by number of users, millions of service units ("MSUs"), Processor Value Units ("PVUs"), or other level of use specified by IBM.
"IBM" - International Business Machines Corporation or one of its subsidiaries.
"License Information" ("LI") - a document that provides information and any additional terms specific to a Program. The Program's LI is available at www.ibm.com/software/sla. The LI can also be found in the Program's directory, by the use of a system command, or as a booklet included with the Program.
"Program" - the following, including the original and all whole or partial copies: 1) machine-readable instructions and data, 2) components, files, and modules, 3) audio-visual content (such as images, text, recordings, or pictures), and 4) related licensed materials (such as keys and documentation).