Oval Definition:oval:org.opensuse.security:def:24265
Revision Date:2020-12-01Version:1
Title:Security update for python-cffi, python-cryptography (Moderate)
Description:

This update for python-cffi, python-cryptography fixes the following issues:

Security issue fixed:

- CVE-2018-10903: Fixed GCM tag forgery via truncated tag in finalize_with_tag API (bsc#1101820).

Non-security issues fixed:

python-cffi was updated to 1.11.2 (bsc#1138748, jsc#ECO-1256, jsc#PM-1598):

- fixed a build failure on i586 (bsc#1111657) - Salt was unable to highstate in snapshot 20171129 (bsc#1070737)

- Update pytest in spec to add c directory tests in addition to testing directory.

- update to version 1.11.2: * Fix Windows issue with managing the thread-state on CPython 3.0 to 3.5

- Update pytest in spec to add c directory tests in addition to testing directory. - Omit test_init_once_multithread tests as they rely on multiple threads finishing in a given time. Returns sporadic pass/fail within build. - Update to 1.11.1: * Fix tests, remove deprecated C API usage * Fix (hack) for 3.6.0/3.6.1/3.6.2 giving incompatible binary extensions (cpython issue #29943) * Fix for 3.7.0a1+

- Update to 1.11.0: * Support the modern standard types char16_t and char32_t. These work like wchar_t: they represent one unicode character, or when used as charN_t * or charN_t[] they represent a unicode string. The difference with wchar_t is that they have a known, fixed size. They should work at all places that used to work with wchar_t (please report an issue if I missed something). Note that with set_source(), you need to make sure that these types are actually defined by the C source you provide (if used in cdef()). * Support the C99 types float _Complex and double _Complex. Note that libffi doesn't support them, which means that in the ABI mode you still cannot call C functions that take complex numbers directly as arguments or return type. * Fixed a rare race condition when creating multiple FFI instances from multiple threads. (Note that you aren't meant to create many FFI instances: in inline mode, you should write ffi = cffi.FFI() at module level just after import cffi; and in out-of-line mode you don't instantiate FFI explicitly at all.) * Windows: using callbacks can be messy because the CFFI internal error messages show up to stderr-but stderr goes nowhere in many applications. This makes it particularly hard to get started with the embedding mode. (Once you get started, you can at least use @ffi.def_extern(onerror=...) and send the error logs where it makes sense for your application, or record them in log files, and so on.) So what is new in CFFI is that now, on Windows CFFI will try to open a non-modal MessageBox (in addition to sending raw messages to stderr). The MessageBox is only visible if the process stays alive: typically, console applications that crash close immediately, but that is also the situation where stderr should be visible anyway. * Progress on support for callbacks in NetBSD. * Functions returning booleans would in some case still return 0 or 1 instead of False or True. Fixed. * ffi.gc() now takes an optional third parameter, which gives an estimate of the size (in bytes) of the object. So far, this is only used by PyPy, to make the next GC occur more quickly (issue #320). In the future, this might have an effect on CPython too (provided the CPython issue 31105 is addressed). * Add a note to the documentation: the ABI mode gives function objects that are slower to call than the API mode does. For some reason it is often thought to be faster. It is not! - Update to 1.10.1: * Fixed the line numbers reported in case of cdef() errors. Also, I just noticed, but pycparser always supported the preprocessor directive # 42 'foo.h' to mean 'from the next line, we're in file foo.h starting from line 42';, which it puts in the error messages.

- update to 1.10.0: * Issue #295: use calloc() directly instead of PyObject_Malloc()+memset() to handle ffi.new() with a default allocator. Speeds up ffi.new(large-array) where most of the time you never touch most of the array. * Some OS/X build fixes ('only with Xcode but without CLT';). * Improve a couple of error messages: when getting mismatched versions of cffi and its backend; and when calling functions which cannot be called with libffi because an argument is a struct that is 'too complicated'; (and not a struct pointer, which always works). * Add support for some unusual compilers (non-msvc, non-gcc, non-icc, non-clang) * Implemented the remaining cases for ffi.from_buffer. Now all buffer/memoryview objects can be passed. The one remaining check is against passing unicode strings in Python 2. (They support the buffer interface, but that gives the raw bytes behind the UTF16/UCS4 storage, which is most of the times not what you expect. In Python 3 this has been fixed and the unicode strings don't support the memoryview interface any more.) * The C type _Bool or bool now converts to a Python boolean when reading, instead of the content of the byte as an integer. The potential incompatibility here is what occurs if the byte contains a value different from 0 and 1. Previously, it would just return it; with this change, CFFI raises an exception in this case. But this case means 'undefined behavior'; in C; if you really have to interface with a library relying on this, don't use bool in the CFFI side. Also, it is still valid to use a byte string as initializer for a bool[], but now it must only contain \x00 or \x01. As an aside, ffi.string() no longer works on bool[] (but it never made much sense, as this function stops at the first zero). * ffi.buffer is now the name of cffi's buffer type, and ffi.buffer() works like before but is the constructor of that type. * ffi.addressof(lib, 'name') now works also in in-line mode, not only in out-of-line mode. This is useful for taking the address of global variables. * Issue #255: cdata objects of a primitive type (integers, floats, char) are now compared and ordered by value. For example, compares equal to 42 and compares equal to b'A'. Unlike C, does not compare equal to ffi.cast('unsigned int', -1): it compares smaller, because -1 < 4294967295. * PyPy: ffi.new() and ffi.new_allocator()() did not record 'memory pressure';, causing the GC to run too infrequently if you call ffi.new() very often and/or with large arrays. Fixed in PyPy 5.7. * Support in ffi.cdef() for numeric expressions with + or -. Assumes that there is no overflow; it should be fixed first before we add more general support for arbitrary arithmetic on constants.

- do not generate HTML documentation for packages that are indirect dependencies of Sphinx (see docs at https://cffi.readthedocs.org/ )

- update to 1.9.1 - Structs with variable-sized arrays as their last field: now we track the length of the array after ffi.new() is called, just like we always tracked the length of ffi.new('int[]', 42). This lets us detect out-of-range accesses to array items. This also lets us display a better repr(), and have the total size returned by ffi.sizeof() and ffi.buffer(). Previously both functions would return a result based on the size of the declared structure type, with an assumed empty array. (Thanks andrew for starting this refactoring.) - Add support in cdef()/set_source() for unspecified-length arrays in typedefs: typedef int foo_t[...];. It was already supported for global variables or structure fields. - I turned in v1.8 a warning from cffi/model.py into an error: 'enum xxx' has no values explicitly defined: refusing to guess which integer type it is meant to be (unsigned/signed, int/long). Now I'm turning it back to a warning again; it seems that guessing that the enum has size int is a 99%-safe bet. (But not 100%, so it stays as a warning.) - Fix leaks in the code handling FILE * arguments. In CPython 3 there is a remaining issue that is hard to fix: if you pass a Python file object to a FILE * argument, then os.dup() is used and the new file descriptor is only closed when the GC reclaims the Python file object-and not at the earlier time when you call close(), which only closes the original file descriptor. If this is an issue, you should avoid this automatic convertion of Python file objects: instead, explicitly manipulate file descriptors and call fdopen() from C (...via cffi). - When passing a void * argument to a function with a different pointer type, or vice-versa, the cast occurs automatically, like in C. The same occurs for initialization with ffi.new() and a few other places. However, I thought that char * had the same property-but I was mistaken. In C you get the usual warning if you try to give a char * to a char ** argument, for example. Sorry about the confusion. This has been fixed in CFFI by giving for now a warning, too. It will turn into an error in a future version. - Issue #283: fixed ffi.new() on structures/unions with nested anonymous structures/unions, when there is at least one union in the mix. When initialized with a list or a dict, it should now behave more closely like the { } syntax does in GCC. - CPython 3.x: experimental: the generated C extension modules now use the 'limited API';, which means that, as a compiled .so/.dll, it should work directly on any version of CPython >= 3.2. The name produced by distutils is still version-specific. To get the version-independent name, you can rename it manually to NAME.abi3.so, or use the very recent setuptools 26. - Added ffi.compile(debug=...), similar to python setup.py build --debug but defaulting to True if we are running a debugging version of Python itself. - Removed the restriction that ffi.from_buffer() cannot be used on byte strings. Now you can get a char * out of a byte string, which is valid as long as the string object is kept alive. (But don't use it to modify the string object! If you need this, use bytearray or other official techniques.) - PyPy 5.4 can now pass a byte string directly to a char * argument (in older versions, a copy would be made). This used to be a CPython-only optimization. - ffi.gc(p, None) removes the destructor on an object previously created by another call to ffi.gc() - bool(ffi.cast('primitive type', x)) now returns False if the value is zero (including -0.0), and True otherwise. Previously this would only return False for cdata objects of a pointer type when the pointer is NULL. - bytearrays: ffi.from_buffer(bytearray-object) is now supported. (The reason it was not supported was that it was hard to do in PyPy, but it works since PyPy 5.3.) To call a C function with a char * argument from a buffer object-now including bytearrays-you write lib.foo(ffi.from_buffer(x)). Additionally, this is now supported: p[0:length] = bytearray-object. The problem with this was that a iterating over bytearrays gives numbers instead of characters. (Now it is implemented with just a memcpy, of course, not actually iterating over the characters.) - C++: compiling the generated C code with C++ was supposed to work, but failed if you make use the bool type (because that is rendered as the C _Bool type, which doesn't exist in C++). - help(lib) and help(lib.myfunc) now give useful information, as well as dir(p) where p is a struct or pointer-to-struct.

- update for multipython build

- disable 'negative left shift' warning in test suite to prevent failures with gcc6, until upstream fixes the undefined code in question (bsc#981848)

- Update to version 1.6.0: * ffi.list_types() * ffi.unpack() * extern 'Python+C'; * in API mode, lib.foo.__doc__ contains the C signature now. * Yet another attempt at robustness of ffi.def_extern() against CPython's interpreter shutdown logic. - Update in SLE-12 (bsc#1138748, jsc#ECO-1256, jsc#PM-1598)

- Make this version of the package compatible with OpenSSL 1.1.1d, thus fixing bsc#1149792.

- bsc#1101820 CVE-2018-10903 GCM tag forgery via truncated tag in finalize_with_tag API

- Add proper conditional for the python2, the ifpython works only for the requires/etc

- add missing dependency on python ssl

- update to version 2.1.4: * Added X509_up_ref for an upcoming pyOpenSSL release.

- update to version 2.1.3: * Updated Windows, macOS, and manylinux1 wheels to be compiled with OpenSSL 1.1.0g.

- update to version 2.1.2: * Corrected a bug with the manylinux1 wheels where OpenSSL's stack was marked executable.

- fix BuildRequires conditions for python3

- update to 2.1.1

- Fix cffi version requirement.

- Disable memleak tests to fix build with OpenSSL 1.1 (bsc#1055478)



- update to 2.0.3

- update to 2.0.2

- update to 2.0

- update to 1.9

- add python-packaging to requirements explicitly instead of relying on setuptools to pull it in

- Switch to singlespec approach

- update to 1.8.1 - Adust Requires and BuildRequires
Family:unixClass:patch
Status:Reference(s):1055478
1068664
1070737
1099310
1101820
1109893
1110279
1110542
1111319
1111657
1112911
1113296
1114592
1116998
1118595
1118596
1118599
1119991
1120629
1120630
1120631
1121214
1127155
1130831
1131823
1133291
1134226
1135254
1135715
1137977
1138748
1141897
1142649
1142654
1146873
1148517
1149145
1149792
1152506
1153072
1153358
1155812
1159208
1159623
1163927
1163959
1163969
1172491
1174120
1174316
1176579
1176756
1177872
944458
981848
CVE-2012-0876
CVE-2015-6806
CVE-2016-0718
CVE-2016-4472
CVE-2016-6252
CVE-2016-9063
CVE-2017-1000158
CVE-2017-9233
CVE-2018-10903
CVE-2018-12207
CVE-2018-15518
CVE-2018-19869
CVE-2018-19873
CVE-2018-20126
CVE-2018-20532
CVE-2018-20533
CVE-2018-20534
CVE-2018-4191
CVE-2018-4197
CVE-2018-4207
CVE-2018-4208
CVE-2018-4209
CVE-2018-4210
CVE-2018-4212
CVE-2018-4213
CVE-2018-4261
CVE-2018-4262
CVE-2018-4263
CVE-2018-4264
CVE-2018-4265
CVE-2018-4266
CVE-2018-4267
CVE-2018-4270
CVE-2018-4272
CVE-2018-4273
CVE-2018-4278
CVE-2018-4284
CVE-2018-4299
CVE-2018-4306
CVE-2018-4309
CVE-2018-4312
CVE-2018-4314
CVE-2018-4315
CVE-2018-4316
CVE-2018-4317
CVE-2018-4318
CVE-2018-4319
CVE-2018-4323
CVE-2018-4328
CVE-2018-4345
CVE-2018-4358
CVE-2018-4359
CVE-2018-4361
CVE-2018-4372
CVE-2018-4373
CVE-2018-4375
CVE-2018-4376
CVE-2018-4378
CVE-2018-4382
CVE-2018-4386
CVE-2018-4392
CVE-2018-4416
CVE-2019-11135
CVE-2019-12068
CVE-2019-14250
CVE-2019-14553
CVE-2019-14559
CVE-2019-14563
CVE-2019-14575
CVE-2019-15847
CVE-2019-6237
CVE-2019-8571
CVE-2019-8583
CVE-2019-8584
CVE-2019-8586
CVE-2019-8587
CVE-2019-8594
CVE-2019-8595
CVE-2019-8596
CVE-2019-8597
CVE-2019-8601
CVE-2019-8607
CVE-2019-8608
CVE-2019-8609
CVE-2019-8610
CVE-2019-8611
CVE-2019-8615
CVE-2019-8619
CVE-2019-8622
CVE-2019-8623
CVE-2020-13790
CVE-2020-1472
CVE-2020-15683
CVE-2020-15969
SUSE-SU-2019:0059-1
SUSE-SU-2019:1354-1
SUSE-SU-2019:1850-1
SUSE-SU-2019:1972-1
SUSE-SU-2019:2956-1
SUSE-SU-2020:0394-1
SUSE-SU-2020:0497-1
SUSE-SU-2020:0699-1
SUSE-SU-2020:1021-1
SUSE-SU-2020:2570-1
SUSE-SU-2020:2721-1
Platform(s):openSUSE Leap 42.1
openSUSE Leap 42.2
openSUSE Leap 42.3
SUSE Cloud Compute Node for SUSE Linux Enterprise 12 5
SUSE Linux Enterprise Desktop 11 SP2
SUSE Linux Enterprise Desktop 11 SP3
SUSE Linux Enterprise Desktop 11 SP4
SUSE Linux Enterprise Desktop 12
SUSE Linux Enterprise Desktop 12 SP1
SUSE Linux Enterprise Desktop 12 SP2
SUSE Linux Enterprise Desktop 12 SP3
SUSE Linux Enterprise Module for Advanced Systems Management 12
SUSE Linux Enterprise Module for Basesystem 15
SUSE Linux Enterprise Module for Desktop Applications 15
SUSE Linux Enterprise Module for Development Tools 15
SUSE Linux Enterprise Module for Live Patching 15
SUSE Linux Enterprise Module for Public Cloud 12
SUSE Linux Enterprise Point of Sale 11 SP3
SUSE Linux Enterprise Real Time Extension 11 SP4
SUSE Linux Enterprise Server 11
SUSE Linux Enterprise Server 11 SP1
SUSE Linux Enterprise Server 11 SP1-CLIENT-TOOLS
SUSE Linux Enterprise Server 11 SP1-LTSS
SUSE Linux Enterprise Server 11 SP1-TERADATA
SUSE Linux Enterprise Server 11 SP2
SUSE Linux Enterprise Server 11 SP2-LTSS
SUSE Linux Enterprise Server 11 SP3
SUSE Linux Enterprise Server 11 SP3-LTSS
SUSE Linux Enterprise Server 11 SP3-TERADATA
SUSE Linux Enterprise Server 11 SP4
SUSE Linux Enterprise Server 11-SECURITY
SUSE Linux Enterprise Server 12
SUSE Linux Enterprise Server 12 SP1
SUSE Linux Enterprise Server 12 SP1-LTSS
SUSE Linux Enterprise Server 12 SP2
SUSE Linux Enterprise Server 12 SP2-LTSS
SUSE Linux Enterprise Server 12 SP3-ESPOS
SUSE Linux Enterprise Server 12 SP3-TERADATA
SUSE Linux Enterprise Server 12 SP4
SUSE Linux Enterprise Server 12 SP4-ESPOS
SUSE Linux Enterprise Server 12 SP4-LTSS
SUSE Linux Enterprise Server 12 SP5
SUSE Linux Enterprise Server 12-LTSS
SUSE Linux Enterprise Server for Raspberry Pi 12 SP2
SUSE Linux Enterprise Server for SAP Applications 11
SUSE Linux Enterprise Server for SAP Applications 11 SP1-CLIENT-TOOLS
SUSE Linux Enterprise Server for SAP Applications 11 SP1-LTSS
SUSE Linux Enterprise Server for SAP Applications 11 SP1-TERADATA
SUSE Linux Enterprise Server for SAP Applications 11 SP2
SUSE Linux Enterprise Server for SAP Applications 11 SP2-LTSS
SUSE Linux Enterprise Server for SAP Applications 11 SP3
SUSE Linux Enterprise Server for SAP Applications 11 SP3-LTSS
SUSE Linux Enterprise Server for SAP Applications 11 SP3-TERADATA
SUSE Linux Enterprise Server for SAP Applications 11 SP4
SUSE Linux Enterprise Server for SAP Applications 11-SECURITY
SUSE Linux Enterprise Server for SAP Applications 12
SUSE Linux Enterprise Server for SAP Applications 12 SP1
SUSE Linux Enterprise Server for SAP Applications 12 SP1-LTSS
SUSE Linux Enterprise Server for SAP Applications 12 SP2
SUSE Linux Enterprise Server for SAP Applications 12 SP2-LTSS
SUSE Linux Enterprise Server for SAP Applications 12 SP3-ESPOS
SUSE Linux Enterprise Server for SAP Applications 12 SP3-TERADATA
SUSE Linux Enterprise Server for SAP Applications 12 SP4
SUSE Linux Enterprise Server for SAP Applications 12 SP4-ESPOS
SUSE Linux Enterprise Server for SAP Applications 12 SP4-LTSS
SUSE Linux Enterprise Server for SAP Applications 12 SP5
SUSE Linux Enterprise Server for SAP Applications 12-LTSS
SUSE Linux Enterprise Server for VMWare 11 SP2
SUSE Linux Enterprise Server for VMWare 11 SP3
SUSE Linux Enterprise Software Development Kit 11 SP3
SUSE Linux Enterprise Software Development Kit 11 SP4
SUSE Linux Enterprise Workstation Extension 12
SUSE Linux Enterprise Workstation Extension 12 SP1
SUSE Linux Enterprise Workstation Extension 12 SP2
SUSE Linux Enterprise Workstation Extension 12 SP3
SUSE Linux Enterprise Workstation Extension 12 SP4
SUSE Linux Enterprise Workstation Extension 12 SP5
SUSE OpenStack Cloud 6
SUSE OpenStack Cloud 7
SUSE Package Hub for SUSE Linux Enterprise 12
SUSE Package Hub for SUSE Linux Enterprise 12 SP2
SUSE Package Hub for SUSE Linux Enterprise 12 SP3
Product(s):
Definition Synopsis
  • openSUSE Leap 42.1 is installed
  • AND apache-commons-httpclient-3.1-8.1 is installed
  • Definition Synopsis
  • openSUSE Leap 42.2 is installed
  • AND Package Information
  • alsa-1.1.2-1.2 is installed
  • OR alsa-devel-1.1.2-1.2 is installed
  • OR libasound2-1.1.2-1.2 is installed
  • OR libasound2-32bit-1.1.2-1.2 is installed
  • Definition Synopsis
  • openSUSE Leap 42.3 is installed
  • AND libgypsy0-0.9-13.4 is installed
  • Definition Synopsis
  • SUSE Cloud Compute Node for SUSE Linux Enterprise 12 5 is installed
  • AND python-pycrypto-2.6.1-1 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Desktop 11 SP2 is installed
  • AND Package Information
  • bytefx-data-mysql-2.6.7-0.9 is installed
  • OR ibm-data-db2-2.6.7-0.9 is installed
  • OR mono-core-2.6.7-0.9 is installed
  • OR mono-data-2.6.7-0.9 is installed
  • OR mono-data-firebird-2.6.7-0.9 is installed
  • OR mono-data-oracle-2.6.7-0.9 is installed
  • OR mono-data-postgresql-2.6.7-0.9 is installed
  • OR mono-data-sqlite-2.6.7-0.9 is installed
  • OR mono-data-sybase-2.6.7-0.9 is installed
  • OR mono-devel-2.6.7-0.9 is installed
  • OR mono-extras-2.6.7-0.9 is installed
  • OR mono-jscript-2.6.7-0.9 is installed
  • OR mono-locale-extras-2.6.7-0.9 is installed
  • OR mono-nunit-2.6.7-0.9 is installed
  • OR mono-wcf-2.6.7-0.9 is installed
  • OR mono-web-2.6.7-0.9 is installed
  • OR mono-winforms-2.6.7-0.9 is installed
  • OR monodoc-core-2.6.7-0.9 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Desktop 11 SP3 is installed
  • AND a2ps-4.13-1326.37 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Desktop 11 SP4 is installed
  • AND Package Information
  • ecryptfs-utils-61-1.35 is installed
  • OR ecryptfs-utils-32bit-61-1.35 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Desktop 12 is installed
  • AND Package Information
  • libXtst6-1.2.2-3 is installed
  • OR libXtst6-32bit-1.2.2-3 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Desktop 12 SP1 is installed
  • AND clamav-0.98.7-13 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Desktop 12 SP2 is installed
  • AND Package Information
  • bash-4.3-78 is installed
  • OR bash-doc-4.3-78 is installed
  • OR bash-lang-4.3-78 is installed
  • OR libreadline6-6.3-78 is installed
  • OR libreadline6-32bit-6.3-78 is installed
  • OR readline-doc-6.3-78 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Desktop 12 SP3 is installed
  • AND autofs-5.0.9-27 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Module for Advanced Systems Management 12 is installed
  • AND facter-2.0.2-1 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Module for Basesystem 15 is installed
  • AND Package Information
  • binutils-2.29.1-4 is installed
  • OR binutils-devel-2.29.1-4 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Module for Desktop Applications 15 is installed
  • AND Package Information
  • eog-3.26.2-3 is installed
  • OR eog-devel-3.26.2-3 is installed
  • OR eog-lang-3.26.2-3 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Module for Development Tools 15 is installed
  • AND aaa_base-malloccheck-84.87+git20180409.04c9dae-1 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Module for Live Patching 15 is installed
  • AND Package Information
  • kernel-livepatch-4_12_14-25_13-default-3-2 is installed
  • OR kernel-livepatch-SLE15_Update_3-3-2 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Module for Public Cloud 12 is installed
  • AND python-requests-2.3.0-1 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Point of Sale 11 SP3 is installed
  • AND Package Information
  • gstreamer-0_10-plugins-base-0.10.35-5.18.5 is installed
  • OR gstreamer-0_10-plugins-base-doc-0.10.35-5.18.5 is installed
  • OR gstreamer-0_10-plugins-base-lang-0.10.35-5.18.5 is installed
  • OR libgstapp-0_10-0-0.10.35-5.18.5 is installed
  • OR libgstinterfaces-0_10-0-0.10.35-5.18.5 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Real Time Extension 11 SP4 is installed
  • AND Package Information
  • kernel-rt-3.0.101.rt130-69.24 is installed
  • OR kernel-rt-base-3.0.101.rt130-69.24 is installed
  • OR kernel-rt-devel-3.0.101.rt130-69.24 is installed
  • OR kernel-rt_trace-3.0.101.rt130-69.24 is installed
  • OR kernel-rt_trace-base-3.0.101.rt130-69.24 is installed
  • OR kernel-rt_trace-devel-3.0.101.rt130-69.24 is installed
  • OR kernel-source-rt-3.0.101.rt130-69.24 is installed
  • OR kernel-syms-rt-3.0.101.rt130-69.24 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 11 is installed
  • AND procps-3.2.7-151 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 is installed
  • AND procps-3.2.7-151 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 11 SP1 is installed
  • AND
  • MozillaFirefox-10.0.5-0.3 is installed
  • OR MozillaFirefox-translations-10.0.5-0.3 is installed
  • OR libfreebl3-3.13.5-0.4 is installed
  • OR libfreebl3-32bit-3.13.5-0.4 is installed
  • OR libfreebl3-x86-3.13.5-0.4 is installed
  • OR mozilla-nspr-4.9.1-0.5 is installed
  • OR mozilla-nspr-32bit-4.9.1-0.5 is installed
  • OR mozilla-nspr-x86-4.9.1-0.5 is installed
  • OR mozilla-nss-3.13.5-0.4 is installed
  • OR mozilla-nss-32bit-3.13.5-0.4 is installed
  • OR mozilla-nss-tools-3.13.5-0.4 is installed
  • OR mozilla-nss-x86-3.13.5-0.4 is installed
  • OR mozilla-xulrunner191-1.9.1.11-0.1 is installed
  • OR mozilla-xulrunner191-32bit-1.9.1.11-0.1 is installed
  • OR mozilla-xulrunner191-gnomevfs-1.9.1.11-0.1 is installed
  • OR mozilla-xulrunner191-translations-1.9.1.11-0.1 is installed
  • OR mozilla-xulrunner191-x86-1.9.1.11-0.1 is installed
  • OR mozilla-xulrunner192-1.9.2.24-0.3 is installed
  • OR mozilla-xulrunner192-32bit-1.9.2.24-0.3 is installed
  • OR mozilla-xulrunner192-gnome-1.9.2.24-0.3 is installed
  • OR mozilla-xulrunner192-translations-1.9.2.24-0.3 is installed
  • OR mozilla-xulrunner192-x86-1.9.2.24-0.3 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server 11 SP1-LTSS is installed
  • AND
  • MozillaFirefox-10.0.5-0.3 is installed
  • OR MozillaFirefox-translations-10.0.5-0.3 is installed
  • OR libfreebl3-3.13.5-0.4 is installed
  • OR libfreebl3-32bit-3.13.5-0.4 is installed
  • OR libfreebl3-x86-3.13.5-0.4 is installed
  • OR mozilla-nspr-4.9.1-0.5 is installed
  • OR mozilla-nspr-32bit-4.9.1-0.5 is installed
  • OR mozilla-nspr-x86-4.9.1-0.5 is installed
  • OR mozilla-nss-3.13.5-0.4 is installed
  • OR mozilla-nss-32bit-3.13.5-0.4 is installed
  • OR mozilla-nss-tools-3.13.5-0.4 is installed
  • OR mozilla-nss-x86-3.13.5-0.4 is installed
  • OR mozilla-xulrunner191-1.9.1.11-0.1 is installed
  • OR mozilla-xulrunner191-32bit-1.9.1.11-0.1 is installed
  • OR mozilla-xulrunner191-gnomevfs-1.9.1.11-0.1 is installed
  • OR mozilla-xulrunner191-translations-1.9.1.11-0.1 is installed
  • OR mozilla-xulrunner191-x86-1.9.1.11-0.1 is installed
  • OR mozilla-xulrunner192-1.9.2.24-0.3 is installed
  • OR mozilla-xulrunner192-32bit-1.9.2.24-0.3 is installed
  • OR mozilla-xulrunner192-gnome-1.9.2.24-0.3 is installed
  • OR mozilla-xulrunner192-translations-1.9.2.24-0.3 is installed
  • OR mozilla-xulrunner192-x86-1.9.2.24-0.3 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server 11 SP1-TERADATA is installed
  • AND
  • MozillaFirefox-10.0.5-0.3 is installed
  • OR MozillaFirefox-translations-10.0.5-0.3 is installed
  • OR libfreebl3-3.13.5-0.4 is installed
  • OR libfreebl3-32bit-3.13.5-0.4 is installed
  • OR libfreebl3-x86-3.13.5-0.4 is installed
  • OR mozilla-nspr-4.9.1-0.5 is installed
  • OR mozilla-nspr-32bit-4.9.1-0.5 is installed
  • OR mozilla-nspr-x86-4.9.1-0.5 is installed
  • OR mozilla-nss-3.13.5-0.4 is installed
  • OR mozilla-nss-32bit-3.13.5-0.4 is installed
  • OR mozilla-nss-tools-3.13.5-0.4 is installed
  • OR mozilla-nss-x86-3.13.5-0.4 is installed
  • OR mozilla-xulrunner191-1.9.1.11-0.1 is installed
  • OR mozilla-xulrunner191-32bit-1.9.1.11-0.1 is installed
  • OR mozilla-xulrunner191-gnomevfs-1.9.1.11-0.1 is installed
  • OR mozilla-xulrunner191-translations-1.9.1.11-0.1 is installed
  • OR mozilla-xulrunner191-x86-1.9.1.11-0.1 is installed
  • OR mozilla-xulrunner192-1.9.2.24-0.3 is installed
  • OR mozilla-xulrunner192-32bit-1.9.2.24-0.3 is installed
  • OR mozilla-xulrunner192-gnome-1.9.2.24-0.3 is installed
  • OR mozilla-xulrunner192-translations-1.9.2.24-0.3 is installed
  • OR mozilla-xulrunner192-x86-1.9.2.24-0.3 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server 11 SP2 is installed
  • AND
  • MozillaFirefox-10.0.5-0.3 is installed
  • OR MozillaFirefox-translations-10.0.5-0.3 is installed
  • OR libfreebl3-3.13.5-0.4 is installed
  • OR libfreebl3-32bit-3.13.5-0.4 is installed
  • OR libfreebl3-x86-3.13.5-0.4 is installed
  • OR mozilla-nspr-4.9.1-0.5 is installed
  • OR mozilla-nspr-32bit-4.9.1-0.5 is installed
  • OR mozilla-nspr-x86-4.9.1-0.5 is installed
  • OR mozilla-nss-3.13.5-0.4 is installed
  • OR mozilla-nss-32bit-3.13.5-0.4 is installed
  • OR mozilla-nss-tools-3.13.5-0.4 is installed
  • OR mozilla-nss-x86-3.13.5-0.4 is installed
  • OR mozilla-xulrunner191-1.9.1.11-0.1 is installed
  • OR mozilla-xulrunner191-32bit-1.9.1.11-0.1 is installed
  • OR mozilla-xulrunner191-gnomevfs-1.9.1.11-0.1 is installed
  • OR mozilla-xulrunner191-translations-1.9.1.11-0.1 is installed
  • OR mozilla-xulrunner191-x86-1.9.1.11-0.1 is installed
  • OR mozilla-xulrunner192-1.9.2.24-0.3 is installed
  • OR mozilla-xulrunner192-32bit-1.9.2.24-0.3 is installed
  • OR mozilla-xulrunner192-gnome-1.9.2.24-0.3 is installed
  • OR mozilla-xulrunner192-translations-1.9.2.24-0.3 is installed
  • OR mozilla-xulrunner192-x86-1.9.2.24-0.3 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP1-LTSS is installed
  • AND
  • MozillaFirefox-10.0.5-0.3 is installed
  • OR MozillaFirefox-translations-10.0.5-0.3 is installed
  • OR libfreebl3-3.13.5-0.4 is installed
  • OR libfreebl3-32bit-3.13.5-0.4 is installed
  • OR libfreebl3-x86-3.13.5-0.4 is installed
  • OR mozilla-nspr-4.9.1-0.5 is installed
  • OR mozilla-nspr-32bit-4.9.1-0.5 is installed
  • OR mozilla-nspr-x86-4.9.1-0.5 is installed
  • OR mozilla-nss-3.13.5-0.4 is installed
  • OR mozilla-nss-32bit-3.13.5-0.4 is installed
  • OR mozilla-nss-tools-3.13.5-0.4 is installed
  • OR mozilla-nss-x86-3.13.5-0.4 is installed
  • OR mozilla-xulrunner191-1.9.1.11-0.1 is installed
  • OR mozilla-xulrunner191-32bit-1.9.1.11-0.1 is installed
  • OR mozilla-xulrunner191-gnomevfs-1.9.1.11-0.1 is installed
  • OR mozilla-xulrunner191-translations-1.9.1.11-0.1 is installed
  • OR mozilla-xulrunner191-x86-1.9.1.11-0.1 is installed
  • OR mozilla-xulrunner192-1.9.2.24-0.3 is installed
  • OR mozilla-xulrunner192-32bit-1.9.2.24-0.3 is installed
  • OR mozilla-xulrunner192-gnome-1.9.2.24-0.3 is installed
  • OR mozilla-xulrunner192-translations-1.9.2.24-0.3 is installed
  • OR mozilla-xulrunner192-x86-1.9.2.24-0.3 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP1-TERADATA is installed
  • AND
  • MozillaFirefox-10.0.5-0.3 is installed
  • OR MozillaFirefox-translations-10.0.5-0.3 is installed
  • OR libfreebl3-3.13.5-0.4 is installed
  • OR libfreebl3-32bit-3.13.5-0.4 is installed
  • OR libfreebl3-x86-3.13.5-0.4 is installed
  • OR mozilla-nspr-4.9.1-0.5 is installed
  • OR mozilla-nspr-32bit-4.9.1-0.5 is installed
  • OR mozilla-nspr-x86-4.9.1-0.5 is installed
  • OR mozilla-nss-3.13.5-0.4 is installed
  • OR mozilla-nss-32bit-3.13.5-0.4 is installed
  • OR mozilla-nss-tools-3.13.5-0.4 is installed
  • OR mozilla-nss-x86-3.13.5-0.4 is installed
  • OR mozilla-xulrunner191-1.9.1.11-0.1 is installed
  • OR mozilla-xulrunner191-32bit-1.9.1.11-0.1 is installed
  • OR mozilla-xulrunner191-gnomevfs-1.9.1.11-0.1 is installed
  • OR mozilla-xulrunner191-translations-1.9.1.11-0.1 is installed
  • OR mozilla-xulrunner191-x86-1.9.1.11-0.1 is installed
  • OR mozilla-xulrunner192-1.9.2.24-0.3 is installed
  • OR mozilla-xulrunner192-32bit-1.9.2.24-0.3 is installed
  • OR mozilla-xulrunner192-gnome-1.9.2.24-0.3 is installed
  • OR mozilla-xulrunner192-translations-1.9.2.24-0.3 is installed
  • OR mozilla-xulrunner192-x86-1.9.2.24-0.3 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 11 SP1 is installed
  • AND
  • glibc-2.11.1-0.34 is installed
  • OR glibc-32bit-2.11.1-0.34 is installed
  • OR glibc-devel-2.11.1-0.34 is installed
  • OR glibc-devel-32bit-2.11.1-0.34 is installed
  • OR glibc-html-2.11.1-0.34 is installed
  • OR glibc-i18ndata-2.11.1-0.34 is installed
  • OR glibc-info-2.11.1-0.34 is installed
  • OR glibc-locale-2.11.1-0.34 is installed
  • OR glibc-locale-32bit-2.11.1-0.34 is installed
  • OR glibc-locale-x86-2.11.1-0.34 is installed
  • OR glibc-profile-2.11.1-0.34 is installed
  • OR glibc-profile-32bit-2.11.1-0.34 is installed
  • OR glibc-profile-x86-2.11.1-0.34 is installed
  • OR glibc-x86-2.11.1-0.34 is installed
  • OR libxcrypt-3.0.3-0.4 is installed
  • OR libxcrypt-32bit-3.0.3-0.4 is installed
  • OR nscd-2.11.1-0.34 is installed
  • OR pam-modules-11-1.18 is installed
  • OR pam-modules-32bit-11-1.18 is installed
  • OR pwdutils-3.2.8-0.4 is installed
  • OR pwdutils-plugin-audit-3.2.8-0.4 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server 11 SP1-LTSS is installed
  • AND
  • glibc-2.11.1-0.34 is installed
  • OR glibc-32bit-2.11.1-0.34 is installed
  • OR glibc-devel-2.11.1-0.34 is installed
  • OR glibc-devel-32bit-2.11.1-0.34 is installed
  • OR glibc-html-2.11.1-0.34 is installed
  • OR glibc-i18ndata-2.11.1-0.34 is installed
  • OR glibc-info-2.11.1-0.34 is installed
  • OR glibc-locale-2.11.1-0.34 is installed
  • OR glibc-locale-32bit-2.11.1-0.34 is installed
  • OR glibc-locale-x86-2.11.1-0.34 is installed
  • OR glibc-profile-2.11.1-0.34 is installed
  • OR glibc-profile-32bit-2.11.1-0.34 is installed
  • OR glibc-profile-x86-2.11.1-0.34 is installed
  • OR glibc-x86-2.11.1-0.34 is installed
  • OR libxcrypt-3.0.3-0.4 is installed
  • OR libxcrypt-32bit-3.0.3-0.4 is installed
  • OR nscd-2.11.1-0.34 is installed
  • OR pam-modules-11-1.18 is installed
  • OR pam-modules-32bit-11-1.18 is installed
  • OR pwdutils-3.2.8-0.4 is installed
  • OR pwdutils-plugin-audit-3.2.8-0.4 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server 11 SP1-TERADATA is installed
  • AND
  • glibc-2.11.1-0.34 is installed
  • OR glibc-32bit-2.11.1-0.34 is installed
  • OR glibc-devel-2.11.1-0.34 is installed
  • OR glibc-devel-32bit-2.11.1-0.34 is installed
  • OR glibc-html-2.11.1-0.34 is installed
  • OR glibc-i18ndata-2.11.1-0.34 is installed
  • OR glibc-info-2.11.1-0.34 is installed
  • OR glibc-locale-2.11.1-0.34 is installed
  • OR glibc-locale-32bit-2.11.1-0.34 is installed
  • OR glibc-locale-x86-2.11.1-0.34 is installed
  • OR glibc-profile-2.11.1-0.34 is installed
  • OR glibc-profile-32bit-2.11.1-0.34 is installed
  • OR glibc-profile-x86-2.11.1-0.34 is installed
  • OR glibc-x86-2.11.1-0.34 is installed
  • OR libxcrypt-3.0.3-0.4 is installed
  • OR libxcrypt-32bit-3.0.3-0.4 is installed
  • OR nscd-2.11.1-0.34 is installed
  • OR pam-modules-11-1.18 is installed
  • OR pam-modules-32bit-11-1.18 is installed
  • OR pwdutils-3.2.8-0.4 is installed
  • OR pwdutils-plugin-audit-3.2.8-0.4 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP1-LTSS is installed
  • AND
  • glibc-2.11.1-0.34 is installed
  • OR glibc-32bit-2.11.1-0.34 is installed
  • OR glibc-devel-2.11.1-0.34 is installed
  • OR glibc-devel-32bit-2.11.1-0.34 is installed
  • OR glibc-html-2.11.1-0.34 is installed
  • OR glibc-i18ndata-2.11.1-0.34 is installed
  • OR glibc-info-2.11.1-0.34 is installed
  • OR glibc-locale-2.11.1-0.34 is installed
  • OR glibc-locale-32bit-2.11.1-0.34 is installed
  • OR glibc-locale-x86-2.11.1-0.34 is installed
  • OR glibc-profile-2.11.1-0.34 is installed
  • OR glibc-profile-32bit-2.11.1-0.34 is installed
  • OR glibc-profile-x86-2.11.1-0.34 is installed
  • OR glibc-x86-2.11.1-0.34 is installed
  • OR libxcrypt-3.0.3-0.4 is installed
  • OR libxcrypt-32bit-3.0.3-0.4 is installed
  • OR nscd-2.11.1-0.34 is installed
  • OR pam-modules-11-1.18 is installed
  • OR pam-modules-32bit-11-1.18 is installed
  • OR pwdutils-3.2.8-0.4 is installed
  • OR pwdutils-plugin-audit-3.2.8-0.4 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP1-TERADATA is installed
  • AND
  • glibc-2.11.1-0.34 is installed
  • OR glibc-32bit-2.11.1-0.34 is installed
  • OR glibc-devel-2.11.1-0.34 is installed
  • OR glibc-devel-32bit-2.11.1-0.34 is installed
  • OR glibc-html-2.11.1-0.34 is installed
  • OR glibc-i18ndata-2.11.1-0.34 is installed
  • OR glibc-info-2.11.1-0.34 is installed
  • OR glibc-locale-2.11.1-0.34 is installed
  • OR glibc-locale-32bit-2.11.1-0.34 is installed
  • OR glibc-locale-x86-2.11.1-0.34 is installed
  • OR glibc-profile-2.11.1-0.34 is installed
  • OR glibc-profile-32bit-2.11.1-0.34 is installed
  • OR glibc-profile-x86-2.11.1-0.34 is installed
  • OR glibc-x86-2.11.1-0.34 is installed
  • OR libxcrypt-3.0.3-0.4 is installed
  • OR libxcrypt-32bit-3.0.3-0.4 is installed
  • OR nscd-2.11.1-0.34 is installed
  • OR pam-modules-11-1.18 is installed
  • OR pam-modules-32bit-11-1.18 is installed
  • OR pwdutils-3.2.8-0.4 is installed
  • OR pwdutils-plugin-audit-3.2.8-0.4 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 11 SP1 is installed
  • AND
  • libMagickCore1-6.4.3.6-7.24 is installed
  • OR libMagickCore1-32bit-6.4.3.6-7.24 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server 11 SP1-TERADATA is installed
  • AND
  • libMagickCore1-6.4.3.6-7.24 is installed
  • OR libMagickCore1-32bit-6.4.3.6-7.24 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server 11 SP2 is installed
  • AND
  • libMagickCore1-6.4.3.6-7.24 is installed
  • OR libMagickCore1-32bit-6.4.3.6-7.24 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP1-TERADATA is installed
  • AND
  • libMagickCore1-6.4.3.6-7.24 is installed
  • OR libMagickCore1-32bit-6.4.3.6-7.24 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 11 SP1 is installed
  • AND libgdiplus0-2.0-11.20 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server 11 SP1-TERADATA is installed
  • AND libgdiplus0-2.0-11.20 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP1-TERADATA is installed
  • AND libgdiplus0-2.0-11.20 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server 11 SP1 is installed
  • AND Package Information
  • PolicyKit-0.9-14.34 is installed
  • OR PolicyKit-32bit-0.9-14.34 is installed
  • OR PolicyKit-doc-0.9-14.34 is installed
  • OR PolicyKit-x86-0.9-14.34 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 11 SP1-CLIENT-TOOLS is installed
  • AND
  • rhnmd-5.3.7-0.9 is installed
  • OR spacewalk-backend-libs-1.2.74-0.20 is installed
  • OR spacewalk-certs-tools-1.2.2-0.16 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP1-CLIENT-TOOLS is installed
  • AND
  • rhnmd-5.3.7-0.9 is installed
  • OR spacewalk-backend-libs-1.2.74-0.20 is installed
  • OR spacewalk-certs-tools-1.2.2-0.16 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 11 SP1-LTSS is installed
  • AND
  • MozillaFirefox-24.3.0esr-0.4.2 is installed
  • OR MozillaFirefox-branding-SLED-24-0.4.10 is installed
  • OR MozillaFirefox-translations-24.3.0esr-0.4.2 is installed
  • OR firefox-libgcc_s1-4.7.2_20130108-0.16 is installed
  • OR firefox-libstdc++6-4.7.2_20130108-0.16 is installed
  • OR libfreebl3-3.15.4-0.4.2 is installed
  • OR libfreebl3-32bit-3.15.4-0.4.2 is installed
  • OR mozilla-nspr-4.10.2-0.3 is installed
  • OR mozilla-nspr-32bit-4.10.2-0.3 is installed
  • OR mozilla-nss-3.15.4-0.4.2 is installed
  • OR mozilla-nss-32bit-3.15.4-0.4.2 is installed
  • OR mozilla-nss-tools-3.15.4-0.4.2 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server 11 SP1-TERADATA is installed
  • AND
  • MozillaFirefox-24.3.0esr-0.4.2 is installed
  • OR MozillaFirefox-branding-SLED-24-0.4.10 is installed
  • OR MozillaFirefox-translations-24.3.0esr-0.4.2 is installed
  • OR firefox-libgcc_s1-4.7.2_20130108-0.16 is installed
  • OR firefox-libstdc++6-4.7.2_20130108-0.16 is installed
  • OR libfreebl3-3.15.4-0.4.2 is installed
  • OR libfreebl3-32bit-3.15.4-0.4.2 is installed
  • OR mozilla-nspr-4.10.2-0.3 is installed
  • OR mozilla-nspr-32bit-4.10.2-0.3 is installed
  • OR mozilla-nss-3.15.4-0.4.2 is installed
  • OR mozilla-nss-32bit-3.15.4-0.4.2 is installed
  • OR mozilla-nss-tools-3.15.4-0.4.2 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP1-LTSS is installed
  • AND
  • MozillaFirefox-24.3.0esr-0.4.2 is installed
  • OR MozillaFirefox-branding-SLED-24-0.4.10 is installed
  • OR MozillaFirefox-translations-24.3.0esr-0.4.2 is installed
  • OR firefox-libgcc_s1-4.7.2_20130108-0.16 is installed
  • OR firefox-libstdc++6-4.7.2_20130108-0.16 is installed
  • OR libfreebl3-3.15.4-0.4.2 is installed
  • OR libfreebl3-32bit-3.15.4-0.4.2 is installed
  • OR mozilla-nspr-4.10.2-0.3 is installed
  • OR mozilla-nspr-32bit-4.10.2-0.3 is installed
  • OR mozilla-nss-3.15.4-0.4.2 is installed
  • OR mozilla-nss-32bit-3.15.4-0.4.2 is installed
  • OR mozilla-nss-tools-3.15.4-0.4.2 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP1-TERADATA is installed
  • AND
  • MozillaFirefox-24.3.0esr-0.4.2 is installed
  • OR MozillaFirefox-branding-SLED-24-0.4.10 is installed
  • OR MozillaFirefox-translations-24.3.0esr-0.4.2 is installed
  • OR firefox-libgcc_s1-4.7.2_20130108-0.16 is installed
  • OR firefox-libstdc++6-4.7.2_20130108-0.16 is installed
  • OR libfreebl3-3.15.4-0.4.2 is installed
  • OR libfreebl3-32bit-3.15.4-0.4.2 is installed
  • OR mozilla-nspr-4.10.2-0.3 is installed
  • OR mozilla-nspr-32bit-4.10.2-0.3 is installed
  • OR mozilla-nss-3.15.4-0.4.2 is installed
  • OR mozilla-nss-32bit-3.15.4-0.4.2 is installed
  • OR mozilla-nss-tools-3.15.4-0.4.2 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 11 SP1-TERADATA is installed
  • AND
  • MozillaFirefox-68.3.0-78.54 is installed
  • OR MozillaFirefox-translations-common-68.3.0-78.54 is installed
  • OR MozillaFirefox-translations-other-68.3.0-78.54 is installed
  • OR libfreebl3-3.47.1-38.12 is installed
  • OR libfreebl3-32bit-3.47.1-38.12 is installed
  • OR libsoftokn3-3.47.1-38.12 is installed
  • OR libsoftokn3-32bit-3.47.1-38.12 is installed
  • OR mozilla-nspr-4.23-29.9 is installed
  • OR mozilla-nspr-32bit-4.23-29.9 is installed
  • OR mozilla-nss-3.47.1-38.12 is installed
  • OR mozilla-nss-32bit-3.47.1-38.12 is installed
  • OR mozilla-nss-certs-3.47.1-38.12 is installed
  • OR mozilla-nss-certs-32bit-3.47.1-38.12 is installed
  • OR mozilla-nss-tools-3.47.1-38.12 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP1-TERADATA is installed
  • AND
  • MozillaFirefox-68.3.0-78.54 is installed
  • OR MozillaFirefox-translations-common-68.3.0-78.54 is installed
  • OR MozillaFirefox-translations-other-68.3.0-78.54 is installed
  • OR libfreebl3-3.47.1-38.12 is installed
  • OR libfreebl3-32bit-3.47.1-38.12 is installed
  • OR libsoftokn3-3.47.1-38.12 is installed
  • OR libsoftokn3-32bit-3.47.1-38.12 is installed
  • OR mozilla-nspr-4.23-29.9 is installed
  • OR mozilla-nspr-32bit-4.23-29.9 is installed
  • OR mozilla-nss-3.47.1-38.12 is installed
  • OR mozilla-nss-32bit-3.47.1-38.12 is installed
  • OR mozilla-nss-certs-3.47.1-38.12 is installed
  • OR mozilla-nss-certs-32bit-3.47.1-38.12 is installed
  • OR mozilla-nss-tools-3.47.1-38.12 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 11 SP2 is installed
  • AND
  • apache2-mod_php5-5.2.14-0.7.30.50 is installed
  • OR php5-5.2.14-0.7.30.50 is installed
  • OR php5-bcmath-5.2.14-0.7.30.50 is installed
  • OR php5-bz2-5.2.14-0.7.30.50 is installed
  • OR php5-calendar-5.2.14-0.7.30.50 is installed
  • OR php5-ctype-5.2.14-0.7.30.50 is installed
  • OR php5-curl-5.2.14-0.7.30.50 is installed
  • OR php5-dba-5.2.14-0.7.30.50 is installed
  • OR php5-dbase-5.2.14-0.7.30.50 is installed
  • OR php5-dom-5.2.14-0.7.30.50 is installed
  • OR php5-exif-5.2.14-0.7.30.50 is installed
  • OR php5-fastcgi-5.2.14-0.7.30.50 is installed
  • OR php5-ftp-5.2.14-0.7.30.50 is installed
  • OR php5-gd-5.2.14-0.7.30.50 is installed
  • OR php5-gettext-5.2.14-0.7.30.50 is installed
  • OR php5-gmp-5.2.14-0.7.30.50 is installed
  • OR php5-hash-5.2.14-0.7.30.50 is installed
  • OR php5-iconv-5.2.14-0.7.30.50 is installed
  • OR php5-json-5.2.14-0.7.30.50 is installed
  • OR php5-ldap-5.2.14-0.7.30.50 is installed
  • OR php5-mbstring-5.2.14-0.7.30.50 is installed
  • OR php5-mcrypt-5.2.14-0.7.30.50 is installed
  • OR php5-mysql-5.2.14-0.7.30.50 is installed
  • OR php5-odbc-5.2.14-0.7.30.50 is installed
  • OR php5-openssl-5.2.14-0.7.30.50 is installed
  • OR php5-pcntl-5.2.14-0.7.30.50 is installed
  • OR php5-pdo-5.2.14-0.7.30.50 is installed
  • OR php5-pear-5.2.14-0.7.30.50 is installed
  • OR php5-pgsql-5.2.14-0.7.30.50 is installed
  • OR php5-pspell-5.2.14-0.7.30.50 is installed
  • OR php5-shmop-5.2.14-0.7.30.50 is installed
  • OR php5-snmp-5.2.14-0.7.30.50 is installed
  • OR php5-soap-5.2.14-0.7.30.50 is installed
  • OR php5-suhosin-5.2.14-0.7.30.50 is installed
  • OR php5-sysvmsg-5.2.14-0.7.30.50 is installed
  • OR php5-sysvsem-5.2.14-0.7.30.50 is installed
  • OR php5-sysvshm-5.2.14-0.7.30.50 is installed
  • OR php5-tokenizer-5.2.14-0.7.30.50 is installed
  • OR php5-wddx-5.2.14-0.7.30.50 is installed
  • OR php5-xmlreader-5.2.14-0.7.30.50 is installed
  • OR php5-xmlrpc-5.2.14-0.7.30.50 is installed
  • OR php5-xmlwriter-5.2.14-0.7.30.50 is installed
  • OR php5-xsl-5.2.14-0.7.30.50 is installed
  • OR php5-zip-5.2.14-0.7.30.50 is installed
  • OR php5-zlib-5.2.14-0.7.30.50 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server 11 SP2-LTSS is installed
  • AND
  • apache2-mod_php5-5.2.14-0.7.30.50 is installed
  • OR php5-5.2.14-0.7.30.50 is installed
  • OR php5-bcmath-5.2.14-0.7.30.50 is installed
  • OR php5-bz2-5.2.14-0.7.30.50 is installed
  • OR php5-calendar-5.2.14-0.7.30.50 is installed
  • OR php5-ctype-5.2.14-0.7.30.50 is installed
  • OR php5-curl-5.2.14-0.7.30.50 is installed
  • OR php5-dba-5.2.14-0.7.30.50 is installed
  • OR php5-dbase-5.2.14-0.7.30.50 is installed
  • OR php5-dom-5.2.14-0.7.30.50 is installed
  • OR php5-exif-5.2.14-0.7.30.50 is installed
  • OR php5-fastcgi-5.2.14-0.7.30.50 is installed
  • OR php5-ftp-5.2.14-0.7.30.50 is installed
  • OR php5-gd-5.2.14-0.7.30.50 is installed
  • OR php5-gettext-5.2.14-0.7.30.50 is installed
  • OR php5-gmp-5.2.14-0.7.30.50 is installed
  • OR php5-hash-5.2.14-0.7.30.50 is installed
  • OR php5-iconv-5.2.14-0.7.30.50 is installed
  • OR php5-json-5.2.14-0.7.30.50 is installed
  • OR php5-ldap-5.2.14-0.7.30.50 is installed
  • OR php5-mbstring-5.2.14-0.7.30.50 is installed
  • OR php5-mcrypt-5.2.14-0.7.30.50 is installed
  • OR php5-mysql-5.2.14-0.7.30.50 is installed
  • OR php5-odbc-5.2.14-0.7.30.50 is installed
  • OR php5-openssl-5.2.14-0.7.30.50 is installed
  • OR php5-pcntl-5.2.14-0.7.30.50 is installed
  • OR php5-pdo-5.2.14-0.7.30.50 is installed
  • OR php5-pear-5.2.14-0.7.30.50 is installed
  • OR php5-pgsql-5.2.14-0.7.30.50 is installed
  • OR php5-pspell-5.2.14-0.7.30.50 is installed
  • OR php5-shmop-5.2.14-0.7.30.50 is installed
  • OR php5-snmp-5.2.14-0.7.30.50 is installed
  • OR php5-soap-5.2.14-0.7.30.50 is installed
  • OR php5-suhosin-5.2.14-0.7.30.50 is installed
  • OR php5-sysvmsg-5.2.14-0.7.30.50 is installed
  • OR php5-sysvsem-5.2.14-0.7.30.50 is installed
  • OR php5-sysvshm-5.2.14-0.7.30.50 is installed
  • OR php5-tokenizer-5.2.14-0.7.30.50 is installed
  • OR php5-wddx-5.2.14-0.7.30.50 is installed
  • OR php5-xmlreader-5.2.14-0.7.30.50 is installed
  • OR php5-xmlrpc-5.2.14-0.7.30.50 is installed
  • OR php5-xmlwriter-5.2.14-0.7.30.50 is installed
  • OR php5-xsl-5.2.14-0.7.30.50 is installed
  • OR php5-zip-5.2.14-0.7.30.50 is installed
  • OR php5-zlib-5.2.14-0.7.30.50 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP2 is installed
  • AND
  • apache2-mod_php5-5.2.14-0.7.30.50 is installed
  • OR php5-5.2.14-0.7.30.50 is installed
  • OR php5-bcmath-5.2.14-0.7.30.50 is installed
  • OR php5-bz2-5.2.14-0.7.30.50 is installed
  • OR php5-calendar-5.2.14-0.7.30.50 is installed
  • OR php5-ctype-5.2.14-0.7.30.50 is installed
  • OR php5-curl-5.2.14-0.7.30.50 is installed
  • OR php5-dba-5.2.14-0.7.30.50 is installed
  • OR php5-dbase-5.2.14-0.7.30.50 is installed
  • OR php5-dom-5.2.14-0.7.30.50 is installed
  • OR php5-exif-5.2.14-0.7.30.50 is installed
  • OR php5-fastcgi-5.2.14-0.7.30.50 is installed
  • OR php5-ftp-5.2.14-0.7.30.50 is installed
  • OR php5-gd-5.2.14-0.7.30.50 is installed
  • OR php5-gettext-5.2.14-0.7.30.50 is installed
  • OR php5-gmp-5.2.14-0.7.30.50 is installed
  • OR php5-hash-5.2.14-0.7.30.50 is installed
  • OR php5-iconv-5.2.14-0.7.30.50 is installed
  • OR php5-json-5.2.14-0.7.30.50 is installed
  • OR php5-ldap-5.2.14-0.7.30.50 is installed
  • OR php5-mbstring-5.2.14-0.7.30.50 is installed
  • OR php5-mcrypt-5.2.14-0.7.30.50 is installed
  • OR php5-mysql-5.2.14-0.7.30.50 is installed
  • OR php5-odbc-5.2.14-0.7.30.50 is installed
  • OR php5-openssl-5.2.14-0.7.30.50 is installed
  • OR php5-pcntl-5.2.14-0.7.30.50 is installed
  • OR php5-pdo-5.2.14-0.7.30.50 is installed
  • OR php5-pear-5.2.14-0.7.30.50 is installed
  • OR php5-pgsql-5.2.14-0.7.30.50 is installed
  • OR php5-pspell-5.2.14-0.7.30.50 is installed
  • OR php5-shmop-5.2.14-0.7.30.50 is installed
  • OR php5-snmp-5.2.14-0.7.30.50 is installed
  • OR php5-soap-5.2.14-0.7.30.50 is installed
  • OR php5-suhosin-5.2.14-0.7.30.50 is installed
  • OR php5-sysvmsg-5.2.14-0.7.30.50 is installed
  • OR php5-sysvsem-5.2.14-0.7.30.50 is installed
  • OR php5-sysvshm-5.2.14-0.7.30.50 is installed
  • OR php5-tokenizer-5.2.14-0.7.30.50 is installed
  • OR php5-wddx-5.2.14-0.7.30.50 is installed
  • OR php5-xmlreader-5.2.14-0.7.30.50 is installed
  • OR php5-xmlrpc-5.2.14-0.7.30.50 is installed
  • OR php5-xmlwriter-5.2.14-0.7.30.50 is installed
  • OR php5-xsl-5.2.14-0.7.30.50 is installed
  • OR php5-zip-5.2.14-0.7.30.50 is installed
  • OR php5-zlib-5.2.14-0.7.30.50 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP2-LTSS is installed
  • AND
  • apache2-mod_php5-5.2.14-0.7.30.50 is installed
  • OR php5-5.2.14-0.7.30.50 is installed
  • OR php5-bcmath-5.2.14-0.7.30.50 is installed
  • OR php5-bz2-5.2.14-0.7.30.50 is installed
  • OR php5-calendar-5.2.14-0.7.30.50 is installed
  • OR php5-ctype-5.2.14-0.7.30.50 is installed
  • OR php5-curl-5.2.14-0.7.30.50 is installed
  • OR php5-dba-5.2.14-0.7.30.50 is installed
  • OR php5-dbase-5.2.14-0.7.30.50 is installed
  • OR php5-dom-5.2.14-0.7.30.50 is installed
  • OR php5-exif-5.2.14-0.7.30.50 is installed
  • OR php5-fastcgi-5.2.14-0.7.30.50 is installed
  • OR php5-ftp-5.2.14-0.7.30.50 is installed
  • OR php5-gd-5.2.14-0.7.30.50 is installed
  • OR php5-gettext-5.2.14-0.7.30.50 is installed
  • OR php5-gmp-5.2.14-0.7.30.50 is installed
  • OR php5-hash-5.2.14-0.7.30.50 is installed
  • OR php5-iconv-5.2.14-0.7.30.50 is installed
  • OR php5-json-5.2.14-0.7.30.50 is installed
  • OR php5-ldap-5.2.14-0.7.30.50 is installed
  • OR php5-mbstring-5.2.14-0.7.30.50 is installed
  • OR php5-mcrypt-5.2.14-0.7.30.50 is installed
  • OR php5-mysql-5.2.14-0.7.30.50 is installed
  • OR php5-odbc-5.2.14-0.7.30.50 is installed
  • OR php5-openssl-5.2.14-0.7.30.50 is installed
  • OR php5-pcntl-5.2.14-0.7.30.50 is installed
  • OR php5-pdo-5.2.14-0.7.30.50 is installed
  • OR php5-pear-5.2.14-0.7.30.50 is installed
  • OR php5-pgsql-5.2.14-0.7.30.50 is installed
  • OR php5-pspell-5.2.14-0.7.30.50 is installed
  • OR php5-shmop-5.2.14-0.7.30.50 is installed
  • OR php5-snmp-5.2.14-0.7.30.50 is installed
  • OR php5-soap-5.2.14-0.7.30.50 is installed
  • OR php5-suhosin-5.2.14-0.7.30.50 is installed
  • OR php5-sysvmsg-5.2.14-0.7.30.50 is installed
  • OR php5-sysvsem-5.2.14-0.7.30.50 is installed
  • OR php5-sysvshm-5.2.14-0.7.30.50 is installed
  • OR php5-tokenizer-5.2.14-0.7.30.50 is installed
  • OR php5-wddx-5.2.14-0.7.30.50 is installed
  • OR php5-xmlreader-5.2.14-0.7.30.50 is installed
  • OR php5-xmlrpc-5.2.14-0.7.30.50 is installed
  • OR php5-xmlwriter-5.2.14-0.7.30.50 is installed
  • OR php5-xsl-5.2.14-0.7.30.50 is installed
  • OR php5-zip-5.2.14-0.7.30.50 is installed
  • OR php5-zlib-5.2.14-0.7.30.50 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for VMWare 11 SP2 is installed
  • AND
  • apache2-mod_php5-5.2.14-0.7.30.50 is installed
  • OR php5-5.2.14-0.7.30.50 is installed
  • OR php5-bcmath-5.2.14-0.7.30.50 is installed
  • OR php5-bz2-5.2.14-0.7.30.50 is installed
  • OR php5-calendar-5.2.14-0.7.30.50 is installed
  • OR php5-ctype-5.2.14-0.7.30.50 is installed
  • OR php5-curl-5.2.14-0.7.30.50 is installed
  • OR php5-dba-5.2.14-0.7.30.50 is installed
  • OR php5-dbase-5.2.14-0.7.30.50 is installed
  • OR php5-dom-5.2.14-0.7.30.50 is installed
  • OR php5-exif-5.2.14-0.7.30.50 is installed
  • OR php5-fastcgi-5.2.14-0.7.30.50 is installed
  • OR php5-ftp-5.2.14-0.7.30.50 is installed
  • OR php5-gd-5.2.14-0.7.30.50 is installed
  • OR php5-gettext-5.2.14-0.7.30.50 is installed
  • OR php5-gmp-5.2.14-0.7.30.50 is installed
  • OR php5-hash-5.2.14-0.7.30.50 is installed
  • OR php5-iconv-5.2.14-0.7.30.50 is installed
  • OR php5-json-5.2.14-0.7.30.50 is installed
  • OR php5-ldap-5.2.14-0.7.30.50 is installed
  • OR php5-mbstring-5.2.14-0.7.30.50 is installed
  • OR php5-mcrypt-5.2.14-0.7.30.50 is installed
  • OR php5-mysql-5.2.14-0.7.30.50 is installed
  • OR php5-odbc-5.2.14-0.7.30.50 is installed
  • OR php5-openssl-5.2.14-0.7.30.50 is installed
  • OR php5-pcntl-5.2.14-0.7.30.50 is installed
  • OR php5-pdo-5.2.14-0.7.30.50 is installed
  • OR php5-pear-5.2.14-0.7.30.50 is installed
  • OR php5-pgsql-5.2.14-0.7.30.50 is installed
  • OR php5-pspell-5.2.14-0.7.30.50 is installed
  • OR php5-shmop-5.2.14-0.7.30.50 is installed
  • OR php5-snmp-5.2.14-0.7.30.50 is installed
  • OR php5-soap-5.2.14-0.7.30.50 is installed
  • OR php5-suhosin-5.2.14-0.7.30.50 is installed
  • OR php5-sysvmsg-5.2.14-0.7.30.50 is installed
  • OR php5-sysvsem-5.2.14-0.7.30.50 is installed
  • OR php5-sysvshm-5.2.14-0.7.30.50 is installed
  • OR php5-tokenizer-5.2.14-0.7.30.50 is installed
  • OR php5-wddx-5.2.14-0.7.30.50 is installed
  • OR php5-xmlreader-5.2.14-0.7.30.50 is installed
  • OR php5-xmlrpc-5.2.14-0.7.30.50 is installed
  • OR php5-xmlwriter-5.2.14-0.7.30.50 is installed
  • OR php5-xsl-5.2.14-0.7.30.50 is installed
  • OR php5-zip-5.2.14-0.7.30.50 is installed
  • OR php5-zlib-5.2.14-0.7.30.50 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 11 SP2 is installed
  • AND
  • libxml2-2.7.6-0.25 is installed
  • OR libxml2-32bit-2.7.6-0.25 is installed
  • OR libxml2-doc-2.7.6-0.25 is installed
  • OR libxml2-python-2.7.6-0.25 is installed
  • OR libxml2-x86-2.7.6-0.25 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP2 is installed
  • AND
  • libxml2-2.7.6-0.25 is installed
  • OR libxml2-32bit-2.7.6-0.25 is installed
  • OR libxml2-doc-2.7.6-0.25 is installed
  • OR libxml2-python-2.7.6-0.25 is installed
  • OR libxml2-x86-2.7.6-0.25 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for VMWare 11 SP2 is installed
  • AND
  • libxml2-2.7.6-0.25 is installed
  • OR libxml2-32bit-2.7.6-0.25 is installed
  • OR libxml2-doc-2.7.6-0.25 is installed
  • OR libxml2-python-2.7.6-0.25 is installed
  • OR libxml2-x86-2.7.6-0.25 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server 11 SP2 is installed
  • AND Package Information
  • e2fsprogs-1.41.9-2.7 is installed
  • OR libcom_err2-1.41.9-2.7 is installed
  • OR libcom_err2-32bit-1.41.9-2.7 is installed
  • OR libcom_err2-x86-1.41.9-2.7 is installed
  • OR libext2fs2-1.41.9-2.7 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 11 SP2-LTSS is installed
  • AND
  • xen-4.1.6_08-17 is installed
  • OR xen-devel-4.1.6_08-17 is installed
  • OR xen-doc-html-4.1.6_08-17 is installed
  • OR xen-doc-pdf-4.1.6_08-17 is installed
  • OR xen-kmp-default-4.1.6_08_3.0.101_0.7.29-17 is installed
  • OR xen-kmp-pae-4.1.6_08_3.0.101_0.7.29-17 is installed
  • OR xen-kmp-trace-4.1.6_08_3.0.101_0.7.29-17 is installed
  • OR xen-libs-4.1.6_08-17 is installed
  • OR xen-libs-32bit-4.1.6_08-17 is installed
  • OR xen-tools-4.1.6_08-17 is installed
  • OR xen-tools-domU-4.1.6_08-17 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP2-LTSS is installed
  • AND
  • xen-4.1.6_08-17 is installed
  • OR xen-devel-4.1.6_08-17 is installed
  • OR xen-doc-html-4.1.6_08-17 is installed
  • OR xen-doc-pdf-4.1.6_08-17 is installed
  • OR xen-kmp-default-4.1.6_08_3.0.101_0.7.29-17 is installed
  • OR xen-kmp-pae-4.1.6_08_3.0.101_0.7.29-17 is installed
  • OR xen-kmp-trace-4.1.6_08_3.0.101_0.7.29-17 is installed
  • OR xen-libs-4.1.6_08-17 is installed
  • OR xen-libs-32bit-4.1.6_08-17 is installed
  • OR xen-tools-4.1.6_08-17 is installed
  • OR xen-tools-domU-4.1.6_08-17 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 11 SP3 is installed
  • AND
  • java-1_6_0-ibm-1.6.0_sr16.15-46 is installed
  • OR java-1_6_0-ibm-alsa-1.6.0_sr16.15-46 is installed
  • OR java-1_6_0-ibm-fonts-1.6.0_sr16.15-46 is installed
  • OR java-1_6_0-ibm-jdbc-1.6.0_sr16.15-46 is installed
  • OR java-1_6_0-ibm-plugin-1.6.0_sr16.15-46 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server 11 SP3-TERADATA is installed
  • AND
  • java-1_6_0-ibm-1.6.0_sr16.15-46 is installed
  • OR java-1_6_0-ibm-alsa-1.6.0_sr16.15-46 is installed
  • OR java-1_6_0-ibm-fonts-1.6.0_sr16.15-46 is installed
  • OR java-1_6_0-ibm-jdbc-1.6.0_sr16.15-46 is installed
  • OR java-1_6_0-ibm-plugin-1.6.0_sr16.15-46 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP3 is installed
  • AND
  • java-1_6_0-ibm-1.6.0_sr16.15-46 is installed
  • OR java-1_6_0-ibm-alsa-1.6.0_sr16.15-46 is installed
  • OR java-1_6_0-ibm-fonts-1.6.0_sr16.15-46 is installed
  • OR java-1_6_0-ibm-jdbc-1.6.0_sr16.15-46 is installed
  • OR java-1_6_0-ibm-plugin-1.6.0_sr16.15-46 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP3-TERADATA is installed
  • AND
  • java-1_6_0-ibm-1.6.0_sr16.15-46 is installed
  • OR java-1_6_0-ibm-alsa-1.6.0_sr16.15-46 is installed
  • OR java-1_6_0-ibm-fonts-1.6.0_sr16.15-46 is installed
  • OR java-1_6_0-ibm-jdbc-1.6.0_sr16.15-46 is installed
  • OR java-1_6_0-ibm-plugin-1.6.0_sr16.15-46 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for VMWare 11 SP3 is installed
  • AND
  • java-1_6_0-ibm-1.6.0_sr16.15-46 is installed
  • OR java-1_6_0-ibm-alsa-1.6.0_sr16.15-46 is installed
  • OR java-1_6_0-ibm-fonts-1.6.0_sr16.15-46 is installed
  • OR java-1_6_0-ibm-jdbc-1.6.0_sr16.15-46 is installed
  • OR java-1_6_0-ibm-plugin-1.6.0_sr16.15-46 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server 11 SP3 is installed
  • AND Package Information
  • krb5-1.6.3-133.49.54 is installed
  • OR krb5-32bit-1.6.3-133.49.54 is installed
  • OR krb5-apps-clients-1.6.3-133.49.54 is installed
  • OR krb5-apps-servers-1.6.3-133.49.54 is installed
  • OR krb5-client-1.6.3-133.49.54 is installed
  • OR krb5-server-1.6.3-133.49.54 is installed
  • OR krb5-x86-1.6.3-133.49.54 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 11 SP3-LTSS is installed
  • AND
  • MozillaFirefox-52.8.0esr-72.32 is installed
  • OR MozillaFirefox-translations-52.8.0esr-72.32 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server 11 SP3-TERADATA is installed
  • AND
  • MozillaFirefox-52.8.0esr-72.32 is installed
  • OR MozillaFirefox-translations-52.8.0esr-72.32 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP3-LTSS is installed
  • AND
  • MozillaFirefox-52.8.0esr-72.32 is installed
  • OR MozillaFirefox-translations-52.8.0esr-72.32 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP3-TERADATA is installed
  • AND
  • MozillaFirefox-52.8.0esr-72.32 is installed
  • OR MozillaFirefox-translations-52.8.0esr-72.32 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 11 SP3-LTSS is installed
  • AND
  • kernel-bigsmp-3.0.101-0.47.99 is installed
  • OR kernel-bigsmp-base-3.0.101-0.47.99 is installed
  • OR kernel-bigsmp-devel-3.0.101-0.47.99 is installed
  • OR kernel-default-3.0.101-0.47.99 is installed
  • OR kernel-default-base-3.0.101-0.47.99 is installed
  • OR kernel-default-devel-3.0.101-0.47.99 is installed
  • OR kernel-default-man-3.0.101-0.47.99 is installed
  • OR kernel-ec2-3.0.101-0.47.99 is installed
  • OR kernel-ec2-base-3.0.101-0.47.99 is installed
  • OR kernel-ec2-devel-3.0.101-0.47.99 is installed
  • OR kernel-pae-3.0.101-0.47.99 is installed
  • OR kernel-pae-base-3.0.101-0.47.99 is installed
  • OR kernel-pae-devel-3.0.101-0.47.99 is installed
  • OR kernel-source-3.0.101-0.47.99 is installed
  • OR kernel-syms-3.0.101-0.47.99 is installed
  • OR kernel-trace-3.0.101-0.47.99 is installed
  • OR kernel-trace-base-3.0.101-0.47.99 is installed
  • OR kernel-trace-devel-3.0.101-0.47.99 is installed
  • OR kernel-xen-3.0.101-0.47.99 is installed
  • OR kernel-xen-base-3.0.101-0.47.99 is installed
  • OR kernel-xen-devel-3.0.101-0.47.99 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP3-LTSS is installed
  • AND
  • kernel-bigsmp-3.0.101-0.47.99 is installed
  • OR kernel-bigsmp-base-3.0.101-0.47.99 is installed
  • OR kernel-bigsmp-devel-3.0.101-0.47.99 is installed
  • OR kernel-default-3.0.101-0.47.99 is installed
  • OR kernel-default-base-3.0.101-0.47.99 is installed
  • OR kernel-default-devel-3.0.101-0.47.99 is installed
  • OR kernel-default-man-3.0.101-0.47.99 is installed
  • OR kernel-ec2-3.0.101-0.47.99 is installed
  • OR kernel-ec2-base-3.0.101-0.47.99 is installed
  • OR kernel-ec2-devel-3.0.101-0.47.99 is installed
  • OR kernel-pae-3.0.101-0.47.99 is installed
  • OR kernel-pae-base-3.0.101-0.47.99 is installed
  • OR kernel-pae-devel-3.0.101-0.47.99 is installed
  • OR kernel-source-3.0.101-0.47.99 is installed
  • OR kernel-syms-3.0.101-0.47.99 is installed
  • OR kernel-trace-3.0.101-0.47.99 is installed
  • OR kernel-trace-base-3.0.101-0.47.99 is installed
  • OR kernel-trace-devel-3.0.101-0.47.99 is installed
  • OR kernel-xen-3.0.101-0.47.99 is installed
  • OR kernel-xen-base-3.0.101-0.47.99 is installed
  • OR kernel-xen-devel-3.0.101-0.47.99 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 11 SP3-TERADATA is installed
  • AND
  • ImageMagick-6.4.3.6-7.77 is installed
  • OR libMagickCore1-6.4.3.6-7.77 is installed
  • OR libMagickCore1-32bit-6.4.3.6-7.77 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP3-TERADATA is installed
  • AND
  • ImageMagick-6.4.3.6-7.77 is installed
  • OR libMagickCore1-6.4.3.6-7.77 is installed
  • OR libMagickCore1-32bit-6.4.3.6-7.77 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 11 SP4 is installed
  • AND
  • ntp-4.2.8p4-5 is installed
  • OR ntp-doc-4.2.8p4-5 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP4 is installed
  • AND
  • ntp-4.2.8p4-5 is installed
  • OR ntp-doc-4.2.8p4-5 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server 11 SP4 is installed
  • AND Package Information
  • libpython2_6-1_0-2.6.9-0.35 is installed
  • OR libpython2_6-1_0-32bit-2.6.9-0.35 is installed
  • OR libpython2_6-1_0-x86-2.6.9-0.35 is installed
  • OR python-base-2.6.9-0.35 is installed
  • OR python-base-32bit-2.6.9-0.35 is installed
  • OR python-base-x86-2.6.9-0.35 is installed
  • OR python-xml-2.6.9-0.35 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 11-SECURITY is installed
  • AND
  • curl-openssl1-7.37.0-70.41 is installed
  • OR libcurl4-openssl1-7.37.0-70.41 is installed
  • OR libcurl4-openssl1-32bit-7.37.0-70.41 is installed
  • OR libcurl4-openssl1-x86-7.37.0-70.41 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11-SECURITY is installed
  • AND
  • curl-openssl1-7.37.0-70.41 is installed
  • OR libcurl4-openssl1-7.37.0-70.41 is installed
  • OR libcurl4-openssl1-32bit-7.37.0-70.41 is installed
  • OR libcurl4-openssl1-x86-7.37.0-70.41 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12 is installed
  • AND
  • dbus-1-1.8.16-14 is installed
  • OR dbus-1-x11-1.8.16-14 is installed
  • OR libdbus-1-3-1.8.16-14 is installed
  • OR libdbus-1-3-32bit-1.8.16-14 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 is installed
  • AND
  • dbus-1-1.8.16-14 is installed
  • OR dbus-1-x11-1.8.16-14 is installed
  • OR libdbus-1-3-1.8.16-14 is installed
  • OR libdbus-1-3-32bit-1.8.16-14 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server 12 is installed
  • AND Package Information
  • automake-1.13.4-4 is installed
  • OR m4-1.4.16-15 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12 SP1 is installed
  • AND
  • kernel-default-3.12.59-60.41 is installed
  • OR kernel-default-base-3.12.59-60.41 is installed
  • OR kernel-default-devel-3.12.59-60.41 is installed
  • OR kernel-default-man-3.12.59-60.41 is installed
  • OR kernel-devel-3.12.59-60.41 is installed
  • OR kernel-macros-3.12.59-60.41 is installed
  • OR kernel-source-3.12.59-60.41 is installed
  • OR kernel-syms-3.12.59-60.41 is installed
  • OR kernel-xen-3.12.59-60.41 is installed
  • OR kernel-xen-base-3.12.59-60.41 is installed
  • OR kernel-xen-devel-3.12.59-60.41 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 SP1 is installed
  • AND
  • kernel-default-3.12.59-60.41 is installed
  • OR kernel-default-base-3.12.59-60.41 is installed
  • OR kernel-default-devel-3.12.59-60.41 is installed
  • OR kernel-default-man-3.12.59-60.41 is installed
  • OR kernel-devel-3.12.59-60.41 is installed
  • OR kernel-macros-3.12.59-60.41 is installed
  • OR kernel-source-3.12.59-60.41 is installed
  • OR kernel-syms-3.12.59-60.41 is installed
  • OR kernel-xen-3.12.59-60.41 is installed
  • OR kernel-xen-base-3.12.59-60.41 is installed
  • OR kernel-xen-devel-3.12.59-60.41 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server 12 SP1 is installed
  • AND Package Information
  • accountsservice-0.6.35-3 is installed
  • OR accountsservice-lang-0.6.35-3 is installed
  • OR libaccountsservice0-0.6.35-3 is installed
  • OR typelib-1_0-AccountsService-1_0-0.6.35-3 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12 SP1-LTSS is installed
  • AND
  • kgraft-patch-3_12_74-60_64_45-default-2-2 is installed
  • OR kgraft-patch-3_12_74-60_64_45-xen-2-2 is installed
  • OR kgraft-patch-SLE12-SP1_Update_16-2-2 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 SP1-LTSS is installed
  • AND
  • kgraft-patch-3_12_74-60_64_45-default-2-2 is installed
  • OR kgraft-patch-3_12_74-60_64_45-xen-2-2 is installed
  • OR kgraft-patch-SLE12-SP1_Update_16-2-2 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server 12 SP1-LTSS is installed
  • AND Package Information
  • kernel-default-3.12.74-60.64.48.1 is installed
  • OR kernel-default-base-3.12.74-60.64.48.1 is installed
  • OR kernel-default-devel-3.12.74-60.64.48.1 is installed
  • OR kernel-default-man-3.12.74-60.64.48.1 is installed
  • OR kernel-devel-3.12.74-60.64.48.1 is installed
  • OR kernel-macros-3.12.74-60.64.48.1 is installed
  • OR kernel-source-3.12.74-60.64.48.1 is installed
  • OR kernel-syms-3.12.74-60.64.48.1 is installed
  • OR kernel-xen-3.12.74-60.64.48.1 is installed
  • OR kernel-xen-base-3.12.74-60.64.48.1 is installed
  • OR kernel-xen-devel-3.12.74-60.64.48.1 is installed
  • OR kgraft-patch-3_12_74-60_64_48-default-1-2.1 is installed
  • OR kgraft-patch-3_12_74-60_64_48-xen-1-2.1 is installed
  • OR kgraft-patch-SLE12-SP1_Update_17-1-2.1 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12 SP2 is installed
  • AND
  • dhcp-4.3.3-10.11 is installed
  • OR dhcp-client-4.3.3-10.11 is installed
  • OR dhcp-relay-4.3.3-10.11 is installed
  • OR dhcp-server-4.3.3-10.11 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 SP2 is installed
  • AND
  • dhcp-4.3.3-10.11 is installed
  • OR dhcp-client-4.3.3-10.11 is installed
  • OR dhcp-relay-4.3.3-10.11 is installed
  • OR dhcp-server-4.3.3-10.11 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server 12 SP2 is installed
  • AND libXvMC1-1.0.8-3.57 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12 SP2-LTSS is installed
  • AND
  • kgraft-patch-4_4_74-92_35-default-11-2 is installed
  • OR kgraft-patch-SLE12-SP2_Update_12-11-2 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 SP2-LTSS is installed
  • AND
  • kgraft-patch-4_4_74-92_35-default-11-2 is installed
  • OR kgraft-patch-SLE12-SP2_Update_12-11-2 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12 SP3-ESPOS is installed
  • AND
  • python-cffi-1.11.2-5.11 is installed
  • OR python-cryptography-2.1.4-7.28 is installed
  • OR python-xattr-0.7.5-6.3 is installed
  • OR python3-cffi-1.11.2-5.11 is installed
  • OR python3-cryptography-2.1.4-7.28 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 SP3-ESPOS is installed
  • AND
  • python-cffi-1.11.2-5.11 is installed
  • OR python-cryptography-2.1.4-7.28 is installed
  • OR python-xattr-0.7.5-6.3 is installed
  • OR python3-cffi-1.11.2-5.11 is installed
  • OR python3-cryptography-2.1.4-7.28 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12 SP3-TERADATA is installed
  • AND shadow-4.2.1-27.12 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 SP3-TERADATA is installed
  • AND shadow-4.2.1-27.12 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12 SP4 is installed
  • AND screen-4.0.4-23.3 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 SP4 is installed
  • AND screen-4.0.4-23.3 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12 SP4-ESPOS is installed
  • AND
  • MozillaFirefox-78.4.0-112.28 is installed
  • OR MozillaFirefox-devel-78.4.0-112.28 is installed
  • OR MozillaFirefox-translations-common-78.4.0-112.28 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 SP4-ESPOS is installed
  • AND
  • MozillaFirefox-78.4.0-112.28 is installed
  • OR MozillaFirefox-devel-78.4.0-112.28 is installed
  • OR MozillaFirefox-translations-common-78.4.0-112.28 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12 SP4-LTSS is installed
  • AND
  • libdcerpc-binding0-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR libdcerpc-binding0-32bit-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR libdcerpc0-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR libdcerpc0-32bit-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR libndr-krb5pac0-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR libndr-krb5pac0-32bit-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR libndr-nbt0-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR libndr-nbt0-32bit-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR libndr-standard0-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR libndr-standard0-32bit-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR libndr0-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR libndr0-32bit-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR libnetapi0-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR libnetapi0-32bit-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR libsamba-credentials0-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR libsamba-credentials0-32bit-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR libsamba-errors0-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR libsamba-errors0-32bit-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR libsamba-hostconfig0-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR libsamba-hostconfig0-32bit-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR libsamba-passdb0-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR libsamba-passdb0-32bit-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR libsamba-util0-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR libsamba-util0-32bit-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR libsamdb0-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR libsamdb0-32bit-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR libsmbclient0-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR libsmbclient0-32bit-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR libsmbconf0-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR libsmbconf0-32bit-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR libsmbldap0-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR libsmbldap0-32bit-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR libtevent-util0-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR libtevent-util0-32bit-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR libwbclient0-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR libwbclient0-32bit-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR samba-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR samba-client-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR samba-client-32bit-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR samba-doc-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR samba-libs-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR samba-libs-32bit-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR samba-winbind-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR samba-winbind-32bit-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 SP4-LTSS is installed
  • AND
  • libdcerpc-binding0-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR libdcerpc-binding0-32bit-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR libdcerpc0-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR libdcerpc0-32bit-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR libndr-krb5pac0-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR libndr-krb5pac0-32bit-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR libndr-nbt0-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR libndr-nbt0-32bit-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR libndr-standard0-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR libndr-standard0-32bit-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR libndr0-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR libndr0-32bit-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR libnetapi0-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR libnetapi0-32bit-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR libsamba-credentials0-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR libsamba-credentials0-32bit-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR libsamba-errors0-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR libsamba-errors0-32bit-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR libsamba-hostconfig0-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR libsamba-hostconfig0-32bit-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR libsamba-passdb0-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR libsamba-passdb0-32bit-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR libsamba-util0-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR libsamba-util0-32bit-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR libsamdb0-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR libsamdb0-32bit-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR libsmbclient0-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR libsmbclient0-32bit-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR libsmbconf0-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR libsmbconf0-32bit-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR libsmbldap0-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR libsmbldap0-32bit-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR libtevent-util0-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR libtevent-util0-32bit-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR libwbclient0-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR libwbclient0-32bit-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR samba-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR samba-client-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR samba-client-32bit-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR samba-doc-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR samba-libs-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR samba-libs-32bit-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR samba-winbind-4.6.16+git.237.40a3f495f75-3.55 is installed
  • OR samba-winbind-32bit-4.6.16+git.237.40a3f495f75-3.55 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12 SP5 is installed
  • AND
  • libqt4-4.8.7-8.13 is installed
  • OR libqt4-32bit-4.8.7-8.13 is installed
  • OR libqt4-devel-doc-4.8.7-8.13 is installed
  • OR libqt4-qt3support-4.8.7-8.13 is installed
  • OR libqt4-qt3support-32bit-4.8.7-8.13 is installed
  • OR libqt4-sql-4.8.7-8.13 is installed
  • OR libqt4-sql-32bit-4.8.7-8.13 is installed
  • OR libqt4-sql-mysql-4.8.7-8.13 is installed
  • OR libqt4-sql-plugins-4.8.7-8.13 is installed
  • OR libqt4-sql-sqlite-4.8.7-8.13 is installed
  • OR libqt4-x11-4.8.7-8.13 is installed
  • OR libqt4-x11-32bit-4.8.7-8.13 is installed
  • OR qt4-x11-tools-4.8.7-8.13 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 SP5 is installed
  • AND
  • libqt4-4.8.7-8.13 is installed
  • OR libqt4-32bit-4.8.7-8.13 is installed
  • OR libqt4-devel-doc-4.8.7-8.13 is installed
  • OR libqt4-qt3support-4.8.7-8.13 is installed
  • OR libqt4-qt3support-32bit-4.8.7-8.13 is installed
  • OR libqt4-sql-4.8.7-8.13 is installed
  • OR libqt4-sql-32bit-4.8.7-8.13 is installed
  • OR libqt4-sql-mysql-4.8.7-8.13 is installed
  • OR libqt4-sql-plugins-4.8.7-8.13 is installed
  • OR libqt4-sql-sqlite-4.8.7-8.13 is installed
  • OR libqt4-x11-4.8.7-8.13 is installed
  • OR libqt4-x11-32bit-4.8.7-8.13 is installed
  • OR qt4-x11-tools-4.8.7-8.13 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12-LTSS is installed
  • AND
  • kgraft-patch-3_12_51-52_34-default-7-2 is installed
  • OR kgraft-patch-3_12_51-52_34-xen-7-2 is installed
  • OR kgraft-patch-SLE12_Update_10-7-2 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12-LTSS is installed
  • AND
  • kgraft-patch-3_12_51-52_34-default-7-2 is installed
  • OR kgraft-patch-3_12_51-52_34-xen-7-2 is installed
  • OR kgraft-patch-SLE12_Update_10-7-2 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server for Raspberry Pi 12 SP2 is installed
  • AND Package Information
  • libecpg6-9.6.6-3.10 is installed
  • OR libpq5-9.6.6-3.10 is installed
  • OR postgresql96-9.6.6-3.10 is installed
  • OR postgresql96-contrib-9.6.6-3.10 is installed
  • OR postgresql96-docs-9.6.6-3.10 is installed
  • OR postgresql96-libs-9.6.6-3.10 is installed
  • OR postgresql96-server-9.6.6-3.10 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server for SAP Applications 11 SP2 is installed
  • AND Package Information
  • java-1_4_2-ibm-sap-1.4.2_sr13.13-0.3 is installed
  • OR java-1_4_2-ibm-sap-devel-1.4.2_sr13.13-0.3 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server for SAP Applications 11 SP4 is installed
  • AND Package Information
  • lighttpd-1.4.20-2.58 is installed
  • OR lighttpd-mod_cml-1.4.20-2.58 is installed
  • OR lighttpd-mod_magnet-1.4.20-2.58 is installed
  • OR lighttpd-mod_mysql_vhost-1.4.20-2.58 is installed
  • OR lighttpd-mod_rrdtool-1.4.20-2.58 is installed
  • OR lighttpd-mod_trigger_b4_dl-1.4.20-2.58 is installed
  • OR lighttpd-mod_webdav-1.4.20-2.58 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server for SAP Applications 12 is installed
  • AND Package Information
  • libstorage-2.25.16.1-3 is installed
  • OR libstorage-ruby-2.25.16.1-3 is installed
  • OR libstorage5-2.25.16.1-3 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server for SAP Applications 12 SP1 is installed
  • AND Package Information
  • kgraft-patch-3_12_67-60_64_18-default-8-3 is installed
  • OR kgraft-patch-3_12_67-60_64_18-xen-8-3 is installed
  • OR kgraft-patch-SLE12-SP1_Update_9-8-3 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server for SAP Applications 12 SP2 is installed
  • AND Package Information
  • kgraft-patch-4_4_121-92_80-default-2-2 is installed
  • OR kgraft-patch-SLE12-SP2_Update_22-2-2 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Software Development Kit 11 SP3 is installed
  • AND Package Information
  • libreadline5-5.2-147.22 is installed
  • OR readline-devel-5.2-147.22 is installed
  • OR readline-devel-32bit-5.2-147.22 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Software Development Kit 11 SP4 is installed
  • AND Package Information
  • boinc-client-6.2.18-4.31 is installed
  • OR boinc-client-devel-6.2.18-4.31 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Workstation Extension 12 is installed
  • AND Package Information
  • libzmq3-4.0.4-13 is installed
  • OR zeromq-4.0.4-13 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Workstation Extension 12 SP1 is installed
  • AND Package Information
  • flash-player-11.2.202.643-146 is installed
  • OR flash-player-gnome-11.2.202.643-146 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Workstation Extension 12 SP2 is installed
  • AND Package Information
  • evince-3.20.1-6.14 is installed
  • OR typelib-1_0-EvinceDocument-3_0-3.20.1-6.14 is installed
  • OR typelib-1_0-EvinceView-3_0-3.20.1-6.14 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Workstation Extension 12 SP3 is installed
  • AND Package Information
  • gd-2.1.0-24.9 is installed
  • OR gd-32bit-2.1.0-24.9 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Workstation Extension 12 SP4 is installed
  • AND Package Information
  • gstreamer-plugins-base-1.8.3-13.3 is installed
  • OR libgstfft-1_0-0-32bit-1.8.3-13.3 is installed
  • OR typelib-1_0-GstAudio-1_0-1.8.3-13.3 is installed
  • OR typelib-1_0-GstPbutils-1_0-1.8.3-13.3 is installed
  • OR typelib-1_0-GstTag-1_0-1.8.3-13.3 is installed
  • OR typelib-1_0-GstVideo-1_0-1.8.3-13.3 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Workstation Extension 12 SP5 is installed
  • AND Package Information
  • python-base-2.7.13-28.36 is installed
  • OR python-devel-2.7.13-28.36 is installed
  • Definition Synopsis
  • SUSE OpenStack Cloud 6 is installed
  • AND apache2-mod_wsgi-4.4.13-1.1 is installed
  • Definition Synopsis
  • SUSE OpenStack Cloud 7 is installed
  • AND python-oslo.middleware-3.19.0-3.1 is installed
  • Definition Synopsis
  • SUSE Package Hub for SUSE Linux Enterprise 12 is installed
  • AND Package Information
  • MozillaThunderbird-45.5.1-17 is installed
  • OR MozillaThunderbird-buildsymbols-45.5.1-17 is installed
  • OR MozillaThunderbird-devel-45.5.1-17 is installed
  • OR MozillaThunderbird-translations-common-45.5.1-17 is installed
  • OR MozillaThunderbird-translations-other-45.5.1-17 is installed
  • Definition Synopsis
  • SUSE Package Hub for SUSE Linux Enterprise 12 SP2 is installed
  • AND Package Information
  • chromedriver-63.0.3239.108-43 is installed
  • OR chromium-63.0.3239.108-43 is installed
  • Definition Synopsis
  • SUSE Package Hub for SUSE Linux Enterprise 12 SP3 is installed
  • AND Package Information
  • libsingularity1-2.3.2-11 is installed
  • OR singularity-2.3.2-11 is installed
  • OR singularity-devel-2.3.2-11 is installed
  • BACK