Using travis yaml files to specify dependencies and tests
by David Caro
--oLBj+sq0vYjzfsbl
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
Content-Transfer-Encoding: quoted-printable
Hi everyone!
After talking a bit with some of you, I think that we can start
planning a common build and dependency declaration for tests for the
ovirt products, to improve and automate most of the ci process and
maintenance.
Current status:
=3D=3D Dependencies
Right now we have 4 types of dependencies:
* test dependencies
* tarball/srcrpm build dependencies
* rpm build dependencies
* installation dependencies
The last two are managed from the spec files through rpm/yum
dependency systems. But the first ones are managed manually on the
jobs on jenkins or puppet manifests. What separates it from the code
that actually requires them and adds an extra layer of maintenance and
synchronization between the code, the jenkins jobs and the puppet
repository.
=3D=3D Builds
We started using autotools to build most of the projects, but it's
not a global methodology and even being used on some projects, you
need to tune the run for each of them, specifying different variables
and running some side scripts.
=3D=3D Tests
Some projects use make check to run some of the tests, some tests are
totally outside the code and run only in jenkins jobs.
Some possible improvements:
=3D=3D Tests/builds
Using shell scripts:
We talked before in another thread to create some generic script to
build the artifacts for the product and to run the tests, namely we
talked about having 3 executables (bash scripts probably) at the root
of each project, that should not require any parameters:
./build-artifacts
This should generate any artifacts to be archives (isos, rpms,
debs, tarballs, ...) and leave them at ./exported-artifacts/
directory, for the build system to collect, removing any
previous artifacts if needed.
./check_patch
Runs all the tests required for any new patchset in gerrit, for
non-merged changes, should be fast to run to get feedback easily
./check_merge
Runs all the tests for any change that is going to be merged
(right now we are not using gates, so it actually after merge,
but the idea is to use this as gate for any merge to the
repo). This can be more resource hungry than check_path.
That way it will let you use easily any framework that you want to use
for your project, but still let it be easy to maintain in the global
ci/build system (you can use pip, tox, maven, gradle, autotools, make,
rake, ...). This will not allow at first running tests in parallel in
jenkins, but we can in the future add that possibility (for example,
allowing the user to define more than one check script, like
check_patch.mytest1 and check_patch.mytest2 and make jenkins run them
in parallel).
I started a POC of this process here [1]
Using travis yaml files:
Using a travis compliant yaml file [2]. That will be less flexible
than the above solution and will not allow you to run tests in
parallel, though it will let you use travis at any point to offload
our ci if needed.
=3D=3D Dependencies
Using plain text files:
Similar to the above scripts solution, I though of adding an extra
file, with the same name, to declare the dependencies to run that
script. Adding a suffix in case of different requirements for
different distros (matching facter fact strings), for example:
./build-artifacts.req
Main requirements file, used if no more specific one
found. With a newline separated list of packages to install on
the environment (jenkins will take care of which package
manager to use).
./build-artifacts.req.fc20
Specific requirements for fc20 environment, replaces the
general one if present.
And the same for the other scripts (check_patch and check_merge).
Using travis yaml file:
Using a travis compliant yaml file with some extensions to declare
the different dependencies for each type and os/distro. That will
allow you to have only one extra file in your repo, though you'd have
to duplicate some of the requirements as travis only has ubuntu and
forces you to run scripts to install dependencies.
What do you think? Do you have any better idea?
ps. About using an external repository to store the
scripts/requirements for the code. The issue with this is that it
forces you to bind a code change in the code repo, to a
script/dependency change in the scripts repo, and that adds a lot of
extra maintenance and source of issues and failures. If you know a way
of doing it like that without all the fuss, I'd love to hear it.
For example, imagine that you have vdsm and the dependencies are in
another repo, now you send a patch to vdsm that requires you to run a
specific pep8 version to pass the patch tests, so you have to change
the script repo to add that dependency, but doing that you will brake
all the other patches tests because they require the older pep8
version, so you have to somehow specify in the vdsm patch that you
require a specific commit from the scripts repo to be tested with...
Having both in the same repo, allows you to do the code change and the
dependency/script change in the same patchset, and test it right away
with the correct scripts/deps.
It also binds together code and tests to some point, what is nice to
have in a product view, because you know for each version which tests
it passed and have a better idea of the possible failures for that
version.
[1] http://gerrit.ovirt.org/#/admin/projects/repoman
[2] http://docs.travis-ci.com/
--=20
David Caro
Red Hat S.L.
Continuous Integration Engineer - EMEA ENG Virtualization R&D
Tel.: +420 532 294 605
Email: dcaro(a)redhat.com
Web: www.redhat.com
RHT Global #: 82-62605
--oLBj+sq0vYjzfsbl
Content-Type: application/pgp-signature
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1
iQEcBAEBAgAGBQJUvnkrAAoJEEBxx+HSYmnD2f0H/1t40fR3h4Tlae891vmiPyYv
zxfTY6SlW0CJkSEis2ED2KZTkQZwQ6clfK+aRdGzSXL0mtUL9wr3Kk1/+i4tMQD/
5gqjP9Hc7HoMzDDvIRIvBdBm3fDgnvChkqr8xbRG1l4LIDGgDH2AE9uhkEClHpqV
CdhwrYGAU9DCBcB1kINZqKPn7q42nR1fkvl2ItIlJ6eRpY51bf6PNIW2INNvVB7V
3LMkO9E2Y1uen61HZ5A7MvQ58vaJJjxM4seCrcdkbAEtHxbtPxVAEG7mXlpZBcH6
EbT1KfLAyghRcpdGxa5PsAQRHcrTre+sKhsi17fI8JZBhJVmAfdbHd2iEhMlqZ8=
=LXWV
-----END PGP SIGNATURE-----
--oLBj+sq0vYjzfsbl--
9 years, 9 months
Introduction: Vishnu
by Vishnu Sreekumar
Hi,
I have been working as a Linux Admin for the last 7 years. I use Python,
Ruby and Bash for scripting and have got some hands on in configuration
management using Chef.
I wanted to contribute to an Open Source project for long time and Susan
Hall's this blog post landed me in Ovirt.
https://www.linux.com/learn/linux-certifications/799202-how-to-gain-exper...
I use Amazon Web Services a lot as part of my job and trying to learn
private and public cloud computing space. I'm pretty new to OVirt and yet
to try it out, but do want to help the Infrastructure team. I'm interested
in getting involved more in Packaging and configuration management.
My IRC handle is *vissree*
Thanks,
Vishnu
sg.linkedin.com/in/svishnu/
9 years, 9 months
Logwatch for linode01.ovirt.org (Linux)
by logwatch@lists.ovirt.org
################### Logwatch 7.3.6 (05/19/07) ####################
Processing Initiated: Sat Jan 31 03:36:44 2015
Date Range Processed: yesterday
( 2015-Jan-30 )
Period is day.
Detail Level of Output: 0
Type of Output: unformatted
Logfiles for Host: linode01.ovirt.org
##################################################################
--------------------- httpd Begin ------------------------
Requests with error response codes
400 Bad Request
/: 1 Time(s)
/pub/ovirt-3.4/rpm/: 1 Time(s)
/pub/ovirt-3.4/rpm/el6Server/: 1 Time(s)
/pub/ovirt-3.4/rpm/el6Server/x86_64/: 1 Time(s)
404 Not Found
//admin/index.php: 1 Time(s)
//bitrix/admin/index.php?lang=en: 1 Time(s)
//home/: 1 Time(s)
//index.php: 4 Time(s)
//index.php?option=com_jce&task=plugin&plu ... 86d0dd595c8e20b: 1 Time(s)
//robots.txt: 1 Time(s)
//wp-login.php: 1 Time(s)
//xmlrpc.php: 2 Time(s)
/__mailman/listinfo/arch: 2 Time(s)
/__mailman/listinfo/users: 2 Time(s)
/admin.php: 10 Time(s)
/admin/: 8 Time(s)
/admin/board: 1 Time(s)
/admin/index.php: 1 Time(s)
/admin/login.php: 9 Time(s)
/administrator/: 1 Time(s)
/administrator/index.php: 9 Time(s)
/bitrix/admin/index.php?lang=en: 10 Time(s)
/blog/wp-admin/: 12 Time(s)
/board: 2 Time(s)
/category/news/feed: 1 Time(s)
/category/news/feed/: 15 Time(s)
/component/user/register: 1 Time(s)
/components/: 9 Time(s)
/core/lib/php-ofc-library/ofc_upload_image.php: 3 Time(s)
/favicon.ico: 626 Time(s)
/home/: 1 Time(s)
/index.php/component/user/register: 1 Time(s)
/index.php?option=com_user&view=register: 1 Time(s)
/index.php?option=com_users&view=registration: 1 Time(s)
/listinfo/board: 1 Time(s)
/mailman/xxx: 1 Time(s)
/nyet.gif: 4 Time(s)
/old/wp-admin/: 14 Time(s)
/phpThumb.php?src=file.jpg&fltr[]=blur%7C9 ... phpThumbDebug=9: 2 Time(s)
/pipermail/components/: 9 Time(s)
/pipermail/engine-patches/2011-December/001956.html: 2 Time(s)
/pipermail/engine-patches/2012-April/011970.html: 1 Time(s)
/pipermail/engine-patches/2012-August/031748.html: 1 Time(s)
/pipermail/engine-patches/2012-February/004559.html: 1 Time(s)
/pipermail/engine-patches/2012-February/007604.html: 1 Time(s)
/pipermail/engine-patches/2012-January/004172.html: 1 Time(s)
/pipermail/engine-patches/2012-July/026590.html: 1 Time(s)
/pipermail/engine-patches/2012-July/027326.html: 1 Time(s)
/pipermail/engine-patches/2012-July/028123.html: 1 Time(s)
/pipermail/engine-patches/2012-March/010162.html: 2 Time(s)
/pipermail/engine-patches/2012-March/011248.html: 1 Time(s)
/pipermail/engine-patches/2012-May/019695.html: 1 Time(s)
/pipermail/engine-patches/2012-November/039852.html: 1 Time(s)
/pipermail/engine-patches/2012-November/040813.html: 1 Time(s)
/pipermail/engine-patches/2012-October/037780.html: 1 Time(s)
/pipermail/engine-patches/2012-September/034118.html: 1 Time(s)
/pipermail/engine-patches/2013-April/066200.html: 1 Time(s)
/pipermail/engine-patches/2013-April/066350.html: 1 Time(s)
/pipermail/engine-patches/2013-April/069165.html: 1 Time(s)
/pipermail/engine-patches/2013-August/093476.html: 2 Time(s)
/pipermail/engine-patches/2013-August/097218.html: 1 Time(s)
/pipermail/engine-patches/2013-January/051601.html: 1 Time(s)
/pipermail/engine-patches/2013-July/087168.html: 1 Time(s)
/pipermail/engine-patches/2013-July/091578.html: 1 Time(s)
/pipermail/engine-patches/2013-July/092037.html: 1 Time(s)
/pipermail/engine-patches/2013-July/092378.html: 1 Time(s)
/pipermail/engine-patches/2013-June/076919.html: 1 Time(s)
/pipermail/engine-patches/2013-March/061699.html: 1 Time(s)
/pipermail/engine-patches/2013-May/071702.html: 1 Time(s)
/pipermail/engine-patches/2013-November/120862.html: 1 Time(s)
/pipermail/engine-patches/2013-November/subject.html: 4 Time(s)
/pipermail/engine-patches/2013-October/114731.html: 1 Time(s)
/pipermail/engine-patches/2014-April/184667.html: 1 Time(s)
/pipermail/engine-patches/2014-February/152807.html: 1 Time(s)
/pipermail/engine-patches/2014-January/144463.html: 2 Time(s)
/pipermail/engine-patches/2014-January/147514.html: 1 Time(s)
/pipermail/engine-patches/2014-March/subject.html: 4 Time(s)
/pipermail/infra//xmlrpc.php: 1 Time(s)
/pipermail/infra/2012-November/tiki-register.php: 1 Time(s)
/pipermail/infra/2012-October//index.php?o ... 86d0dd595c8e20b: 1 Time(s)
/pipermail/infra/2012-august/000928.html: 28 Time(s)
/pipermail/infra/2013-December/tiki-register.php: 1 Time(s)
/pipermail/infra/2013-February//xmlrpc.php: 1 Time(s)
/pipermail/infra/2013-February/002067.html ... Se1A/xmlrpc.php: 1 Time(s)
/pipermail/infra/2013-February/002130.html ... cf4w/xmlrpc.php: 1 Time(s)
/pipermail/infra/2013-February/wp-content/ ... .my%2Fmagic.php: 1 Time(s)
/pipermail/infra/2013-February/wp-content/ ... om%2Fsimple.php: 2 Time(s)
/pipermail/infra/2013-February/wp-content/ ... y.com%2Fbad.php: 26 Time(s)
/pipermail/infra/2013-February/xmlrpc.php: 1 Time(s)
/pipermail/infra/2013-January/wp-content/t ... om%2Fsimple.php: 1 Time(s)
/pipermail/infra/2013-January/wp-content/t ... y.com%2Fbad.php: 2 Time(s)
/pipermail/infra/2013-June/wp-content/them ... .my%2Fmagic.php: 1 Time(s)
/pipermail/infra/2013-June/wp-content/them ... om%2Fsimple.php: 1 Time(s)
/pipermail/infra/2013-June/wp-content/them ... y.com%2Fbad.php: 1 Time(s)
/pipermail/infra/2013-March//xmlrpc.php: 2 Time(s)
/pipermail/infra/2013-March/002294.html&am ... phpThumbDebug=9: 2 Time(s)
/pipermail/infra/2013-March/phpThumb.php?s ... phpThumbDebug=9: 2 Time(s)
/pipermail/infra/2013-March/tiki-register.php: 2 Time(s)
/pipermail/infra/2013-March/wp-content/the ... om%2Fsimple.php: 1 Time(s)
/pipermail/infra/2013-March/wp-content/the ... y.com%2Fbad.php: 5 Time(s)
/pipermail/infra/2013-May//xmlrpc.php: 1 Time(s)
/pipermail/infra/2013-May/tiki-register.php: 2 Time(s)
/pipermail/infra/2013-October/tiki-register.php: 3 Time(s)
/pipermail/infra/2014-April/006086.html&am ... pload_image.php: 3 Time(s)
/pipermail/infra/2014-April/core/lib/php-o ... pload_image.php: 3 Time(s)
/pipermail/infra/2014-April/index.php?opti ... n&task=register: 2 Time(s)
/pipermail/infra/2014-April/tiki-register.php: 3 Time(s)
/pipermail/infra/2014-February/tiki-register.php: 1 Time(s)
/pipermail/infra/2014-June/components/: 6 Time(s)
/pipermail/infra/2014-June/wp-content/them ... y.com%2Fbad.php: 1 Time(s)
/pipermail/infra/2014-May/components/: 3 Time(s)
/pipermail/infra/2014-january/004902.html: 1 Time(s)
/pipermail/infra/components/: 9 Time(s)
/pipermail/kimchi-devel/2014-may/005174.html: 1 Time(s)
/pipermail/users/2012-June/007941.htmlings: 1 Time(s)
/pipermail/users/2012-October/009731.html/trackback/: 4 Time(s)
/pipermail/users/2013-February/012619.html ... img/icon_48.png: 2 Time(s)
/pipermail/users/2013-February/012619.html ... ver-icon(a)1x.png: 1 Time(s)
/pipermail/users/2013-February/administrator/: 1 Time(s)
/pipermail/users/2014-February/021458.html/trackback/: 1 Time(s)
/pipermail/users/2014-February/021488.html/trackback/: 1 Time(s)
/pipermail/users/2014-February/chrome://Tu ... t/css/light.css: 1 Time(s)
/pipermail/users/2014-december/029677.html: 1 Time(s)
/pipermail/users/2015-january/030657.html: 1 Time(s)
/plain/pub/ovirt-3.5-pre/rpm/el6Server/: 1 Time(s)
/plain/pub/ovirt-3.5-pre/rpm/fc19/noarch/o ... fc19.noarch.rpm: 2 Time(s)
/plain/pub/ovirt-3.5-pre/rpm/fc19/repodata/repomd.xml: 1 Time(s)
/plain/pub/ovirt-3.5-snapshot-static/rpm/e ... 3f-other.xml.gz: 1 Time(s)
/plain/pub/ovirt-3.5-snapshot/rpm/fc19/rep ... -primary.xml.gz: 1 Time(s)
/plain/pub/ovirt-master-snapshot-static/rp ... 30-other.xml.gz: 1 Time(s)
/plain/pub/ovirt-master-snapshot/rpm/fc19/ ... ilelists.xml.gz: 1 Time(s)
/pub/ovirt-3.3/rpm/fc21/repodata/repomd.xml: 8 Time(s)
/pub/ovirt-3.4-snapshot-static/rpm/fc20/repodata/repomd.xml: 25 Time(s)
/pub/ovirt-3.4-snapshot/rpm/fc20/repodata/repomd.xml: 25 Time(s)
/pub/ovirt-3.4/rpm/el6.0/repodata/repomd.xml: 1 Time(s)
/pub/ovirt-3.4/rpm/el6.6/repodata/repomd.xml: 3 Time(s)
/pub/ovirt-3.4/rpm/el6//.treeinfo: 9 Time(s)
/pub/ovirt-3.4/rpm/el6//treeinfo: 9 Time(s)
/pub/ovirt-3.4/rpm/el6/repodata/2e38bad336 ... mary.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.4/rpm/el6/repodata/4cd55fcf5f ... ists.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.4/rpm/el6/repodata/d016b3e20c ... mary.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.4/rpm/el6/repodata/e54dde6e89 ... ists.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5-pre/iso/ovirt-guest-tools/: 1 Time(s)
/pub/ovirt-3.5-pre/iso/ovirt-live-el6-3.5.0_rc4.iso.md5: 1 Time(s)
/pub/ovirt-3.5-pre/iso/ovirt-live-el6-3.5.0_rc5.iso.md5: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6/SRPMS/ovirt-eng ... 2-1.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6/SRPMS/ovirt-eng ... f23.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6/SRPMS/ovirt-hos ... 272.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6/SRPMS/ovirt-hos ... 297.el6.src.rpm: 2 Time(s)
/pub/ovirt-3.5-pre/rpm/el6/SRPMS/ovirt-hos ... c53.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6/SRPMS/ovirt-hos ... f58.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6/SRPMS/vdsm-4.14 ... 599.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6/SRPMS/vdsm-4.15 ... 049.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6/i686/ovirt-host ... -1.el6.i686.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6/ppc64/?C=N;O=A: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6/ppc64/vdsm-4.16 ... f.el6.ppc64.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6/x86_64/ovirt-ho ... .el6.x86_64.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6/x86_64/qemu-kvm ... 5.10.x86_64.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6/x86_64/vdsm-4.1 ... .el6.x86_64.rpm: 3 Time(s)
/pub/ovirt-3.5-pre/rpm/el6/x86_64/vdsm-deb ... .el6.x86_64.rpm: 2 Time(s)
/pub/ovirt-3.5-pre/rpm/el6/x86_64/vdsm-pyt ... .el6.x86_64.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Server/: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Server/SRPMS/ovi ... 0.3.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Server/SRPMS/ovi ... 4-1.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Server/SRPMS/ovi ... 912.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Server/SRPMS/vds ... 0b0.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Server/SRPMS/vds ... 786.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Server/ppc64/?C=M;O=A: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Server/ppc64/vds ... f.el6.ppc64.rpm: 2 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Server/repodata/ ... -primary.xml.gz: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Server/repodata/ ... 01-other.xml.gz: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Server/repodata/ ... ther.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Server/repodata/?C=M;O=A: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Server/repodata/?C=M;O=D: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Server/repodata/repomd.xml: 78 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Server/x86_64/jb ... .el6.x86_64.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Server/x86_64/ke ... .el6.x86_64.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Server/x86_64/li ... .el6.x86_64.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Server/x86_64/ov ... .el6.x86_64.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Server/x86_64/qe ... 5.14.x86_64.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Server/x86_64/vd ... .el6.x86_64.rpm: 5 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Workstation/: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Workstation/?C=D;O=D: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Workstation/?C=M;O=A: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Workstation/SRPM ... 0-1.el6.src.rpm: 2 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Workstation/SRPM ... 283.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Workstation/SRPM ... 297.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Workstation/SRPM ... 848.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Workstation/SRPM ... b7e.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Workstation/SRPM ... dfc.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Workstation/SRPM ... fcd.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Workstation/i686/: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Workstation/ppc64/?C=D;O=D: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Workstation/repo ... ists.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Workstation/repodata/: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Workstation/repodata/?C=M;O=A: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Workstation/repodata/repomd.xml: 3 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Workstation/x86_ ... .el6.x86_64.rpm: 7 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Workstation/x86_ ... 5.14.x86_64.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7/SRPMS/ovirt-eng ... .centos.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7/SRPMS/ovirt-eng ... 912.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7/SRPMS/ovirt-hos ... 5f8.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7/SRPMS/ovirt-hos ... 6da.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7/SRPMS/ovirt-hos ... 96f.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7/SRPMS/ovirt-hos ... a43.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7/SRPMS/ovirt-hos ... c53.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7/SRPMS/ovirt-nod ... 0-1.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7/noarch/vdsm-hoo ... .el7.noarch.rpm: 5 Time(s)
/pub/ovirt-3.5-pre/rpm/el7/noarch/vdsm-jso ... .el7.noarch.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7/noarch/vdsm-yaj ... .el7.noarch.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7/ppc64/vdsm-4.16.4-0.el7.ppc64.rpm: 2 Time(s)
/pub/ovirt-3.5-pre/rpm/el7/x86_64/qemu-kvm ... _0.2.x86_64.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7/x86_64/vdsm-deb ... .el7.x86_64.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Server/?C=M;O=A: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Server/SRPMS/ovi ... 0-1.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Server/SRPMS/ovi ... 1-1.el7.src.rpm: 2 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Server/SRPMS/ovi ... 4-1.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Server/SRPMS/ovi ... 5f8.el7.src.rpm: 2 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Server/SRPMS/ovi ... f86.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Server/SRPMS/vds ... 674.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Server/SRPMS/vds ... c19.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Server/ppc64/vds ... 0.el7.ppc64.rpm: 2 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Server/repodata/ ... ilelists.xml.gz: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Server/repodata/ ... mary.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Server/x86_64/: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Server/x86_64/io ... .el7.x86_64.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Server/x86_64/li ... _0.2.x86_64.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Server/x86_64/ov ... .el7.x86_64.rpm: 2 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Server/x86_64/qe ... _0.2.x86_64.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Server/x86_64/vd ... .el7.x86_64.rpm: 4 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Workstation/SRPM ... 1.0.3-1.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Workstation/SRPM ... c53.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Workstation/noar ... .el7.noarch.rpm: 5 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Workstation/ppc64/: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Workstation/repodata/repomd.xml: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Workstation/x86_ ... .el7.x86_64.rpm: 3 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Workstation/x86_ ... _0.2.x86_64.rpm: 2 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Workstation/x86_64/?C=S;O=A: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/SRPMS/mom-0.4. ... 96.fc19.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/SRPMS/ovirt-en ... 11.fc19.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/SRPMS/ovirt-en ... a0.fc19.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/SRPMS/ovirt-en ... de.fc19.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/SRPMS/ovirt-ho ... 6f.fc19.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/SRPMS/ovirt-ho ... 72.fc19.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/SRPMS/ovirt-ho ... a9.fc19.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/SRPMS/ovirt-ho ... f8.fc19.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/SRPMS/ovirt-im ... 70.fc19.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/SRPMS/ovirt-is ... 29.fc19.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/SRPMS/ovirt-is ... df.fc19.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/SRPMS/ovirt-lo ... -1.fc19.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/SRPMS/ovirt-lo ... 0c.fc19.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/SRPMS/ovirt-no ... -1.fc19.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/SRPMS/ovirt-re ... 1.beta1.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/SRPMS/vdsm-4.1 ... 86.fc19.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/SRPMS/vdsm-4.1 ... 99.fc19.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/SRPMS/vdsm-4.1 ... ba.fc19.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/noarch/otopi-1 ... fc19.noarch.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/noarch/otopi-d ... fc19.noarch.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/repodata/3932d ... mary.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/repodata/?C=S;O=A: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/repodata/repomd.xml: 5 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/x86_64/?C=M;O=A: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/x86_64/vdsm-4. ... fc19.x86_64.rpm: 2 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/x86_64/vdsm-de ... fc19.x86_64.rpm: 4 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/x86_64/vdsm-py ... fc19.x86_64.rpm: 2 Time(s)
/pub/ovirt-3.5-pre/rpm/fc20/SRPMS/ovirt-en ... .5.fc20.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc20/SRPMS/ovirt-ho ... 97.fc20.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc20/SRPMS/ovirt-lo ... er.fc20.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc20/repodata/f4f9e ... ists.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc20/x86_64/vdsm-4. ... fc20.x86_64.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc20/x86_64/vdsm-de ... fc20.x86_64.rpm: 2 Time(s)
/pub/ovirt-3.5-pre/rpm/fc20/x86_64/vdsm-py ... fc20.x86_64.rpm: 2 Time(s)
/pub/ovirt-3.5-pre/rpm/fc7/repodata/repomd.xml: 29 Time(s)
/pub/ovirt-3.5-pre/src/ioprocess/: 1 Time(s)
/pub/ovirt-3.5-pre/src/ioprocess/?C=M;O=A: 1 Time(s)
/pub/ovirt-3.5-pre/src/mom/: 1 Time(s)
/pub/ovirt-3.5-pre/src/mom/mom-0.4.0_master.tar.gz: 1 Time(s)
/pub/ovirt-3.5-pre/src/mom/mom-0.4.1_master.tar.gz.sig: 1 Time(s)
/pub/ovirt-3.5-pre/src/otopi/otopi-1.3.0_master.tar.gz.sig: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-engine-cli/ov ... -3.5.0.3.tar.gz: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-engine-dwh/ov ... .5.0_rc2.tar.gz: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-engine-dwh/ov ... pha2.tar.gz.sig: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-engine-dwh/ov ... wh-3.5.0.tar.gz: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-engine-extens ... 0_master.tar.gz: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-engine-jboss- ... 1.Final.zip.sig: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-engine-report ... .0_beta2.tar.gz: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-engine-report ... 0_alpha2.tar.gz: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-engine-report ... 0_rc.tar.gz.sig: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-engine-report ... _rc2.tar.gz.sig: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-engine-report ... _rc3.tar.gz.sig: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-engine-report ... ster.tar.gz.sig: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-engine-sdk-ja ... -3.5.0.0.tar.gz: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-engine-sdk-ja ... -3.5.0.2.tar.gz: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-engine-sdk-py ... .0.7.tar.gz.sig: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-engine/ovirt- ... 1_master.tar.gz: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-engine/ovirt- ... ster.tar.gz.sig: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-host-deploy-o ... ster.tar.gz.sig: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-host-deploy/o ... oy-1.3.0.tar.gz: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-hosted-engine ... 05072226.tar.gz: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-hosted-engine ... 18135352.tar.gz: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-hosted-engine ... 2240.tar.gz.sig: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-hosted-engine ... 23134034.tar.gz: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-hosted-engine ... 2324.tar.gz.sig: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-hosted-engine ... 25101556.tar.gz: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-hosted-engine ... 25193407.tar.gz: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-hosted-engine ... 30132240.tar.gz: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-hosted-engine ... up-1.2.1.tar.gz: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-image-uploade ... 0_master.tar.gz: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-iso-uploader/ ... er-3.5.0.tar.gz: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-node-plugin-h ... engine/?C=M;O=D: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-node-plugin-hosted-engine/: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-node-plugin-v ... sm-0.1.1.tar.gz: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-node-plugin-vdsm/: 2 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-node/: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-optimizer/: 2 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-optimizer/ovi ... izer-0.1.tar.gz: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-release-master/: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-release33/?C=D;O=D: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-release34/?C=S;O=A: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-release34/ovi ... 34-1.0.3.tar.gz: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-release35/ovi ... -001_rc1.tar.gz: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-release35/ovi ... 01_beta1.tar.gz: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-release35/ovi ... 1_alpha1.tar.gz: 2 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-release35/ovi ... eta1.tar.gz.sig: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-scheduler-proxy/: 1 Time(s)
/pub/ovirt-3.5-pre/src/qemu-kvm/?C=D;O=D: 1 Time(s)
/pub/ovirt-3.5-pre/src/sos-3.1.tar.gz.sig: 1 Time(s)
/pub/ovirt-3.5-pre/src/sos/sos-3.1.tar.gz.sig: 1 Time(s)
/pub/ovirt-3.5-pre/src/vdsm-jsonrpc-java/v ... 1_master.tar.gz: 1 Time(s)
/pub/ovirt-3.5-pre/src/vdsm/vdsm-4.16.4.tar.gz: 1 Time(s)
/pub/ovirt-3.5-pre/src/vdsm/vdsm-4.16.5.tar.gz: 1 Time(s)
/pub/ovirt-3.5-pre/src/vdsm/vdsm-4.16.5.tar.gz.sig: 1 Time(s)
/pub/ovirt-3.5-snapshot-static/rpm/el6.6/r ... ists.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5-snapshot-static/rpm/el6/rep ... -primary.xml.gz: 2 Time(s)
/pub/ovirt-3.5-snapshot-static/rpm/el6/rep ... 3f-other.xml.gz: 1 Time(s)
/pub/ovirt-3.5-snapshot-static/rpm/el6Work ... ilelists.xml.gz: 1 Time(s)
/pub/ovirt-3.5-snapshot-static/rpm/el7/noa ... .el7.noarch.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot-static/rpm/el7/rep ... -primary.xml.gz: 2 Time(s)
/pub/ovirt-3.5-snapshot-static/rpm/el7/rep ... 9a-other.xml.gz: 1 Time(s)
/pub/ovirt-3.5-snapshot-static/rpm/el7/rep ... ilelists.xml.gz: 1 Time(s)
/pub/ovirt-3.5-snapshot-static/rpm/el7Serv ... ilelists.xml.gz: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6.6/SRPMS/ov ... 173.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6.6/SRPMS/ov ... c78.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6.6/SRPMS/ov ... f70.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6.6/SRPMS/vd ... d65.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6.6/noarch/m ... .el6.noarch.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6.6/noarch/o ... .el6.noarch.rpm: 9 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6.6/noarch/o ... el6.noarch.rpm/: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6.6/noarch/v ... .el6.noarch.rpm: 20 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6.6/repodata ... ilelists.xml.gz: 2 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6.6/repodata ... ists.sqlite.bz2: 2 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6/SRPMS/ovir ... 66e.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6/SRPMS/ovir ... ee9.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6/SRPMS/vdsm ... cfd.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6/noarch/ovi ... .el6.noarch.rpm: 2 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6/repodata/1 ... 4b-other.xml.gz: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6/repodata/1 ... ther.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6/repodata/3 ... ists.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6/repodata/b ... mary.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6/x86_64/ovi ... .el6.x86_64.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6/x86_64/vds ... .el6.x86_64.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6Server/SRPM ... 335.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6Server/SRPM ... 78a.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6Server/SRPM ... 927.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6Server/SRPM ... cfd.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6Server/noar ... .el6.noarch.rpm: 2 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6Server/x86_ ... .el6.x86_64.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6Workstation ... .el6.noarch.rpm: 16 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6Workstation ... .el6.x86_64.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6Workstation ... 033.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6Workstation ... 5ac.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6Workstation ... 657.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6Workstation ... 927.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6Workstation ... d29.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7/SRPMS/ovir ... .centos.src.rpm: 2 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7/SRPMS/ovir ... 033.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7/SRPMS/ovir ... 205.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7/SRPMS/ovir ... 66e.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7/SRPMS/vdsm ... d29.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7/noarch/oto ... ntos.noarch.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7/noarch/ovi ... .el7.noarch.rpm: 2 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7/noarch/ovi ... ntos.noarch.rpm: 3 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7/noarch/vds ... .el7.noarch.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7/repodata/0 ... ilelists.xml.gz: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7/repodata/1 ... -primary.xml.gz: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7/repodata/4 ... d9-other.xml.gz: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7/repodata/6 ... 47-other.xml.gz: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7Server/SRPM ... .centos.src.rpm: 3 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7Server/SRPM ... 58d.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7Server/SRPM ... 70d.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7Server/noar ... .el7.noarch.rpm: 24 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7Server/noar ... ntos.noarch.rpm: 14 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7Server/repo ... 13-other.xml.gz: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7Server/repo ... ilelists.xml.gz: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7Server/repo ... ists.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7Workstation ... .centos.src.rpm: 2 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7Workstation ... .el7.noarch.rpm: 6 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7Workstation ... .el7.x86_64.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7Workstation ... 5ac.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7Workstation ... d9-other.xml.gz: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7Workstation ... ntos.noarch.rpm: 3 Time(s)
/pub/ovirt-3.5-snapshot/rpm/fc19/SRPMS/ovi ... 16.fc19.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/fc19/SRPMS/ovi ... 57.fc19.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/fc19/noarch/ot ... fc19.noarch.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/fc19/noarch/ov ... fc19.noarch.rpm: 2 Time(s)
/pub/ovirt-3.5-snapshot/rpm/fc19/repodata/ ... -primary.xml.gz: 2 Time(s)
/pub/ovirt-3.5-snapshot/rpm/fc19/repodata/ ... ists.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/fc19/repodata/ ... mary.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/fc19/x86_64/io ... fc19.x86_64.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/fc20/SRPMS/ovi ... 6c.fc20.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/fc20/noarch/ov ... fc20.noarch.rpm: 2 Time(s)
/pub/ovirt-3.5-snapshot/rpm/fc20/repodata/ ... ilelists.xml.gz: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/fc20/repodata/ ... ists.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/fc20/x86_64/vd ... fc20.x86_64.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/fc21/SRPMS/ovi ... 33.fc21.src.rpm: 2 Time(s)
/pub/ovirt-3.5-snapshot/rpm/fc21/SRPMS/ovi ... 73.fc21.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/fc21/noarch/mo ... fc21.noarch.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/fc21/noarch/vd ... fc21.noarch.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/src/ovirt-engine-a ... 20150109.tar.gz: 1 Time(s)
/pub/ovirt-3.5-snapshot/src/ovirt-engine-a ... 20150110.tar.gz: 1 Time(s)
/pub/ovirt-3.5-snapshot/src/ovirt-engine-e ... 4j-1.0.0.tar.gz: 1 Time(s)
/pub/ovirt-3.5-snapshot/src/ovirt-engine-s ... -3.5.0.9.tar.gz: 1 Time(s)
/pub/ovirt-3.5.bkp.20150119173800/rpm/el7Server/: 1 Time(s)
/pub/ovirt-3.5/rpm/el6.6/repodata/443e22d3 ... 84-other.xml.gz: 1 Time(s)
/pub/ovirt-3.5/rpm/el6.6/repodata/6de461bc ... ilelists.xml.gz: 1 Time(s)
/pub/ovirt-3.5/rpm/el6.6/x86_64/repodata/repomd.xml: 1 Time(s)
/pub/ovirt-3.5/rpm/el6/.treeinfo: 3 Time(s)
/pub/ovirt-3.5/rpm/el6/repodata/b3721ef310 ... f3-other.xml.gz: 1 Time(s)
/pub/ovirt-3.5/rpm/el6/repodata/f55cda7da3 ... -primary.xml.gz: 1 Time(s)
/pub/ovirt-3.5/rpm/el6/treeinfo: 3 Time(s)
/pub/ovirt-3.5/rpm/el6/x86_64/*: 1 Time(s)
/pub/ovirt-3.5/rpm/el6Server/.treeinfo: 3 Time(s)
/pub/ovirt-3.5/rpm/el6Server/repodata/ce02 ... ists.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5/rpm/el6Server/treeinfo: 3 Time(s)
/pub/ovirt-3.5/rpm/el7/.treeinfo: 3 Time(s)
/pub/ovirt-3.5/rpm/el7/repodata/4f7ce0d3ae ... ther.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5/rpm/el7/repodata/8115934c60 ... mary.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5/rpm/el7/repodata/c58529095e ... ther.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5/rpm/el7/repodata/c5b7e2e3a7 ... ists.sqlite.bz2: 2 Time(s)
/pub/ovirt-3.5/rpm/el7/treeinfo: 3 Time(s)
/pub/ovirt-3.5/rpm/el7Server/.treeinfo: 2 Time(s)
/pub/ovirt-3.5/rpm/el7Server/treeinfo: 2 Time(s)
/pub/ovirt-3.5/rpm/el7Workstation/repodata ... ther.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5/rpm/fc19/repodata/86ac012a0 ... ists.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5/rpm/fc21/.treeinfo: 2 Time(s)
/pub/ovirt-3.5/rpm/fc21/repodata/21e4b4018 ... -primary.xml.gz: 1 Time(s)
/pub/ovirt-3.5/rpm/fc21/treeinfo: 2 Time(s)
/pub/ovirt-master-snapshot-static/rpm/el6. ... 30-other.xml.gz: 1 Time(s)
/pub/ovirt-master-snapshot-static/rpm/el6/ ... 30-other.xml.gz: 1 Time(s)
/pub/ovirt-master-snapshot-static/rpm/el6/ ... mary.sqlite.bz2: 1 Time(s)
/pub/ovirt-master-snapshot-static/rpm/fc20 ... -primary.xml.gz: 1 Time(s)
/pub/ovirt-master-snapshot-static/rpm/fc21 ... ilelists.xml.gz: 1 Time(s)
/pub/ovirt-master-snapshot-static/src/spic ... l5-0.1.5.tar.gz: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6.6/SRPMS ... 173.el6.src.rpm: 2 Time(s)
/pub/ovirt-master-snapshot/rpm/el6.6/SRPMS ... 28c.el6.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6.6/x86_6 ... .el6.x86_64.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6/SRPMS/o ... 1a6.el6.src.rpm: 2 Time(s)
/pub/ovirt-master-snapshot/rpm/el6/SRPMS/o ... 76c.el6.src.rpm: 2 Time(s)
/pub/ovirt-master-snapshot/rpm/el6/SRPMS/o ... 914.el6.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6/SRPMS/v ... 4b0.el6.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6/SRPMS/v ... f84.el6.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6/noarch/ ... .el6.noarch.rpm: 6 Time(s)
/pub/ovirt-master-snapshot/rpm/el6/repodat ... -primary.xml.gz: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6/repodat ... 77-other.xml.gz: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6/repodat ... ilelists.xml.gz: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6/repodat ... ther.sqlite.bz2: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6/x86_64/ ... .el6.x86_64.rpm: 3 Time(s)
/pub/ovirt-master-snapshot/rpm/el6Server/S ... 56d.el6.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6Server/S ... de2.el6.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6Server/S ... f84.el6.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6Server/S ... fcb.el6.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6Server/n ... .el6.noarch.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6Server/r ... mary.sqlite.bz2: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6Server/r ... ther.sqlite.bz2: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6Workstat ... .el6.noarch.rpm: 24 Time(s)
/pub/ovirt-master-snapshot/rpm/el6Workstat ... .el6.x86_64.rpm: 2 Time(s)
/pub/ovirt-master-snapshot/rpm/el6Workstat ... 173.el6.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6Workstat ... 1a6.el6.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6Workstat ... 76c.el6.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6Workstat ... 78a.el6.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6Workstat ... 83-other.xml.gz: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6Workstat ... ab-other.xml.gz: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6Workstat ... ba7.el6.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6Workstat ... dc1.el6.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6Workstat ... f84.el6.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el7/SRPMS/o ... .centos.src.rpm: 2 Time(s)
/pub/ovirt-master-snapshot/rpm/el7/SRPMS/o ... 173.el7.src.rpm: 2 Time(s)
/pub/ovirt-master-snapshot/rpm/el7/SRPMS/o ... 44e.el7.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el7/SRPMS/o ... cd6.el7.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el7/noarch/ ... .el7.noarch.rpm: 14 Time(s)
/pub/ovirt-master-snapshot/rpm/el7/noarch/ ... ntos.noarch.rpm: 8 Time(s)
/pub/ovirt-master-snapshot/rpm/el7/x86_64/ ... .el7.x86_64.rpm: 4 Time(s)
/pub/ovirt-master-snapshot/rpm/el7Server/S ... .centos.src.rpm: 2 Time(s)
/pub/ovirt-master-snapshot/rpm/el7Server/S ... 033.el7.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el7Server/S ... 0dc.el7.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el7Server/S ... 1a6.el7.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el7Server/S ... 2ac.el7.src.rpm: 2 Time(s)
/pub/ovirt-master-snapshot/rpm/el7Server/S ... f84.el7.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el7Server/n ... .el7.noarch.rpm: 21 Time(s)
/pub/ovirt-master-snapshot/rpm/el7Server/n ... ntos.noarch.rpm: 4 Time(s)
/pub/ovirt-master-snapshot/rpm/el7Server/r ... -primary.xml.gz: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el7Server/r ... ilelists.xml.gz: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el7Server/r ... ther.sqlite.bz2: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el7Server/x ... .el7.x86_64.rpm: 4 Time(s)
/pub/ovirt-master-snapshot/rpm/el7Workstat ... -primary.xml.gz: 2 Time(s)
/pub/ovirt-master-snapshot/rpm/el7Workstat ... .centos.src.rpm: 3 Time(s)
/pub/ovirt-master-snapshot/rpm/el7Workstat ... .el7.noarch.rpm: 6 Time(s)
/pub/ovirt-master-snapshot/rpm/el7Workstat ... .el7.x86_64.rpm: 2 Time(s)
/pub/ovirt-master-snapshot/rpm/el7Workstat ... 3c-other.xml.gz: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el7Workstat ... 943.el7.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el7Workstat ... 9c5.el7.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el7Workstat ... ilelists.xml.gz: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el7Workstat ... ntos.noarch.rpm: 2 Time(s)
/pub/ovirt-master-snapshot/rpm/fc19/SRPMS/ ... 8a.fc19.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/fc19/repoda ... ilelists.xml.gz: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/fc20/SRPMS/ ... 0c.fc20.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/fc20/SRPMS/ ... 58.fc20.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/fc20/SRPMS/ ... 6d.fc20.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/fc20/SRPMS/ ... 73.fc20.src.rpm: 4 Time(s)
/pub/ovirt-master-snapshot/rpm/fc20/SRPMS/ ... 81.fc20.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/fc20/SRPMS/ ... a6.fc20.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/fc20/noarch ... fc20.noarch.rpm: 23 Time(s)
/pub/ovirt-master-snapshot/rpm/fc20/repoda ... ilelists.xml.gz: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/fc20/x86_64 ... fc20.x86_64.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/fc21/SRPMS/ ... 73.fc21.src.rpm: 2 Time(s)
/pub/ovirt-master-snapshot/rpm/fc21/SRPMS/ ... a6.fc21.src.rpm: 2 Time(s)
/pub/ovirt-master-snapshot/rpm/fc21/SRPMS/ ... b0.fc21.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/fc21/SRPMS/ ... d6.fc21.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/fc21/SRPMS/ ... ea.fc21.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/fc21/noarch ... fc21.noarch.rpm: 30 Time(s)
/pub/ovirt-master-snapshot/rpm/fc21/repoda ... -primary.xml.gz: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/fc21/repoda ... 8d-other.xml.gz: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/fc21/repoda ... ef-other.xml.gz: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/fc21/repoda ... ilelists.xml.gz: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/fc21/x86_64 ... fc21.x86_64.rpm: 3 Time(s)
/pub/ovirt-master-snapshot/src/ovirt-sched ... ge0e6875.tar.gz: 1 Time(s)
/pub/ovirt-snapshot-static/rpm/el6/repodata/repomd.xml: 2 Time(s)
/pub/ovirt-snapshot/rpm/el6/noarch/otopi-1 ... .el6.noarch.rpm: 1 Time(s)
/pub/ovirt-snapshot/rpm/el6/noarch/otopi-j ... .el6.noarch.rpm: 1 Time(s)
/pub/ovirt-snapshot/rpm/el6/noarch/ovirt-e ... .el6.noarch.rpm: 14 Time(s)
/pub/ovirt-snapshot/rpm/el6/noarch/ovirt-h ... .el6.noarch.rpm: 2 Time(s)
/pub/ovirt-snapshot/rpm/el6/repodata/repomd.xml: 2 Time(s)
/pub/yum-rep/ovirt-release35.rpm: 1 Time(s)
/pub/yum-repo/ovirt-release35.rpm.: 1 Time(s)
/pud/yum-repo/ovirt-release35.rpm: 1 Time(s)
/pud/yum-repo/release-ovirt35.rpm: 1 Time(s)
/python-sdk: 1 Time(s)
/question/index.action: 1 Time(s)
/repos/clean_pub/ovirt-3.4/rpm/el6/i386/: 1 Time(s)
/repos/clean_pub/ovirt-master-snapshot-static/rpm/el6/SRPMS/: 1 Time(s)
/repos/clean_pub/ovirt-master-snapshot/iso/ovirt-node-iso/: 1 Time(s)
/repos/ovirt-3.4.old/src/jasperreports-server/: 1 Time(s)
/repos/ovirt-3.4.old/src/ovirt-host-deploy/: 1 Time(s)
/repos/ovirt-3.5-beta2/src/otopi/: 1 Time(s)
/repos/ovirt-3.5-pre.old/rpm/el6Server/repodata/: 1 Time(s)
/robots.txt: 160 Time(s)
/test/wp-admin/: 14 Time(s)
/user/: 9 Time(s)
/wordpress/wp-admin/: 10 Time(s)
/wp-admin/: 15 Time(s)
/wp-content/themes/CoffeeBreak/thumb.php?s ... y.com%2Fbad.php: 3 Time(s)
/wp-content/themes/Spectrum/thumb.php?src= ... y.com%2Fbad.php: 1 Time(s)
/wp-content/themes/TheTravelTheme/includes ... .my%2Fmagic.php: 1 Time(s)
/wp-content/themes/TheTravelTheme/includes ... om%2Fsimple.php: 1 Time(s)
/wp-content/themes/aperture/thumb.php?src= ... y.com%2Fbad.php: 3 Time(s)
/wp-content/themes/biznizz/thumb.php?src=h ... y.com%2Fbad.php: 2 Time(s)
/wp-content/themes/delegate/thumb.php?src= ... y.com%2Fbad.php: 1 Time(s)
/wp-content/themes/edupress/scripts/timthu ... om%2Fsimple.php: 1 Time(s)
/wp-content/themes/flashnews/thumb.php?src ... y.com%2Fbad.php: 9 Time(s)
/wp-content/themes/freshnews/thumb.php?src ... y.com%2Fbad.php: 1 Time(s)
/wp-content/themes/irresistible/thumb.php? ... om%2Fsimple.php: 1 Time(s)
/wp-content/themes/overeasy/thumb.php?src= ... y.com%2Fbad.php: 15 Time(s)
/wp-login.php: 22 Time(s)
/wp-login.php?action=register: 8 Time(s)
/wp-login.php?action=register:: 3 Time(s)
/wp/wp-admin/: 12 Time(s)
/xmlrpc.php: 4 Time(s)
405 Method Not Allowed
/mailman/listinfo: 1 Time(s)
/nyet%2Egif: 1 Time(s)
/nyet.gif: 3 Time(s)
416 Request Range Not Satisfiable
/pub/ovirt-3.4/rpm/el6/noarch/otopi-devtoo ... .el6.noarch.rpm: 1 Time(s)
/pub/ovirt-3.4/rpm/el6/noarch/otopi-java-1 ... .el6.noarch.rpm: 1 Time(s)
/pub/ovirt-3.4/rpm/el6/noarch/otopi-repoli ... .el6.noarch.rpm: 1 Time(s)
/pub/ovirt-3.5/rpm/el7/noarch/ovirt-engine ... ntos.noarch.rpm: 2 Time(s)
/pub/ovirt-3.5/rpm/fc21/noarch/ovirt-relea ... 02-1.noarch.rpm: 266 Time(s)
/pub/ovirt-master-snapshot-static/rpm/el6/ ... ster.noarch.rpm: 3 Time(s)
/pub/ovirt-master-snapshot/rpm/el6/noarch/ ... .el6.noarch.rpm: 12 Time(s)
/pub/ovirt-master-snapshot/rpm/el6/x86_64/ ... l6_6.x86_64.rpm: 12 Time(s)
503 Service Unavailable
/_h5ai/client/images/descending.svg: 1 Time(s)
/_h5ai/client/images/preview/fullscreen.svg: 1 Time(s)
/_h5ai/client/images/preview/raw.svg: 1 Time(s)
/_h5ai/client/images/selected.svg: 1 Time(s)
/pub/ovirt-3.4/iso/ovirt-live-3.4.0.el6ev.iso: 21 Time(s)
/pub/ovirt-3.4/iso/ovirt-live-el6-3.4.4.iso: 811 Time(s)
/pub/ovirt-3.4/iso/ovirt-node-iso-3.4-20140508.2.el6.iso: 822 Time(s)
/pub/ovirt-3.5/iso/ovirt-guest-tools/ovirt ... tools-3.5_5.iso: 38 Time(s)
/pub/ovirt-3.5/iso/ovirt-live-el6-3.5.1.iso: 89 Time(s)
/pub/ovirt-3.5/rpm/el6.6/noarch/ovirt-engi ... .el6.noarch.rpm: 5 Time(s)
/pub/ovirt-3.5/rpm/el6/noarch/ovirt-engine ... .el6.noarch.rpm: 4 Time(s)
/pub/ovirt-3.5/rpm/fc21/noarch/vdsm-hook-f ... fc21.noarch.rpm: 1 Time(s)
/pub/ovirt-3.5/rpm/fc21/noarch/vdsm-reg-4. ... fc21.noarch.rpm: 1 Time(s)
/pub/ovirt-3.5/rpm/fc21/noarch/vdsm-tests- ... fc21.noarch.rpm: 1 Time(s)
---------------------- httpd End -------------------------
--------------------- Named Begin ------------------------
**Unmatched Entries**
validating @0xadfc1038: 148.104.in-addr.arpa SOA: got insecure response; parent indicates it should be secure: 1 Time(s)
validating @0xadfc1038: 179.107.in-addr.arpa SOA: got insecure response; parent indicates it should be secure: 11 Time(s)
validating @0xae780028: 179.107.in-addr.arpa SOA: got insecure response; parent indicates it should be secure: 2 Time(s)
validating @0xaed9d598: 179.107.in-addr.arpa SOA: got insecure response; parent indicates it should be secure: 11 Time(s)
validating @0xaed9e010: 148.104.in-addr.arpa SOA: got insecure response; parent indicates it should be secure: 1 Time(s)
validating @0xaed9e010: 179.107.in-addr.arpa SOA: got insecure response; parent indicates it should be secure: 6 Time(s)
validating @0xb09ff040: 148.104.in-addr.arpa SOA: got insecure response; parent indicates it should be secure: 4 Time(s)
validating @0xb09ff040: 179.107.in-addr.arpa SOA: got insecure response; parent indicates it should be secure: 9 Time(s)
validating @0xb09ff040: in-addr.arpa SOA: got insecure response; parent indicates it should be secure: 1 Time(s)
validating @0xb0c357d8: 148.104.in-addr.arpa SOA: got insecure response; parent indicates it should be secure: 2 Time(s)
validating @0xb0c357d8: 179.107.in-addr.arpa SOA: got insecure response; parent indicates it should be secure: 16 Time(s)
validating @0xb0e06980: 148.104.in-addr.arpa SOA: got insecure response; parent indicates it should be secure: 1 Time(s)
validating @0xb0e06980: 179.107.in-addr.arpa SOA: got insecure response; parent indicates it should be secure: 4 Time(s)
validating @0xb0e06980: in-addr.arpa SOA: got insecure response; parent indicates it should be secure: 1 Time(s)
validating @0xb0e073f8: 148.104.in-addr.arpa SOA: got insecure response; parent indicates it should be secure: 1 Time(s)
validating @0xb0e073f8: 179.107.in-addr.arpa SOA: got insecure response; parent indicates it should be secure: 4 Time(s)
validating @0xb0e08400: 179.107.in-addr.arpa SOA: got insecure response; parent indicates it should be secure: 1 Time(s)
validating @0xb0f38c78: 148.104.in-addr.arpa SOA: got insecure response; parent indicates it should be secure: 1 Time(s)
validating @0xb0f38c78: 179.107.in-addr.arpa SOA: got insecure response; parent indicates it should be secure: 5 Time(s)
validating @0xb1002478: 148.104.in-addr.arpa SOA: got insecure response; parent indicates it should be secure: 2 Time(s)
validating @0xb1002478: 179.107.in-addr.arpa SOA: got insecure response; parent indicates it should be secure: 2 Time(s)
validating @0xb1018360: 148.104.in-addr.arpa SOA: got insecure response; parent indicates it should be secure: 2 Time(s)
validating @0xb1018360: 179.107.in-addr.arpa SOA: got insecure response; parent indicates it should be secure: 7 Time(s)
validating @0xb1018dd8: 148.104.in-addr.arpa SOA: got insecure response; parent indicates it should be secure: 1 Time(s)
validating @0xb1018dd8: 179.107.in-addr.arpa SOA: got insecure response; parent indicates it should be secure: 2 Time(s)
validating @0xb112a850: 179.107.in-addr.arpa SOA: got insecure response; parent indicates it should be secure: 1 Time(s)
validating @0xb1133dd0: 148.104.in-addr.arpa SOA: got insecure response; parent indicates it should be secure: 3 Time(s)
validating @0xb1133dd0: 179.107.in-addr.arpa SOA: got insecure response; parent indicates it should be secure: 13 Time(s)
validating @0xb1201150: 179.107.in-addr.arpa SOA: got insecure response; parent indicates it should be secure: 3 Time(s)
validating @0xb14e87b8: 179.107.in-addr.arpa SOA: got insecure response; parent indicates it should be secure: 11 Time(s)
validating @0xb14fc420: 148.104.in-addr.arpa SOA: got insecure response; parent indicates it should be secure: 1 Time(s)
validating @0xb14fc420: 179.107.in-addr.arpa SOA: got insecure response; parent indicates it should be secure: 7 Time(s)
validating @0xb14fc420: in-addr.arpa SOA: got insecure response; parent indicates it should be secure: 1 Time(s)
error (FORMERR) resolving '_adsp._domainkey.weldingequipments.net/TXT/IN': 204.13.160.143#53: 2 Time(s)
error (FORMERR) resolving '_adsp._domainkey.weldingequipments.net/TXT/IN': 204.13.161.145#53: 2 Time(s)
error (FORMERR) resolving 'authorities.in/NS/IN': 216.245.203.122#53: 1 Time(s)
error (FORMERR) resolving 'authorities.in/NS/IN': 64.31.42.226#53: 1 Time(s)
error (FORMERR) resolving 'ns-cmn1.qq.com/AAAA/IN': 101.226.66.18#53: 18 Time(s)
error (FORMERR) resolving 'ns-cmn1.qq.com/AAAA/IN': 103.7.29.241#53: 12 Time(s)
error (FORMERR) resolving 'ns-cmn1.qq.com/AAAA/IN': 120.204.202.200#53: 26 Time(s)
error (FORMERR) resolving 'ns-cmn1.qq.com/AAAA/IN': 14.17.19.140#53: 24 Time(s)
error (FORMERR) resolving 'ns-cmn1.qq.com/AAAA/IN': 175.155.119.229#53: 21 Time(s)
error (FORMERR) resolving 'ns-cmn1.qq.com/AAAA/IN': 184.105.66.196#53: 22 Time(s)
error (FORMERR) resolving 'ns-cmn1.qq.com/AAAA/IN': 202.55.2.226#53: 12 Time(s)
error (FORMERR) resolving 'ns-cmn1.qq.com/AAAA/IN': 202.55.2.230#53: 8 Time(s)
error (FORMERR) resolving 'ns-cmn1.qq.com/AAAA/IN': 61.135.167.182#53: 17 Time(s)
error (FORMERR) resolving 'ns-cnc1.qq.com/AAAA/IN': 101.226.66.18#53: 8 Time(s)
error (FORMERR) resolving 'ns-cnc1.qq.com/AAAA/IN': 103.7.29.241#53: 7 Time(s)
error (FORMERR) resolving 'ns-cnc1.qq.com/AAAA/IN': 120.204.202.200#53: 22 Time(s)
error (FORMERR) resolving 'ns-cnc1.qq.com/AAAA/IN': 14.17.19.140#53: 15 Time(s)
error (FORMERR) resolving 'ns-cnc1.qq.com/AAAA/IN': 175.155.119.229#53: 11 Time(s)
error (FORMERR) resolving 'ns-cnc1.qq.com/AAAA/IN': 184.105.66.196#53: 20 Time(s)
error (FORMERR) resolving 'ns-cnc1.qq.com/AAAA/IN': 202.55.2.226#53: 7 Time(s)
error (FORMERR) resolving 'ns-cnc1.qq.com/AAAA/IN': 202.55.2.230#53: 4 Time(s)
error (FORMERR) resolving 'ns-cnc1.qq.com/AAAA/IN': 61.135.167.182#53: 8 Time(s)
error (FORMERR) resolving 'ns-os1.qq.com/AAAA/IN': 101.226.66.18#53: 33 Time(s)
error (FORMERR) resolving 'ns-os1.qq.com/AAAA/IN': 103.7.29.241#53: 28 Time(s)
error (FORMERR) resolving 'ns-os1.qq.com/AAAA/IN': 120.204.202.200#53: 41 Time(s)
error (FORMERR) resolving 'ns-os1.qq.com/AAAA/IN': 14.17.19.140#53: 38 Time(s)
error (FORMERR) resolving 'ns-os1.qq.com/AAAA/IN': 175.155.119.229#53: 37 Time(s)
error (FORMERR) resolving 'ns-os1.qq.com/AAAA/IN': 184.105.66.196#53: 37 Time(s)
error (FORMERR) resolving 'ns-os1.qq.com/AAAA/IN': 202.55.2.226#53: 29 Time(s)
error (FORMERR) resolving 'ns-os1.qq.com/AAAA/IN': 202.55.2.230#53: 25 Time(s)
error (FORMERR) resolving 'ns-os1.qq.com/AAAA/IN': 61.135.167.182#53: 29 Time(s)
error (FORMERR) resolving 'ns-tel1.qq.com/AAAA/IN': 101.226.66.18#53: 8 Time(s)
error (FORMERR) resolving 'ns-tel1.qq.com/AAAA/IN': 103.7.29.241#53: 6 Time(s)
error (FORMERR) resolving 'ns-tel1.qq.com/AAAA/IN': 120.204.202.200#53: 21 Time(s)
error (FORMERR) resolving 'ns-tel1.qq.com/AAAA/IN': 14.17.19.140#53: 14 Time(s)
error (FORMERR) resolving 'ns-tel1.qq.com/AAAA/IN': 175.155.119.229#53: 11 Time(s)
error (FORMERR) resolving 'ns-tel1.qq.com/AAAA/IN': 184.105.66.196#53: 18 Time(s)
error (FORMERR) resolving 'ns-tel1.qq.com/AAAA/IN': 202.55.2.226#53: 4 Time(s)
error (FORMERR) resolving 'ns-tel1.qq.com/AAAA/IN': 202.55.2.230#53: 3 Time(s)
error (FORMERR) resolving 'ns-tel1.qq.com/AAAA/IN': 61.135.167.182#53: 10 Time(s)
error (FORMERR) resolving 'ns1.qq.com/AAAA/IN': 103.7.29.241#53: 1 Time(s)
error (FORMERR) resolving 'ns1.qq.com/AAAA/IN': 120.204.202.200#53: 1 Time(s)
error (FORMERR) resolving 'ns1.qq.com/AAAA/IN': 14.17.19.140#53: 1 Time(s)
error (FORMERR) resolving 'ns1.qq.com/AAAA/IN': 175.155.119.229#53: 1 Time(s)
error (FORMERR) resolving 'ns1.qq.com/AAAA/IN': 184.105.66.196#53: 1 Time(s)
error (FORMERR) resolving 'ns1.qq.com/AAAA/IN': 61.135.167.182#53: 1 Time(s)
error (FORMERR) resolving 'ns2.qq.com/AAAA/IN': 103.7.29.241#53: 1 Time(s)
error (FORMERR) resolving 'ns2.qq.com/AAAA/IN': 120.204.202.200#53: 1 Time(s)
error (FORMERR) resolving 'ns2.qq.com/AAAA/IN': 14.17.19.140#53: 1 Time(s)
error (FORMERR) resolving 'ns2.qq.com/AAAA/IN': 184.105.66.196#53: 1 Time(s)
error (FORMERR) resolving 'ns2.qq.com/AAAA/IN': 61.135.167.182#53: 1 Time(s)
error (FORMERR) resolving 'ns3.qq.com/AAAA/IN': 103.7.29.241#53: 1 Time(s)
error (FORMERR) resolving 'ns3.qq.com/AAAA/IN': 120.204.202.200#53: 1 Time(s)
error (FORMERR) resolving 'ns3.qq.com/AAAA/IN': 14.17.19.140#53: 1 Time(s)
error (FORMERR) resolving 'ns3.qq.com/AAAA/IN': 184.105.66.196#53: 1 Time(s)
error (FORMERR) resolving 'ns3.qq.com/AAAA/IN': 61.135.167.182#53: 1 Time(s)
error (FORMERR) resolving 'ns4.qq.com/AAAA/IN': 184.105.66.196#53: 1 Time(s)
error (FORMERR) resolving 'ns4.qq.com/AAAA/IN': 61.135.167.182#53: 1 Time(s)
error (FORMERR) resolving 'weldingequipments.net/MX/IN': 204.13.160.143#53: 44 Time(s)
error (FORMERR) resolving 'weldingequipments.net/MX/IN': 204.13.161.145#53: 44 Time(s)
error (chase DS servers) resolving 'rediris.es/DS/IN': 2001:678:4::f#53: 2 Time(s)
error (host unreachable) resolving 'bmx.adfinis-sygroup.ch/A/IN': 5.148.174.196#53: 1 Time(s)
error (host unreachable) resolving 'bmx.adfinis-sygroup.ch/AAAA/IN': 5.148.174.196#53: 1 Time(s)
error (host unreachable) resolving 'dns3.sygroup.net/A/IN': 5.148.174.196#53: 1 Time(s)
error (host unreachable) resolving 'dns3.sygroup.net/AAAA/IN': 5.148.174.196#53: 1 Time(s)
error (insecurity proof failed) resolving 'edu.es/DNSKEY/IN': 217.76.145.5#53: 1 Time(s)
error (insecurity proof failed) resolving 'ms.aerohosting.cz/AAAA/IN': 74.117.158.145#53: 6 Time(s)
error (insecurity proof failed) resolving 'ms2.aerohosting.cz/AAAA/IN': 74.117.158.145#53: 7 Time(s)
error (no valid RRSIG) resolving 'ms.aerohosting.cz/DS/IN': 74.117.158.145#53: 6 Time(s)
error (no valid RRSIG) resolving 'ms2.aerohosting.cz/DS/IN': 74.117.158.145#53: 7 Time(s)
error (unexpected RCODE REFUSED) resolving '115.0.86.50.in-addr.arpa/PTR/IN': 2607:f4a0:3::20#53: 2 Time(s)
error (unexpected RCODE REFUSED) resolving '115.0.86.50.in-addr.arpa/PTR/IN': 2607:f4a0:3::21#53: 2 Time(s)
error (unexpected RCODE REFUSED) resolving '115.0.86.50.in-addr.arpa/PTR/IN': 66.175.131.20#53: 2 Time(s)
error (unexpected RCODE REFUSED) resolving '115.0.86.50.in-addr.arpa/PTR/IN': 66.175.131.21#53: 2 Time(s)
error (unexpected RCODE REFUSED) resolving '118.2.160.14.in-addr.arpa/PTR/IN': 203.162.0.11#53: 6 Time(s)
error (unexpected RCODE REFUSED) resolving '118.2.160.14.in-addr.arpa/PTR/IN': 203.162.4.1#53: 6 Time(s)
error (unexpected RCODE REFUSED) resolving '3.9.171.104.in-addr.arpa/PTR/IN': 108.175.144.42#53: 2 Time(s)
error (unexpected RCODE REFUSED) resolving '3.9.171.104.in-addr.arpa/PTR/IN': 174.37.143.41#53: 2 Time(s)
error (unexpected RCODE REFUSED) resolving '78.133.57.64.in-addr.arpa/PTR/IN': 204.152.222.2#53: 2 Time(s)
error (unexpected RCODE REFUSED) resolving '78.133.57.64.in-addr.arpa/PTR/IN': 204.152.223.2#53: 2 Time(s)
error (unexpected RCODE REFUSED) resolving '79.133.57.64.in-addr.arpa/PTR/IN': 204.152.222.2#53: 2 Time(s)
error (unexpected RCODE REFUSED) resolving '79.133.57.64.in-addr.arpa/PTR/IN': 204.152.223.2#53: 2 Time(s)
error (unexpected RCODE REFUSED) resolving '81.133.57.64.in-addr.arpa/PTR/IN': 204.152.222.2#53: 2 Time(s)
error (unexpected RCODE REFUSED) resolving '81.133.57.64.in-addr.arpa/PTR/IN': 204.152.223.2#53: 2 Time(s)
error (unexpected RCODE REFUSED) resolving '83.133.57.64.in-addr.arpa/PTR/IN': 204.152.222.2#53: 2 Time(s)
error (unexpected RCODE REFUSED) resolving '83.133.57.64.in-addr.arpa/PTR/IN': 204.152.223.2#53: 2 Time(s)
error (unexpected RCODE REFUSED) resolving 'b.ns.tznic.or.tz/A/IN': 196.216.162.66#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'b.ns.tznic.or.tz/A/IN': 2001:43f8:e0:1::66#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'b.ns.tznic.or.tz/AAAA/IN': 196.216.162.66#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'b.ns.tznic.or.tz/AAAA/IN': 2001:43f8:e0:1::66#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'cendrillon.lptl.jussieu.fr/A/IN': 134.157.90.3#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'cendrillon.lptl.jussieu.fr/AAAA/IN': 134.157.90.3#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'cpanel0076.hospedagemdesites.ws/AAAA/IN': 186.202.127.132#53: 5 Time(s)
error (unexpected RCODE REFUSED) resolving 'ecarnot.net/MX/IN': 212.83.147.9#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'logancheck.net/MX/IN': 173.245.58.249#53: 102 Time(s)
error (unexpected RCODE REFUSED) resolving 'logancheck.net/MX/IN': 173.245.59.190#53: 102 Time(s)
error (unexpected RCODE REFUSED) resolving 'luxfo.com/MX/IN': 173.245.58.249#53: 80 Time(s)
error (unexpected RCODE REFUSED) resolving 'luxfo.com/MX/IN': 173.245.59.190#53: 80 Time(s)
error (unexpected RCODE REFUSED) resolving 'luxfo.com/NS/IN': 173.245.58.249#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'luxfo.com/NS/IN': 173.245.59.190#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'mx1.ks.pochta.ru/A/IN': 185.79.119.222#53: 8 Time(s)
error (unexpected RCODE REFUSED) resolving 'mx1.ks.pochta.ru/AAAA/IN': 185.79.119.222#53: 8 Time(s)
error (unexpected RCODE REFUSED) resolving 'mx1.lnf.infn.it/AAAA/IN': 141.108.5.3#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'mx1.sante-martinique.fr/AAAA/IN': 213.16.20.3#53: 2 Time(s)
error (unexpected RCODE REFUSED) resolving 'mx2.ks.pochta.ru/A/IN': 185.79.119.222#53: 6 Time(s)
error (unexpected RCODE REFUSED) resolving 'mx2.ks.pochta.ru/AAAA/IN': 185.79.119.222#53: 6 Time(s)
error (unexpected RCODE REFUSED) resolving 'mx2.lnf.infn.it/AAAA/IN': 141.108.5.3#53: 2 Time(s)
error (unexpected RCODE REFUSED) resolving 'mx2.sante-martinique.fr/A/IN': 213.16.20.3#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'mx3.ks.pochta.ru/A/IN': 185.79.119.222#53: 5 Time(s)
error (unexpected RCODE REFUSED) resolving 'mx3.ks.pochta.ru/AAAA/IN': 185.79.119.222#53: 8 Time(s)
error (unexpected RCODE REFUSED) resolving 'mx4.ecarnot.net/A/IN': 212.83.147.9#53: 2 Time(s)
error (unexpected RCODE REFUSED) resolving 'mx4.ecarnot.net/AAAA/IN': 212.83.147.9#53: 2 Time(s)
error (unexpected RCODE REFUSED) resolving 'mx4.ks.pochta.ru/A/IN': 185.79.119.222#53: 10 Time(s)
error (unexpected RCODE REFUSED) resolving 'mx4.ks.pochta.ru/AAAA/IN': 185.79.119.222#53: 7 Time(s)
error (unexpected RCODE REFUSED) resolving 'mx5.ks.pochta.ru/A/IN': 185.79.119.222#53: 6 Time(s)
error (unexpected RCODE REFUSED) resolving 'mx5.ks.pochta.ru/AAAA/IN': 185.79.119.222#53: 5 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns.terra-line.net/A/IN': 91.240.190.61#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns.terra-line.net/AAAA/IN': 91.240.190.61#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns1.cpanel0076.hospedagemdesites.ws/A/IN': 186.202.127.132#53: 2 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns1.cpanel0076.hospedagemdesites.ws/AAAA/IN': 186.202.127.132#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns1.logancheck.net/AAAA/IN': 173.245.58.249#53: 51 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns1.logancheck.net/AAAA/IN': 173.245.59.190#53: 51 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns1.luxfo.com/A/IN': 173.245.58.249#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns1.luxfo.com/A/IN': 173.245.59.190#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns1.luxfo.com/AAAA/IN': 173.245.58.249#53: 41 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns1.luxfo.com/AAAA/IN': 173.245.59.190#53: 41 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns1.quanhta.com/AAAA/IN': 173.245.58.249#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns1.quanhta.com/AAAA/IN': 173.245.59.190#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns2.cpanel0076.hospedagemdesites.ws/A/IN': 186.202.127.133#53: 2 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns2.cpanel0076.hospedagemdesites.ws/AAAA/IN': 186.202.127.133#53: 4 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns2.logancheck.net/AAAA/IN': 173.245.58.249#53: 51 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns2.logancheck.net/AAAA/IN': 173.245.59.190#53: 51 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns2.luxfo.com/A/IN': 173.245.58.249#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns2.luxfo.com/A/IN': 173.245.59.190#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns2.luxfo.com/AAAA/IN': 173.245.58.249#53: 41 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns2.luxfo.com/AAAA/IN': 173.245.59.190#53: 41 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns2.quanhta.com/AAAA/IN': 173.245.58.249#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns2.quanhta.com/AAAA/IN': 173.245.59.190#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'posix.co.za/DNSKEY/IN': 192.96.25.1#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'quanhta.com/NS/IN': 173.245.58.249#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'quanhta.com/NS/IN': 173.245.59.190#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'utropicmedia.com/MX/IN': 173.225.183.71#53: 1 Time(s)
error (unexpected RCODE SERVFAIL) resolving '125.218.125.64.in-addr.arpa/PTR/IN': 207.126.105.146#53: 1 Time(s)
error (unexpected RCODE SERVFAIL) resolving '126.218.125.64.in-addr.arpa/PTR/IN': 207.126.105.146#53: 1 Time(s)
error (unexpected RCODE SERVFAIL) resolving '128.218.125.64.in-addr.arpa/PTR/IN': 207.126.105.146#53: 1 Time(s)
error (unexpected RCODE SERVFAIL) resolving 'NS1.IPB.DIVEO.NET.BR/A/IN': 200.215.179.97#53: 1 Time(s)
error (unexpected RCODE SERVFAIL) resolving 'NS1.IPB.DIVEO.NET.BR/AAAA/IN': 200.215.179.97#53: 1 Time(s)
error (unexpected RCODE SERVFAIL) resolving 'asti.dost.gov.ph/MX/IN': 202.90.128.8#53: 1 Time(s)
error (unexpected RCODE SERVFAIL) resolving 'boyfr.firm.in.multi.uribl.com/A/IN': 54.153.32.255#53: 1 Time(s)
error (unexpected RCODE SERVFAIL) resolving 'boyfr.firm.in.multi.uribl.com/A/IN': 54.245.238.241#53: 1 Time(s)
error (unexpected RCODE SERVFAIL) resolving 'getallnewwindow-specialshere.us.multi.uribl.com/A/IN': 54.153.32.255#53: 1 Time(s)
error (unexpected RCODE SERVFAIL) resolving 'giesen.me/MX/IN': 216.235.0.100#53: 2 Time(s)
error (unexpected RCODE SERVFAIL) resolving 'giesen.me/NS/IN': 216.235.0.100#53: 1 Time(s)
error (unexpected RCODE SERVFAIL) resolving 'h5.srov.info/A/IN': 213.251.188.141#53: 1 Time(s)
error (unexpected RCODE SERVFAIL) resolving 'h5.srov.info/AAAA/IN': 213.251.188.141#53: 1 Time(s)
error (unexpected RCODE SERVFAIL) resolving 'h5.srov.info/MX/IN': 2001:41d0:1:4a8d::1#53: 1 Time(s)
error (unexpected RCODE SERVFAIL) resolving 'mail2.asti.dost.gov.ph/A/IN': 2001:d18:1::8#53: 1 Time(s)
error (unexpected RCODE SERVFAIL) resolving 'mail2.asti.dost.gov.ph/A/IN': 202.90.128.8#53: 2 Time(s)
error (unexpected RCODE SERVFAIL) resolving 'mail2.asti.dost.gov.ph/AAAA/IN': 202.90.128.8#53: 1 Time(s)
error (unexpected RCODE SERVFAIL) resolving 'ns1.acloud.pt/AAAA/IN': 87.103.115.60#53: 1 Time(s)
error (unexpected RCODE SERVFAIL) resolving 'ns1.acloud.pt/AAAA/IN': 94.46.233.22#53: 3 Time(s)
error (unexpected RCODE SERVFAIL) resolving 'ns2.acloud.pt/AAAA/IN': 87.103.115.60#53: 1 Time(s)
error (unexpected RCODE SERVFAIL) resolving 'ns2.acloud.pt/AAAA/IN': 94.46.233.22#53: 3 Time(s)
error (unexpected RCODE SERVFAIL) resolving 'ovirt.org.multi.uribl.com/A/IN': 54.153.32.255#53: 1 Time(s)
error (unexpected RCODE SERVFAIL) resolving 'smtp.giesen.me/A/IN': 216.235.0.100#53: 5 Time(s)
error (unexpected RCODE SERVFAIL) resolving 'smtp.giesen.me/AAAA/IN': 216.235.0.100#53: 5 Time(s)
error (unexpected RCODE SERVFAIL) resolving 'srov.info/NS/IN': 2001:41d0:1:4a8d::1#53: 1 Time(s)
validating @0xb09ff040: edu.es DNSKEY: got insecure response; parent indicates it should be secure: 1 Time(s)
---------------------- Named End -------------------------
--------------------- Postfix Begin ------------------------
186 *Warning: Pre-queue content-filter connection overload
12 Miscellaneous warnings
48.223M Bytes accepted 50,565,378
1.311G Bytes delivered 1,408,048,171
======== ================================================
2306 Accepted 99.27%
17 Rejected 0.73%
-------- ------------------------------------------------
2323 Total 100.00%
======== ================================================
3 Reject relay denied 17.65%
14 Reject unknown user 82.35%
-------- ------------------------------------------------
17 Total Rejects 100.00%
======== ================================================
1781 Connections made
8 Connections lost
1782 Disconnections
2156 Removed from queue
1415 Delivered
19271 Sent via SMTP
7 Forwarded
175 Deferred
3353 Deferrals
21 Bounce (local)
15 Bounce (remote)
9 Expired and returned to sender
38 DSNs undeliverable
2665 Connection failure (outbound)
16 Timeout (inbound)
1 SMTP commands dialog error
246 Hostname verification errors
63 Enabled PIX workaround
---------------------- Postfix End -------------------------
--------------------- SSHD Begin ------------------------
Users logging in through sshd:
jenkins:
89.31.150.215 (alterway01.ovirt.org): 2 times
mirror:
192.87.102.41: 12 times
128.61.111.12 (zaphod.gtlib.gatech.edu): 1 time
130.89.149.129 (vlaai.snt.utwente.nl): 1 time
152.3.102.53 (archive.linux.duke.edu): 1 time
152.19.134.30 (jobbot1.ibiblio.org): 1 time
rsync:
209.132.186.36 (nat-pool-tlv-t.redhat.com): 1 time
Received disconnect:
11: : 9 Time(s)
11: Bye Bye : 141 Time(s)
11: disconnected by user : 16 Time(s)
SFTP subsystem requests: 2 Time(s)
**Unmatched Entries**
reverse mapping checking getaddrinfo for 235.51.174.61.dial.wz.zj.dynamic.163data.com.cn [61.174.51.235] failed - POSSIBLE BREAK-IN ATTEMPT! : 2 time(s)
reverse mapping checking getaddrinfo for 231.51.174.61.dial.wz.zj.dynamic.163data.com.cn [61.174.51.231] failed - POSSIBLE BREAK-IN ATTEMPT! : 3 time(s)
reverse mapping checking getaddrinfo for 177.50.174.61.dial.wz.zj.dynamic.163data.com.cn [61.174.50.177] failed - POSSIBLE BREAK-IN ATTEMPT! : 3 time(s)
reverse mapping checking getaddrinfo for smtp107.mysmtps.com [194.63.141.107] failed - POSSIBLE BREAK-IN ATTEMPT! : 103 time(s)
reverse mapping checking getaddrinfo for 147.4.161.222.adsl-pool.jlccptt.net.cn [222.161.4.147] failed - POSSIBLE BREAK-IN ATTEMPT! : 1 time(s)
reverse mapping checking getaddrinfo for 103.49.174.61.dial.wz.zj.dynamic.163data.com.cn [61.174.49.103] failed - POSSIBLE BREAK-IN ATTEMPT! : 1 time(s)
---------------------- SSHD End -------------------------
--------------------- Sudo (secure-log) Begin ------------------------
==============================================================================
nrpe => root
------------
/sbin/service - 288 Times.
---------------------- Sudo (secure-log) End -------------------------
--------------------- Disk Space Begin ------------------------
Filesystem Size Used Avail Use% Mounted on
/dev/xvda 97G 83G 14G 86% /
---------------------- Disk Space End -------------------------
###################### Logwatch End #########################
9 years, 10 months
Logwatch for linode01.ovirt.org (Linux)
by logwatch@lists.ovirt.org
################### Logwatch 7.3.6 (05/19/07) ####################
Processing Initiated: Fri Jan 30 03:12:09 2015
Date Range Processed: yesterday
( 2015-Jan-29 )
Period is day.
Detail Level of Output: 0
Type of Output: unformatted
Logfiles for Host: linode01.ovirt.org
##################################################################
--------------------- httpd Begin ------------------------
A total of 3 sites probed the server
169.229.3.91
169.229.3.92
169.229.3.93
Requests with error response codes
400 Bad Request
/: 1 Time(s)
404 Not Found
/%E2%80%A6l/infra/2014-September//xmlrpc.php: 1 Time(s)
/%E2%80%A6l/infra/2014-September/007943.html//xmlrpc.php: 1 Time(s)
//administrator/index.php: 1 Time(s)
//dompdf.php?input_file=http://www.ikido.o ... t/plugins/idr??: 3 Time(s)
//dompdf/dompdf.php: 4 Time(s)
//dompdf/dompdf.php?base_path=: 1 Time(s)
//dompdf/dompdf.php?input_file=: 3 Time(s)
//dompdf/donpdf.php: 1 Time(s)
//dompdf/donpdf.php?input_file=: 1 Time(s)
//index.php: 4 Time(s)
//phpThumb.phpGET/phpThumb/phpThumb.php?sr ... phpThumbDebug=9: 2 Time(s)
//xmlrpc.php: 1 Time(s)
/__mailman/listinfo/users: 2 Time(s)
/admin.php: 8 Time(s)
/admin/: 5 Time(s)
/admin/fckeditor/editor: 2 Time(s)
/admin/fckeditor/editor/: 2 Time(s)
/admin/login.php: 6 Time(s)
/administrator/: 1 Time(s)
/administrator/index.php: 8 Time(s)
/apple-touch-icon-precomposed.png: 1 Time(s)
/apple-touch-icon.png: 1 Time(s)
/bitrix/admin/index.php?lang=en: 6 Time(s)
/blog/wp-admin/: 7 Time(s)
/browserconfig.xml: 3 Time(s)
/category/news/feed: 1 Time(s)
/category/news/feed/: 21 Time(s)
/ckeditor/editor/: 2 Time(s)
/common/fckeditor/editor/: 2 Time(s)
/component/user/register: 1 Time(s)
/components/com_jnews/includes/openflashch ... pload_image.php: 1 Time(s)
/editor/editor: 1 Time(s)
/editor/editor/: 2 Time(s)
/editor/fckeditor/editor/: 2 Time(s)
/editor1/editor/: 2 Time(s)
/editorold/editor/: 2 Time(s)
/favicon.ico: 762 Time(s)
/fck/editor: 1 Time(s)
/fck/editor/: 2 Time(s)
/fckeditor/editor: 2 Time(s)
/fckeditor/editor/: 2 Time(s)
/gen204?invalidResponse=q=https%3A%2F%2Ftr ... ,ql=371,r=,rl=0: 1 Time(s)
/home/: 1 Time(s)
/inc/fckeditor/editor/: 2 Time(s)
/include/fckeditor/editor/: 2 Time(s)
/includes/fckeditor/editor/: 2 Time(s)
/index.php: 1 Time(s)
/index.php/component/user/register: 1 Time(s)
/index.php?m=account_register: 2 Time(s)
/index.php?option=com_user&view=register: 1 Time(s)
/index.php?option=com_users&view=registration: 1 Time(s)
/js/fckeditor/editor/: 2 Time(s)
/manage/fckeditor/editor/: 2 Time(s)
/meetings/ovirt/2013/ovirt.2013-02-05-16.0 ... html/trackback/: 1 Time(s)
/nyet.gif: 4 Time(s)
/old/wp-admin/: 9 Time(s)
/phpThumb//phpThumb.phpGET/cms/plugins/con ... phpThumbDebug=9: 1 Time(s)
/phpThumb//phpThumb.phpGET/common/scripts/ ... phpThumbDebug=9: 1 Time(s)
/phpThumb//phpThumb.phpGET/wp-content/plug ... phpThumbDebug=9: 1 Time(s)
/phpthumb//phpThumb.phpGET/common/scripts/ ... phpThumbDebug=9: 1 Time(s)
/phpthumb//phpThumb.phpGET/wp-content/plug ... phpThumbDebug=9: 1 Time(s)
/pipermail/engine-patches/2012-August/031748.html: 1 Time(s)
/pipermail/engine-patches/2012-August/032419.html: 1 Time(s)
/pipermail/engine-patches/2012-February/004574.html: 1 Time(s)
/pipermail/engine-patches/2012-July/026590.html: 1 Time(s)
/pipermail/engine-patches/2012-September/036774.html: 1 Time(s)
/pipermail/engine-patches/2013-August/102693.html: 1 Time(s)
/pipermail/engine-patches/2013-December/130065.html: 1 Time(s)
/pipermail/engine-patches/2013-January/051581.html: 1 Time(s)
/pipermail/engine-patches/2013-March/062912.html: 1 Time(s)
/pipermail/engine-patches/2013-November/subject.html: 4 Time(s)
/pipermail/engine-patches/2013-September/104044.html: 1 Time(s)
/pipermail/engine-patches/2014-April/184667.html: 1 Time(s)
/pipermail/engine-patches/2014-February/152373.html: 1 Time(s)
/pipermail/engine-patches/2014-February/152821.html: 1 Time(s)
/pipermail/engine-patches/2014-March/166675.html: 1 Time(s)
/pipermail/engine-patches/2014-March/subject.html: 4 Time(s)
/pipermail/infra/2012-February/000224.html/trackback/: 1 Time(s)
/pipermail/infra/2012-March/000226.html/trackback/: 1 Time(s)
/pipermail/infra/2012-November/register.php?mlvl=-1: 2 Time(s)
/pipermail/infra/2012-November/tiki-register.php: 3 Time(s)
/pipermail/infra/2012-October/001266.html/trackback/: 1 Time(s)
/pipermail/infra/2012-august/000928.html: 20 Time(s)
/pipermail/infra/2013-April/002609.html/trackback/: 1 Time(s)
/pipermail/infra/2013-August//dompdf.php?i ... t/plugins/idr??: 2 Time(s)
/pipermail/infra/2013-August/003777.html/trackback/: 1 Time(s)
/pipermail/infra/2013-August/003816.html/trackback/: 1 Time(s)
/pipermail/infra/2013-August/003818.html/trackback/: 1 Time(s)
/pipermail/infra/2013-December//dompdf.php ... t/plugins/idr??: 1 Time(s)
/pipermail/infra/2013-February/001992.html ... .com.tr/php.php: 5 Time(s)
/pipermail/infra/2013-February/001992.html ... om.tr/budak.php: 1 Time(s)
/pipermail/infra/2013-February/002166.html/trackback/: 1 Time(s)
/pipermail/infra/2013-February/wp-content/ ... .com.tr/php.php: 5 Time(s)
/pipermail/infra/2013-February/wp-content/ ... om.tr/budak.php: 1 Time(s)
/pipermail/infra/2013-January/001832.html/trackback/: 1 Time(s)
/pipermail/infra/2013-July/tiki-register.php: 2 Time(s)
/pipermail/infra/2013-July/wp-content/them ... y.com%2Fbad.php: 1 Time(s)
/pipermail/infra/2013-June/003293.html/trackback/: 1 Time(s)
/pipermail/infra/2013-June/wp-content/them ... om%2Fsimple.php: 1 Time(s)
/pipermail/infra/2013-May//dompdf.php?inpu ... t/plugins/idr??: 2 Time(s)
/pipermail/infra/2013-May/002996.html/trackback/: 1 Time(s)
/pipermail/infra/2013-May/003139.html/trackback/: 1 Time(s)
/pipermail/infra/2013-May/003148.html/trackback/: 1 Time(s)
/pipermail/infra/2013-May/tiki-register.php: 1 Time(s)
/pipermail/infra/2013-May/wp-content/theme ... y.com%2Fbad.php: 1 Time(s)
/pipermail/infra/2013-October/004052.html/trackback/: 1 Time(s)
/pipermail/infra/2013-October/004122.html/trackback/: 1 Time(s)
/pipermail/infra/2013-October/004254.html/trackback/: 1 Time(s)
/pipermail/infra/2013-September//dompdf.ph ... t/plugins/idr??: 1 Time(s)
/pipermail/infra/2013-September/003940.html/trackback/: 1 Time(s)
/pipermail/infra/2013-September/004011.html/trackback/: 1 Time(s)
/pipermail/infra/2013-September/components ... pload_image.php: 1 Time(s)
/pipermail/infra/2014-April//phpThumb.phpG ... phpThumbDebug=9: 2 Time(s)
/pipermail/infra/2014-April/006123.html&am ... pload_image.php: 2 Time(s)
/pipermail/infra/2014-April/phpThumb//phpT ... phpThumbDebug=9: 3 Time(s)
/pipermail/infra/2014-April/phpthumb//phpT ... phpThumbDebug=9: 2 Time(s)
/pipermail/infra/2014-April/wp-content/plu ... pload_image.php: 1 Time(s)
/pipermail/infra/2014-February//dompdf.php ... t/plugins/idr??: 1 Time(s)
/pipermail/infra/2014-January//dompdf.php? ... t/plugins/idr??: 1 Time(s)
/pipermail/infra/2014-January/005132.html/trackback/: 1 Time(s)
/pipermail/infra/2014-January/005193.html/trackback/: 1 Time(s)
/pipermail/infra/2014-November/tiki-register.php: 3 Time(s)
/pipermail/infra/2014-january/004902.html: 1 Time(s)
/pipermail/kimchi-devel/2013-December/000438.html/trackback/: 1 Time(s)
/pipermail/patches: 1 Time(s)
/pipermail/users/201: 1 Time(s)
/pipermail/users/2012-April/007385.htmlchr ... img/icon_48.png: 1 Time(s)
/pipermail/users/2012-April/007385.htmlchr ... ver-icon(a)1x.png: 1 Time(s)
/pipermail/users/2012-October/009731.html/trackback/: 6 Time(s)
/pipermail/users/2012-September/009451.html/trackback/: 1 Time(s)
/pipermail/users/2013-August/015786.html/trackback/: 2 Time(s)
/pipermail/users/2013-December/018977.html ... img/icon_48.png: 1 Time(s)
/pipermail/users/2013-December/018977.html ... ver-icon(a)1x.png: 1 Time(s)
/pipermail/users/2013-December/018981.html ... img/icon_48.png: 1 Time(s)
/pipermail/users/2013-December/018981.html ... ver-icon(a)1x.png: 1 Time(s)
/pipermail/users/2013-February/administrator/: 2 Time(s)
/pipermail/users/2013-January/011927.html/trackback/: 1 Time(s)
/pipermail/users/2013-May/014390.htmlchrom ... img/icon_48.png: 1 Time(s)
/pipermail/users/2013-May/014390.htmlchrom ... ver-icon(a)1x.png: 1 Time(s)
/pipermail/users/2014-February/020788.html/trackback/: 1 Time(s)
/pipermail/users/2014-February/020792.html/trackback/: 1 Time(s)
/pipermail/users/2014-February/020794.html/trackback/: 1 Time(s)
/pipermail/users/2014-February/020796.html/trackback/: 1 Time(s)
/pipermail/users/2014-February/020798.html/trackback/: 1 Time(s)
/pipermail/users/2014-February/020799.html/trackback/: 1 Time(s)
/pipermail/users/2014-February/020802.html/trackback/: 1 Time(s)
/pipermail/users/2014-February/020807.html/trackback/: 1 Time(s)
/pipermail/users/2014-February/020848.html/trackback/: 1 Time(s)
/pipermail/users/2014-February/021489.html/trackback/: 1 Time(s)
/pipermail/users/2014-February/021490.html/trackback/: 1 Time(s)
/pipermail/users/2014-February/021492.html/trackback/: 1 Time(s)
/pipermail/users/2014-February/021496.html/trackback/: 1 Time(s)
/pipermail/users/2014-February/021539.html/trackback/: 1 Time(s)
/pipermail/users/2014-February/021587.html/trackback/: 1 Time(s)
/pipermail/users/2014-February/021588.html/trackback/: 1 Time(s)
/pipermail/users/2014-January/020354.html/trackback/: 1 Time(s)
/pipermail/users/2014-november28884.html: 1 Time(s)
/pipermail/users/2014-october28348.html: 2 Time(s)
/pipermail/users/2015-january/030657.html: 3 Time(s)
/plain/pub/ovirt-3.4-rc/src/ovirt-node-plugin-vdsm/: 1 Time(s)
/plain/pub/ovirt-3.4-snapshot-static/rpm/f ... 96-other.xml.gz: 1 Time(s)
/plain/pub/ovirt-3.4-snapshot/rpm/el7/repo ... 6c-other.xml.gz: 1 Time(s)
/plain/pub/ovirt-3.5-pre/rpm/el6Server/: 1 Time(s)
/plain/pub/ovirt-3.5-pre/rpm/el7Server/ppc64/: 1 Time(s)
/plain/pub/ovirt-3.5-pre/rpm/fc19/noarch/o ... fc19.noarch.rpm: 2 Time(s)
/plain/pub/ovirt-3.5-pre/rpm/fc19/repodata/repomd.xml: 1 Time(s)
/plain/pub/ovirt-3.5-snapshot-static/rpm/e ... 3f-other.xml.gz: 1 Time(s)
/plain/pub/ovirt-master-snapshot-static/rp ... -primary.xml.gz: 2 Time(s)
/plain/pub/ovirt-master-snapshot/rpm/centos/SRPMS/: 1 Time(s)
/pub/ovirt-3.3/rpm/fc21/repodata/repomd.xml: 8 Time(s)
/pub/ovirt-3.4-rc/src/ovirt-node-plugin-vdsm/: 1 Time(s)
/pub/ovirt-3.4-snapshot-static/rpm/fc19/re ... 96-other.xml.gz: 1 Time(s)
/pub/ovirt-3.4-snapshot-static/rpm/fc20/repodata/repomd.xml: 25 Time(s)
/pub/ovirt-3.4-snapshot/rpm/el7/repodata/5 ... 6c-other.xml.gz: 1 Time(s)
/pub/ovirt-3.4-snapshot/rpm/fc20/repodata/repomd.xml: 25 Time(s)
/pub/ovirt-3.4-snapshot/src/httpcomponents-core/: 1 Time(s)
/pub/ovirt-3.4/iso/ovirt-node-iso-3.0.4-1. ... .vdsm34.el6.iso: 5 Time(s)
/pub/ovirt-3.4/iso/ovirt-node-iso-3.4-20140423.0.el6.iso: 4 Time(s)
/pub/ovirt-3.4/rpm/el6.6/repodata/repomd.xml: 6 Time(s)
/pub/ovirt-3.4/rpm/el6//.treeinfo: 9 Time(s)
/pub/ovirt-3.4/rpm/el6//treeinfo: 9 Time(s)
/pub/ovirt-3.4/rpm/el6/repodata/2e38bad336 ... mary.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.4/rpm/el6/repodata/4cd55fcf5f ... ists.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.4/rpm/el6/repodata/d016b3e20c ... mary.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.4/rpm/el6/repodata/e54dde6e89 ... ists.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5-pre.bkp.20150119162541/src/ ... engine-reports/: 2 Time(s)
/pub/ovirt-3.5-pre/exe/ovirt-guest-tools/: 1 Time(s)
/pub/ovirt-3.5-pre/exe/ovirt-guest-tools/o ... tools-3.5_5.exe: 1 Time(s)
/pub/ovirt-3.5-pre/iso/ovirt-guest-tools/o ... tools-3.5_5.exe: 14 Time(s)
/pub/ovirt-3.5-pre/iso/ovirt-node-iso-3.4-20140508.2.el6.iso: 3 Time(s)
/pub/ovirt-3.5-pre/iso/ovirt-node-iso-3.5. ... 0140630.el6.iso: 2 Time(s)
/pub/ovirt-3.5-pre/rpm/el6/SRPMS/ovirt-eng ... 504.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6/SRPMS/ovirt-hos ... 297.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6/SRPMS/ovirt-iso ... ter.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6/SRPMS/vdsm-4.14 ... ac1.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6/ppc64/vdsm-4.16.5-0.el6.ppc64.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6/ppc64/vdsm-debu ... f.el6.ppc64.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6/ppc64/vdsm-pyth ... f.el6.ppc64.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6/repodata/3b6bb2 ... ilelists.xml.gz: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6/repodata/731f5b ... mary.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6/x86_64/ovirt-ho ... .el6.x86_64.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6/x86_64/qemu-kvm ... 5.10.x86_64.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6/x86_64/qemu-kvm ... 5.14.x86_64.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6/x86_64/vdsm-4.1 ... .el6.x86_64.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6/x86_64/vdsm-deb ... .el6.x86_64.rpm: 3 Time(s)
/pub/ovirt-3.5-pre/rpm/el6/x86_64/vdsm-pyt ... .el6.x86_64.rpm: 2 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Server/: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Server/SRPMS/?C=D;O=A: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Server/SRPMS/ovi ... 272.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Server/SRPMS/ovi ... 297.el6.src.rpm: 2 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Server/SRPMS/ovi ... 6da.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Server/SRPMS/ovi ... f23.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Server/SRPMS/qem ... l6_5.10.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Server/i686/?C=D;O=A: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Server/i686/ovir ... -1.el6.i686.rpm: 2 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Server/noarch/: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Server/ppc64/vds ... f.el6.ppc64.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Server/repodata/ ... ists.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Server/repodata/?C=D;O=D: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Server/repodata/repomd.xml: 79 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Server/x86_64/ov ... .el6.x86_64.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Server/x86_64/qe ... 5.10.x86_64.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Server/x86_64/vd ... .el6.x86_64.rpm: 5 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Workstation/SRPM ... 0-7.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Workstation/SRPM ... 297.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Workstation/SRPM ... 2c6.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Workstation/SRPM ... 3.1.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Workstation/SRPM ... 39f.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Workstation/SRPM ... 5f8.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Workstation/SRPM ... 600.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Workstation/SRPM ... ter.el6.src.rpm: 2 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Workstation/SRPMS/?C=D;O=A: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Workstation/SRPMS/?C=S;O=A: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Workstation/ppc6 ... f.el6.ppc64.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Workstation/repo ... mary.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Workstation/repodata/repomd.xml: 5 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Workstation/x86_ ... .el6.x86_64.rpm: 10 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Workstation/x86_64/: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7/SRPMS/mom-0.4.1 ... 8eb.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7/SRPMS/otopi-1.3 ... 22e.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7/SRPMS/otopi-1.3.0-1.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7/SRPMS/ovirt-eng ... .centos.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7/SRPMS/ovirt-hos ... 926.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7/SRPMS/ovirt-hos ... a43.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7/SRPMS/ovirt-hos ... b7e.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7/SRPMS/ovirt-hos ... b85.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7/SRPMS/vdsm-4.16 ... 270.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7/SRPMS/vdsm-4.16 ... 943.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7/SRPMS/vdsm-4.16.6-0.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7/SRPMS/vdsm-json ... 674.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7/noarch/otopi-de ... ntos.noarch.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7/noarch/vdsm-cli ... .el7.noarch.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7/noarch/vdsm-glu ... .el7.noarch.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7/noarch/vdsm-hoo ... .el7.noarch.rpm: 2 Time(s)
/pub/ovirt-3.5-pre/rpm/el7/noarch/vdsm-jso ... .el7.noarch.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7/noarch/vdsm-reg ... .el7.noarch.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7/ppc64/: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7/repodata/99778a ... ilelists.xml.gz: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7/x86_64/ioproces ... .el7.x86_64.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7/x86_64/libcacar ... _0.2.x86_64.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7/x86_64/ovirt-ho ... .el7.x86_64.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7/x86_64/vdsm-4.1 ... .el7.x86_64.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7/x86_64/vdsm-pyt ... .el7.x86_64.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Server/?C=D;O=D: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Server/SRPMS/iop ... 0-1.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Server/SRPMS/mom ... 8eb.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Server/SRPMS/oto ... .centos.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Server/SRPMS/oto ... 22e.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Server/SRPMS/ovi ... 0-1.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Server/SRPMS/ovi ... 1-1.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Server/SRPMS/ovi ... 2-1.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Server/SRPMS/ovi ... 419.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Server/SRPMS/ovi ... 5f8.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Server/SRPMS/ovi ... 7-1.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Server/SRPMS/qem ... el7_0.2.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Server/noarch/: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Server/ppc64/: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Server/ppc64/vds ... 0.el7.ppc64.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Server/repodata/ ... ists.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Server/repodata/ ... ther.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Server/repodata/?C=M;O=A: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Server/repodata/?C=S;O=D: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Server/repodata/repomd.xml: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Server/x86_64/io ... .el7.x86_64.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Server/x86_64/ov ... .el7.x86_64.rpm: 2 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Server/x86_64/qe ... _0.2.x86_64.rpm: 2 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Server/x86_64/vd ... .el7.x86_64.rpm: 2 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Workstation/: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Workstation/?C=M;O=D: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Workstation/SRPM ... 0-1.el7.src.rpm: 2 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Workstation/SRPM ... 4-1.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Workstation/SRPM ... 5f8.el7.src.rpm: 3 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Workstation/SRPM ... 912.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Workstation/SRPM ... b2d.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Workstation/SRPM ... b85.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Workstation/SRPM ... c53.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Workstation/SRPM ... ter.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Workstation/SRPMS/: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Workstation/noar ... .el7.noarch.rpm: 3 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Workstation/noarch/: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Workstation/ppc6 ... 0.el7.ppc64.rpm: 3 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Workstation/ppc64/?C=M;O=A: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Workstation/repo ... 89-other.xml.gz: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Workstation/repodata/: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Workstation/repodata/?C=D;O=D: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Workstation/repodata/?C=M;O=D: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Workstation/x86_ ... .el7.x86_64.rpm: 2 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/SRPMS/ovirt-en ... -1.fc19.src.rpm: 2 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/SRPMS/ovirt-en ... .1.fc19.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/SRPMS/ovirt-en ... 12.fc19.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/SRPMS/ovirt-en ... 23.fc19.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/SRPMS/ovirt-en ... 57.fc19.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/SRPMS/ovirt-en ... db.fc19.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/SRPMS/ovirt-ho ... 53.fc19.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/SRPMS/ovirt-ho ... 86.fc19.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/SRPMS/ovirt-ho ... 97.fc19.src.rpm: 2 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/SRPMS/ovirt-ho ... a9.fc19.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/SRPMS/ovirt-im ... 70.fc19.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/SRPMS/ovirt-is ... -1.fc19.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/SRPMS/ovirt-is ... 93.fc19.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/SRPMS/ovirt-lo ... 27.fc19.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/SRPMS/vdsm-4.1 ... 3e.fc19.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/SRPMS/vdsm-4.1 ... 75.fc19.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/SRPMS/vdsm-4.1 ... 86.fc19.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/noarch/otopi-1 ... fc19.noarch.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/noarch/otopi-d ... fc19.noarch.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/repodata/?C=N;O=A: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/repodata/ddc2c ... ists.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/repodata/repomd.xml: 4 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/x86_64/: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/x86_64/ioproce ... fc19.x86_64.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/x86_64/kexec-t ... fc19.x86_64.rpm: 2 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/x86_64/ovirt-h ... fc19.x86_64.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/x86_64/vdsm-4. ... fc19.x86_64.rpm: 3 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/x86_64/vdsm-de ... fc19.x86_64.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/x86_64/vdsm-py ... fc19.x86_64.rpm: 3 Time(s)
/pub/ovirt-3.5-pre/rpm/fc20/SRPMS/ovirt-en ... -1.fc20.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc20/SRPMS/ovirt-ho ... 53.fc20.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc20/SRPMS/ovirt-ho ... 97.fc20.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc20/SRPMS/ovirt-is ... 28.fc20.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc20/SRPMS/ovirt-is ... df.fc20.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc20/SRPMS/vdsm-4.16.5-0.fc20.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc20/SRPMS/vdsm-jso ... 19.fc20.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc20/x86_64/ovirt-h ... fc20.x86_64.rpm: 4 Time(s)
/pub/ovirt-3.5-pre/rpm/fc20/x86_64/vdsm-4. ... fc20.x86_64.rpm: 4 Time(s)
/pub/ovirt-3.5-pre/rpm/fc20/x86_64/vdsm-de ... fc20.x86_64.rpm: 2 Time(s)
/pub/ovirt-3.5-pre/rpm/fc20/x86_64/vdsm-py ... fc20.x86_64.rpm: 4 Time(s)
/pub/ovirt-3.5-pre/src/ioprocess/?C=S;O=A: 1 Time(s)
/pub/ovirt-3.5-pre/src/ioprocess/ioprocess-0.11.0.tar.gz.sig: 1 Time(s)
/pub/ovirt-3.5-pre/src/jasperreports-serve ... .0a-bin.zip.sig: 1 Time(s)
/pub/ovirt-3.5-pre/src/jasperreports-serve ... 5.0-bin.zip.sig: 1 Time(s)
/pub/ovirt-3.5-pre/src/kexec-tools/kexec-tools-po.tar.gz.sig: 1 Time(s)
/pub/ovirt-3.5-pre/src/mom/?C=M;O=A: 1 Time(s)
/pub/ovirt-3.5-pre/src/mom/?C=S;O=A: 1 Time(s)
/pub/ovirt-3.5-pre/src/mom/mom-0.4.0_master.tar.gz.sig: 1 Time(s)
/pub/ovirt-3.5-pre/src/mom/mom-0.4.1_master.tar.gz: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-engine-cli/ov ... -3.5.0.2.tar.gz: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-engine-extens ... ster.tar.gz.sig: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-engine-jboss- ... 1.Final.zip.sig: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-engine-report ... .5.0_rc2.tar.gz: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-engine-report ... .5.0_rc3.tar.gz: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-engine-report ... .5.0_rc4.tar.gz: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-engine-sdk-ja ... .0.0.tar.gz.sig: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-engine-sdk-py ... -3.5.0.0.tar.gz: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-engine-sdk-py ... -3.5.0.3.tar.gz: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-engine-sdk-py ... .0.5.tar.gz.sig: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-host-deploy/o ... 2_master.tar.gz: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-hosted-engine ... .1.3.tar.gz.sig: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-hosted-engine ... 06192043.tar.gz: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-hosted-engine ... 2226.tar.gz.sig: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-hosted-engine ... 2317.tar.gz.sig: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-hosted-engine ... 25101535.tar.gz: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-hosted-engine ... ster.tar.gz.sig: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-hosted-engine ... up-1.2.0.tar.gz: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-iso-uploader/ ... .5.0.tar.gz.sig: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-log-collector ... .5.0.tar.gz.sig: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-log-collector ... ster.tar.gz.sig: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-node-plugin-v ... .1.1.tar.gz.sig: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-node-plugin-v ... 0_master.tar.gz: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-node-plugin-vdsm/: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-node/ovirt-no ... .0.4.tar.gz.sig: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-optimizer/ovi ... -0.3.tar.gz.sig: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-optimizer/ovi ... izer-0.2.tar.gz: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-release/?C=D;O=A: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-release/?C=S;O=A: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-release/ovirt ... 01_beta1.tar.gz: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-release/ovirt ... pha1.tar.gz.sig: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-release33/ovi ... ster.tar.gz.sig: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-release35/?C=M;O=D: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-release35/ovi ... _rc1.tar.gz.sig: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-release35/ovi ... _rc2.tar.gz.sig: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-release35/ovi ... pha1.tar.gz.sig: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-scheduler-pro ... g4ccb674.tar.gz: 1 Time(s)
/pub/ovirt-3.5-pre/src/qemu-kvm-rhev/: 1 Time(s)
/pub/ovirt-3.5-pre/src/qemu-kvm/?C=D;O=A: 1 Time(s)
/pub/ovirt-3.5-pre/src/sos-3.1.tar.gz: 1 Time(s)
/pub/ovirt-3.5-pre/src/sos/sos-30d85c9c776 ... 7a92dd3b.tar.gz: 1 Time(s)
/pub/ovirt-3.5-pre/src/vdsm-jsonrpc-java/v ... 7_master.tar.gz: 1 Time(s)
/pub/ovirt-3.5-pre/src/vdsm-jsonrpc-java/v ... 8_master.tar.gz: 1 Time(s)
/pub/ovirt-3.5-pre/src/vdsm-jsonrpc-java/v ... ster.tar.gz.sig: 1 Time(s)
/pub/ovirt-3.5-pre/src/vdsm/vdsm-4.16.4.tar.gz.sig: 1 Time(s)
/pub/ovirt-3.5-pre/src/vdsm/vdsm-4.16.5.tar.gz.sig: 1 Time(s)
/pub/ovirt-3.5-pre/src/vdsm/vdsm-4.16.6.tar.gz: 1 Time(s)
/pub/ovirt-3.5-snapshot-static/rpm/el6.6/r ... 07-other.xml.gz: 1 Time(s)
/pub/ovirt-3.5-snapshot-static/rpm/el6/rep ... -primary.xml.gz: 2 Time(s)
/pub/ovirt-3.5-snapshot-static/rpm/el6/rep ... 3f-other.xml.gz: 1 Time(s)
/pub/ovirt-3.5-snapshot-static/rpm/el6/rep ... ther.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5-snapshot-static/rpm/el7/rep ... -primary.xml.gz: 1 Time(s)
/pub/ovirt-3.5-snapshot-static/rpm/el7/rep ... ther.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5-snapshot-static/rpm/el7Serv ... 5-1.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot-static/rpm/el7Serv ... 9a-other.xml.gz: 1 Time(s)
/pub/ovirt-3.5-snapshot-static/rpm/el7Serv ... mary.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5-snapshot-static/rpm/el7Work ... -primary.xml.gz: 1 Time(s)
/pub/ovirt-3.5-snapshot-static/rpm/el7Work ... ther.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5-snapshot-static/rpm/fc20/re ... ists.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5-snapshot-static/src/spice-h ... l5-0.1.5.tar.gz: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6.6/SRPMS/ov ... 173.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6.6/SRPMS/ov ... 27a.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6.6/SRPMS/ov ... f70.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6.6/SRPMS/vd ... c2f.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6.6/noarch/o ... .el6.noarch.rpm: 12 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6.6/noarch/o ... el6.noarch.rpm/: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6.6/noarch/v ... .el6.noarch.rpm: 17 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6.6/repodata ... -primary.xml.gz: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6.6/repodata ... ists.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6.6/repodata ... ther.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6.6/x86_64/o ... .el6.x86_64.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6.6/x86_64/v ... .el6.x86_64.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6/SRPMS/ovir ... 033.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6/SRPMS/ovir ... f70.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6/SRPMS/vdsm ... d29.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6/noarch/ovi ... .el6.noarch.rpm: 2 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6/repodata/0 ... ists.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6/repodata/3 ... ther.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6/repodata/f ... c2-other.xml.gz: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6/x86_64/vds ... .el6.x86_64.rpm: 4 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6Server/SRPM ... 116.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6Server/SRPM ... 32b.el6.src.rpm: 2 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6Server/SRPM ... 335.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6Server/SRPM ... 393.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6Server/SRPM ... 5ac.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6Server/SRPM ... 66e.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6Server/SRPM ... 78a.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6Server/SRPM ... 927.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6Server/SRPM ... f70.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6Server/noar ... .el6.noarch.rpm: 2 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6Server/repo ... ists.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6Server/x86_ ... .el6.x86_64.rpm: 2 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6Workstation ... .el6.noarch.rpm: 35 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6Workstation ... 2dc.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6Workstation ... 393.el6.src.rpm: 2 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6Workstation ... 612.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6Workstation ... 66e.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6Workstation ... bc-other.xml.gz: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6Workstation ... ists.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7/SRPMS/ovir ... .centos.src.rpm: 2 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7/SRPMS/ovir ... 5ac.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7/SRPMS/ovir ... d59.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7/noarch/oto ... ntos.noarch.rpm: 2 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7/noarch/ovi ... .el7.noarch.rpm: 2 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7/noarch/ovi ... ntos.noarch.rpm: 2 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7/repodata/0 ... mary.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7/repodata/6 ... ilelists.xml.gz: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7Server/SRPM ... 173.el7.src.rpm: 2 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7Server/SRPM ... d59.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7Server/noar ... .el7.noarch.rpm: 20 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7Server/noar ... ntos.noarch.rpm: 20 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7Workstation ... .el7.noarch.rpm: 11 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7Workstation ... d29.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7Workstation ... mary.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7Workstation ... ntos.noarch.rpm: 4 Time(s)
/pub/ovirt-3.5-snapshot/rpm/fc19/SRPMS/ovi ... 12.fc19.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/fc19/SRPMS/ovi ... 59.fc19.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/fc19/SRPMS/ovi ... 6e.fc19.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/fc19/noarch/ot ... fc19.noarch.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/fc19/noarch/ov ... fc19.noarch.rpm: 3 Time(s)
/pub/ovirt-3.5-snapshot/rpm/fc19/noarch/py ... fc19.noarch.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/fc19/repodata/ ... ilelists.xml.gz: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/fc20/SRPMS/ovi ... 11.fc20.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/fc20/SRPMS/ovi ... 59.fc20.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/fc20/SRPMS/ovi ... dc.fc20.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/fc20/noarch/ov ... fc20.noarch.rpm: 2 Time(s)
/pub/ovirt-3.5-snapshot/rpm/fc21/SRPMS/ovi ... 2b.fc21.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/fc21/SRPMS/ovi ... 3f.fc21.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/fc21/SRPMS/ovi ... 73.fc21.src.rpm: 5 Time(s)
/pub/ovirt-3.5-snapshot/rpm/fc21/SRPMS/ovi ... d6.fc21.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/fc21/SRPMS/ovi ... dc.fc21.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/src/otopi/otopi-1.3.1_master.tar.gz: 1 Time(s)
/pub/ovirt-3.5-snapshot/src/ovirt-engine-a ... 20150108.tar.gz: 1 Time(s)
/pub/ovirt-3.5-snapshot/src/ovirt-engine-e ... 1_master.tar.gz: 1 Time(s)
/pub/ovirt-3.5-snapshot/src/ovirt-engine-r ... 1_master.tar.gz: 1 Time(s)
/pub/ovirt-3.5.bkp.20150119173800/rpm/el7/noarch/: 1 Time(s)
/pub/ovirt-3.5.bkp.20150119173800/src/ovirt-node/: 2 Time(s)
/pub/ovirt-3.5/iso/ovirt-live-el6-3.5.0.iso.md5: 1 Time(s)
/pub/ovirt-3.5/rpm/el6.5/repodata/repomd.xml: 14 Time(s)
/pub/ovirt-3.5/rpm/el6.6/x86_64/repodata/repomd.xml: 1 Time(s)
/pub/ovirt-3.5/rpm/el6/.treeinfo: 4 Time(s)
/pub/ovirt-3.5/rpm/el6//httpcomponents-cli ... .el6.noarch.rpm: 1 Time(s)
/pub/ovirt-3.5/rpm/el6//jasperreports-serv ... .el6.noarch.rpm: 6 Time(s)
/pub/ovirt-3.5/rpm/el6//jasprrrrreports-se ... .el6.noarch.rpm: 1 Time(s)
/pub/ovirt-3.5/rpm/el6/noarch/jaspereports ... .el6.noarch.rpm: 1 Time(s)
/pub/ovirt-3.5/rpm/el6/noarch/jasprrrrrepo ... .el6.noarch.rpm: 1 Time(s)
/pub/ovirt-3.5/rpm/el6/repodata/0e99c586c1 ... ther.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5/rpm/el6/treeinfo: 4 Time(s)
/pub/ovirt-3.5/rpm/el6Server/repodata/0e99 ... ther.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5/rpm/el6Server/repodata/3fae ... mary.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5/rpm/el6Server/repodata/443e ... 84-other.xml.gz: 1 Time(s)
/pub/ovirt-3.5/rpm/el6Server/repodata/6de4 ... ilelists.xml.gz: 1 Time(s)
/pub/ovirt-3.5/rpm/el6Server/repodata/ffcb ... ilelists.xml.gz: 1 Time(s)
/pub/ovirt-3.5/rpm/el6Server/x86_64/repodata/repomd.xml: 1 Time(s)
/pub/ovirt-3.5/rpm/el7/.treeinfo: 2 Time(s)
/pub/ovirt-3.5/rpm/el7/repodata/4f7ce0d3ae ... ther.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5/rpm/el7/treeinfo: 2 Time(s)
/pub/ovirt-3.5/rpm/el7Server/repodata/a31b ... 10-other.xml.gz: 1 Time(s)
/pub/ovirt-3.5/rpm/el7Server/x86_64/repodata/repomd.xml: 1 Time(s)
/pub/ovirt-3.5/rpm/el7Workstation/repodata ... -primary.xml.gz: 2 Time(s)
/pub/ovirt-3.5/rpm/el7Workstation/repodata ... ilelists.xml.gz: 1 Time(s)
/pub/ovirt-3.5/rpm/fc19/repodata/9cb85e01d ... ther.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5/rpm/fc19/repodata/c56fab417 ... b5-other.xml.gz: 1 Time(s)
/pub/ovirt-3.5/rpm/fc19/repodata/e412d880f ... ists.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5/rpm/fc20/repodata/7b528621f ... ists.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5/rpm/fc21/repodata/cbe38d0d0 ... ther.sqlite.bz2: 1 Time(s)
/pub/ovirt-master-snapshot-static/rpm/el6/ ... -primary.xml.gz: 2 Time(s)
/pub/ovirt-master-snapshot-static/rpm/el6/ ... 30-other.xml.gz: 1 Time(s)
/pub/ovirt-master-snapshot-static/rpm/el6/ ... ther.sqlite.bz2: 1 Time(s)
/pub/ovirt-master-snapshot-static/rpm/el7S ... .el7.noarch.rpm: 1 Time(s)
/pub/ovirt-master-snapshot-static/rpm/el7S ... 5-1.el7.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot-static/rpm/el7S ... ilelists.xml.gz: 1 Time(s)
/pub/ovirt-master-snapshot-static/rpm/fc19 ... mary.sqlite.bz2: 1 Time(s)
/pub/ovirt-master-snapshot-static/rpm/fc20 ... mary.sqlite.bz2: 1 Time(s)
/pub/ovirt-master-snapshot-static/rpm/fc21 ... f1-other.xml.gz: 1 Time(s)
/pub/ovirt-master-snapshot-static/rpm/fc21 ... ists.sqlite.bz2: 1 Time(s)
/pub/ovirt-master-snapshot-static/rpm/fc21 ... mary.sqlite.bz2: 1 Time(s)
/pub/ovirt-master-snapshot-static/rpm/fc21 ... ther.sqlite.bz2: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/centos/SRPMS/: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6.6/SRPMS ... 09c.el6.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6.6/SRPMS ... 56d.el6.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6.6/repod ... 83-other.xml.gz: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6.6/repod ... mary.sqlite.bz2: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6.6/x86_6 ... .el6.x86_64.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6/SRPMS/o ... 0dc.el6.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6/SRPMS/o ... 1a6.el6.src.rpm: 2 Time(s)
/pub/ovirt-master-snapshot/rpm/el6/SRPMS/o ... 32b.el6.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6/SRPMS/o ... 332.el6.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6/SRPMS/o ... 56d.el6.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6/SRPMS/o ... 78a.el6.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6/SRPMS/o ... af7.el6.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6/SRPMS/o ... dc1.el6.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6/SRPMS/v ... 2f0.el6.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6/SRPMS/v ... 4f5.el6.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6/noarch/ ... .el6.noarch.rpm: 12 Time(s)
/pub/ovirt-master-snapshot/rpm/el6/repodat ... ists.sqlite.bz2: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6/x86_64/ ... .el6.x86_64.rpm: 3 Time(s)
/pub/ovirt-master-snapshot/rpm/el6Server/S ... de2.el6.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6Server/S ... e77.el6.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6Workstat ... .el6.noarch.rpm: 20 Time(s)
/pub/ovirt-master-snapshot/rpm/el6Workstat ... .el6.x86_64.rpm: 5 Time(s)
/pub/ovirt-master-snapshot/rpm/el6Workstat ... 173.el6.src.rpm: 2 Time(s)
/pub/ovirt-master-snapshot/rpm/el6Workstat ... 1a6.el6.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6Workstat ... 2ac.el6.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6Workstat ... dc1.el6.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6Workstat ... mary.sqlite.bz2: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el7/SRPMS/o ... 173.el7.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el7/SRPMS/o ... 701.el7.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el7/SRPMS/o ... b77.el7.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el7/SRPMS/v ... 382.el7.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el7/SRPMS/v ... 786.el7.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el7/SRPMS/v ... 8b2.el7.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el7/noarch/ ... .el7.noarch.rpm: 67 Time(s)
/pub/ovirt-master-snapshot/rpm/el7/noarch/ ... ntos.noarch.rpm: 24 Time(s)
/pub/ovirt-master-snapshot/rpm/el7/x86_64/ ... .el7.x86_64.rpm: 3 Time(s)
/pub/ovirt-master-snapshot/rpm/el7Server/S ... .centos.src.rpm: 4 Time(s)
/pub/ovirt-master-snapshot/rpm/el7Server/S ... 0dc.el7.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el7Server/S ... 2f0.el7.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el7Server/S ... 385.el7.src.rpm: 2 Time(s)
/pub/ovirt-master-snapshot/rpm/el7Server/S ... 4b0.el7.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el7Server/S ... 57a.el7.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el7Server/S ... 97d.el7.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el7Server/n ... .el7.noarch.rpm: 19 Time(s)
/pub/ovirt-master-snapshot/rpm/el7Server/n ... ntos.noarch.rpm: 4 Time(s)
/pub/ovirt-master-snapshot/rpm/el7Server/r ... ther.sqlite.bz2: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el7Workstat ... .centos.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el7Workstat ... .el7.noarch.rpm: 18 Time(s)
/pub/ovirt-master-snapshot/rpm/el7Workstat ... 173.el7.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el7Workstat ... 90-other.xml.gz: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el7Workstat ... ntos.noarch.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/fc19/SRPMS/ ... 73.fc19.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/fc19/SRPMS/ ... d1.fc19.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/fc19/noarch ... fc19.noarch.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/fc19/repoda ... mary.sqlite.bz2: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/fc20/SRPMS/ ... 14.fc20.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/fc20/SRPMS/ ... 2b.fc20.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/fc20/SRPMS/ ... 73.fc20.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/fc20/SRPMS/ ... 77.fc20.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/fc20/SRPMS/ ... 86.fc20.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/fc20/SRPMS/ ... ad.fc20.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/fc20/SRPMS/ ... b4.fc20.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/fc20/SRPMS/ ... c1.fc20.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/fc20/SRPMS/ ... cb.fc20.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/fc20/noarch ... fc20.noarch.rpm: 33 Time(s)
/pub/ovirt-master-snapshot/rpm/fc20/repoda ... 37-other.xml.gz: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/fc20/repoda ... ilelists.xml.gz: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/fc20/repoda ... ists.sqlite.bz2: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/fc20/repoda ... ther.sqlite.bz2: 17 Time(s)
/pub/ovirt-master-snapshot/rpm/fc20/x86_64 ... fc20.x86_64.rpm: 6 Time(s)
/pub/ovirt-master-snapshot/rpm/fc21/SRPMS/ ... 1b.fc21.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/fc21/SRPMS/ ... 33.fc21.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/fc21/SRPMS/ ... 70.fc21.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/fc21/SRPMS/ ... 73.fc21.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/fc21/noarch ... fc21.noarch.rpm: 79 Time(s)
/pub/ovirt-master-snapshot/rpm/fc21/x86_64 ... fc21.x86_64.rpm: 6 Time(s)
/pub/ovirt-snapshot-static/rpm/el6/repodata/repomd.xml: 2 Time(s)
/pub/ovirt-snapshot/rpm/el6/noarch/otopi-1 ... .el6.noarch.rpm: 1 Time(s)
/pub/ovirt-snapshot/rpm/el6/noarch/otopi-j ... .el6.noarch.rpm: 1 Time(s)
/pub/ovirt-snapshot/rpm/el6/noarch/ovirt-e ... .el6.noarch.rpm: 14 Time(s)
/pub/ovirt-snapshot/rpm/el6/noarch/ovirt-h ... .el6.noarch.rpm: 2 Time(s)
/pub/ovirt-snapshot/rpm/el6/repodata/repomd.xml: 2 Time(s)
/pub/tum-repo/ovirt-release35.rpm: 1 Time(s)
/pub/yum-repo/This%20article%20originally% ... 0and%20Google+.: 1 Time(s)
/pub/yum-repo/ovirt-release.rpm: 1 Time(s)
/pub/yum-repo/ovirt-release36.rpm: 1 Time(s)
/pub/yum-repo/ovirt-releaseXY.rpm: 4 Time(s)
/pub/yum-repo/ovirt-releases35.rpm: 2 Time(s)
/pub/yum-repo/ovirt.release34.rpm: 1 Time(s)
/pub/yum-repo/ovrit-release35.rpm: 3 Time(s)
/repos/ci-tools/fedora/19/repodata/39e4b4f ... -primary.xml.gz: 1 Time(s)
/repos/clean_pub/ovirt-3.4/rpm/el6/i386/: 1 Time(s)
/repos/clean_pub/ovirt-master-snapshot/iso/ovirt-node-iso/: 1 Time(s)
/repos/clean_pub/ovirt-master-snapshot/src ... 0140706.tar.gz/: 1 Time(s)
/repos/clean_pub/ovirt-master-snapshot/src ... 0140707.tar.gz/: 1 Time(s)
/repos/ovirt-3.4.old/src/jasperreports-server/: 1 Time(s)
/repos/ovirt-3.4.old/src/ovirt-host-deploy/: 1 Time(s)
/repos/ovirt-3.5-20150108-1-backup/src/httpcomponents-core/: 2 Time(s)
/repos/ovirt-3.5-20150108-1-backup/src/jasperreports-server/: 2 Time(s)
/repos/ovirt-3.5-20150108-1-backup/src/kexec-tools/: 2 Time(s)
/repos/ovirt-3.5-20150108-1-backup/src/ovi ... n-logger-log4j/: 2 Time(s)
/repos/ovirt-3.5-20150108-2-backup/rpm/: 2 Time(s)
/repos/ovirt-3.5-20150108-2-backup/src/vdsm/: 2 Time(s)
/repos/ovirt-3.5-beta2/src/otopi/: 1 Time(s)
/repos/ovirt-3.5-pre.old/rpm/el6Server/repodata/: 1 Time(s)
/repos/ovirt-3.5.0-rc2/rpm/fc19/repodata/repomd.xml: 1 Time(s)
/robots.txt: 135 Time(s)
/scripts/fckeditor/editor/: 2 Time(s)
/stats/irc/blue-h.png: 1 Time(s)
/stats/irc/green-h.png: 1 Time(s)
/stats/irc/yellow-h.png: 1 Time(s)
/sysadmin/fckeditor/editor/: 2 Time(s)
/system/fckeditor/editor/: 2 Time(s)
/test/wp-admin/: 10 Time(s)
/user: 2 Time(s)
/user/: 6 Time(s)
/wordpress/wp-admin/: 9 Time(s)
/wp-admin/: 8 Time(s)
/wp-content/plugins/wp-slimstat-ex/lib/ofc ... pload_image.php: 1 Time(s)
/wp-content/themes/Nova/timthumb.php?src=h ... om%2Fsimple.php: 1 Time(s)
/wp-content/themes/premiumnews/thumb.php?s ... y.com%2Fbad.php: 2 Time(s)
/wp-content/themes/welcome_inn/thumb.php?s ... .com.tr/php.php: 5 Time(s)
/wp-content/themes/welcome_inn/thumb.php?s ... om.tr/budak.php: 1 Time(s)
/wp-login.php: 16 Time(s)
/wp-login.php?action=register: 16 Time(s)
/wp/wp-admin/: 10 Time(s)
/xmlrpc.php: 2 Time(s)
405 Method Not Allowed
/mailman/listinfo: 1 Time(s)
/nyet.gif: 4 Time(s)
416 Request Range Not Satisfiable
/pub/ovirt-3.4/rpm/el6/noarch/otopi-devtoo ... .el6.noarch.rpm: 1 Time(s)
/pub/ovirt-3.4/rpm/el6/noarch/otopi-java-1 ... .el6.noarch.rpm: 1 Time(s)
/pub/ovirt-3.4/rpm/el6/noarch/otopi-repoli ... .el6.noarch.rpm: 1 Time(s)
/pub/ovirt-3.5/rpm/fc21/noarch/ovirt-relea ... 02-1.noarch.rpm: 910 Time(s)
/pub/ovirt-master-snapshot-static/rpm/el6/ ... ster.noarch.rpm: 12 Time(s)
/pub/ovirt-master-snapshot/rpm/el6/noarch/ ... .el6.noarch.rpm: 48 Time(s)
/pub/ovirt-master-snapshot/rpm/el6/x86_64/ ... l6_6.x86_64.rpm: 48 Time(s)
501 Not Implemented
null: 3 Time(s)
503 Service Unavailable
/_h5ai/client/images/ascending.svg: 1 Time(s)
/_h5ai/client/images/descending.svg: 1 Time(s)
/plain/pub/ovirt-3.4/iso/ovirt-live-3.4.1.el6ev.iso: 22 Time(s)
/plain/pub/ovirt-3.4/iso/ovirt-node-iso-3. ... 40508.2.el6.iso: 13 Time(s)
/pub/: 3 Time(s)
/pub/ovirt-3.4/iso/ovirt-live-3.4.1.el6ev.iso: 29 Time(s)
/pub/ovirt-3.4/iso/ovirt-node-iso-3.4-20140423.1.el6.iso: 1 Time(s)
/pub/ovirt-3.4/iso/ovirt-node-iso-3.4-20140508.2.el6.iso: 10 Time(s)
/pub/ovirt-3.4/src/httpcomponents-client/h ... -4.2-src.tar.gz: 20 Time(s)
/pub/ovirt-3.4/src/httpcomponents-core/htt ... -4.2-src.tar.gz: 13 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-engine-extension-aaa-ldap/: 1 Time(s)
/pub/ovirt-3.5/: 2 Time(s)
/pub/ovirt-3.5/exe/ovirt-guest-tools/ovirt ... tools-3.5_5.exe: 20 Time(s)
/pub/ovirt-3.5/iso/ovirt-live-el6-3.5.0.iso: 78 Time(s)
/pub/ovirt-3.5/iso/ovirt-live-el6-3.5.1.iso: 1573 Time(s)
/pub/ovirt-3.5/src/httpcomponents-client/h ... -4.2-src.tar.gz: 9 Time(s)
/pub/ovirt-3.5/src/httpcomponents-core/htt ... -4.2-src.tar.gz: 5 Time(s)
/pub/yum-repo/: 3 Time(s)
---------------------- httpd End -------------------------
--------------------- Named Begin ------------------------
**Unmatched Entries**
validating @0xadfc1038: 179.107.in-addr.arpa SOA: got insecure response; parent indicates it should be secure: 5 Time(s)
validating @0xae780028: 179.107.in-addr.arpa SOA: got insecure response; parent indicates it should be secure: 1 Time(s)
validating @0xae9d8170: 179.107.in-addr.arpa SOA: got insecure response; parent indicates it should be secure: 4 Time(s)
validating @0xaed9d598: 179.107.in-addr.arpa SOA: got insecure response; parent indicates it should be secure: 8 Time(s)
validating @0xaed9d598: findthebestnew-healthyalerts.rocks SOA: got insecure response; parent indicates it should be secure: 1 Time(s)
validating @0xb09ff040: 148.104.in-addr.arpa SOA: got insecure response; parent indicates it should be secure: 1 Time(s)
validating @0xb09ff040: 179.107.in-addr.arpa SOA: got insecure response; parent indicates it should be secure: 10 Time(s)
validating @0xb0c357d8: 179.107.in-addr.arpa SOA: got insecure response; parent indicates it should be secure: 14 Time(s)
validating @0xb0c357d8: findthebestnew-healthyalerts.rocks SOA: got insecure response; parent indicates it should be secure: 1 Time(s)
validating @0xb0e06980: 179.107.in-addr.arpa SOA: got insecure response; parent indicates it should be secure: 2 Time(s)
validating @0xb0e073f8: 179.107.in-addr.arpa SOA: got insecure response; parent indicates it should be secure: 8 Time(s)
validating @0xb0f2f648: 179.107.in-addr.arpa SOA: got insecure response; parent indicates it should be secure: 1 Time(s)
validating @0xb0f38c78: 179.107.in-addr.arpa SOA: got insecure response; parent indicates it should be secure: 5 Time(s)
validating @0xb1002478: 179.107.in-addr.arpa SOA: got insecure response; parent indicates it should be secure: 5 Time(s)
validating @0xb1018360: 179.107.in-addr.arpa SOA: got insecure response; parent indicates it should be secure: 17 Time(s)
validating @0xb1018dd8: 179.107.in-addr.arpa SOA: got insecure response; parent indicates it should be secure: 1 Time(s)
validating @0xb1133dd0: 179.107.in-addr.arpa SOA: got insecure response; parent indicates it should be secure: 16 Time(s)
validating @0xb1133dd0: findthebestnew-healthyalerts.rocks SOA: got insecure response; parent indicates it should be secure: 1 Time(s)
validating @0xb1201150: 179.107.in-addr.arpa SOA: got insecure response; parent indicates it should be secure: 1 Time(s)
validating @0xb1226e58: 179.107.in-addr.arpa SOA: got insecure response; parent indicates it should be secure: 2 Time(s)
validating @0xb1338e18: 179.107.in-addr.arpa SOA: got insecure response; parent indicates it should be secure: 8 Time(s)
validating @0xb1338e18: findthebestnew-healthyalerts.rocks SOA: got insecure response; parent indicates it should be secure: 1 Time(s)
validating @0xb14e87b8: 179.107.in-addr.arpa SOA: got insecure response; parent indicates it should be secure: 10 Time(s)
validating @0xb14fc420: 148.104.in-addr.arpa SOA: got insecure response; parent indicates it should be secure: 1 Time(s)
validating @0xb14fc420: 179.107.in-addr.arpa SOA: got insecure response; parent indicates it should be secure: 5 Time(s)
clients-per-query decreased to 10: 1 Time(s)
clients-per-query decreased to 11: 1 Time(s)
clients-per-query decreased to 12: 1 Time(s)
clients-per-query decreased to 13: 1 Time(s)
clients-per-query decreased to 14: 1 Time(s)
clients-per-query increased to 15: 1 Time(s)
error (FORMERR) resolving 'authorities.in/NS/IN': 216.245.203.122#53: 3 Time(s)
error (FORMERR) resolving 'authorities.in/NS/IN': 64.31.42.226#53: 3 Time(s)
error (FORMERR) resolving 'ns-cmn1.qq.com/AAAA/IN': 101.226.66.18#53: 39 Time(s)
error (FORMERR) resolving 'ns-cmn1.qq.com/AAAA/IN': 103.7.29.241#53: 24 Time(s)
error (FORMERR) resolving 'ns-cmn1.qq.com/AAAA/IN': 120.204.202.200#53: 52 Time(s)
error (FORMERR) resolving 'ns-cmn1.qq.com/AAAA/IN': 14.17.19.140#53: 56 Time(s)
error (FORMERR) resolving 'ns-cmn1.qq.com/AAAA/IN': 175.155.119.229#53: 53 Time(s)
error (FORMERR) resolving 'ns-cmn1.qq.com/AAAA/IN': 184.105.66.196#53: 66 Time(s)
error (FORMERR) resolving 'ns-cmn1.qq.com/AAAA/IN': 202.55.2.226#53: 31 Time(s)
error (FORMERR) resolving 'ns-cmn1.qq.com/AAAA/IN': 202.55.2.230#53: 29 Time(s)
error (FORMERR) resolving 'ns-cmn1.qq.com/AAAA/IN': 61.135.167.182#53: 53 Time(s)
error (FORMERR) resolving 'ns-cnc1.qq.com/AAAA/IN': 101.226.66.18#53: 32 Time(s)
error (FORMERR) resolving 'ns-cnc1.qq.com/AAAA/IN': 103.7.29.241#53: 20 Time(s)
error (FORMERR) resolving 'ns-cnc1.qq.com/AAAA/IN': 120.204.202.200#53: 50 Time(s)
error (FORMERR) resolving 'ns-cnc1.qq.com/AAAA/IN': 14.17.19.140#53: 48 Time(s)
error (FORMERR) resolving 'ns-cnc1.qq.com/AAAA/IN': 175.155.119.229#53: 44 Time(s)
error (FORMERR) resolving 'ns-cnc1.qq.com/AAAA/IN': 184.105.66.196#53: 59 Time(s)
error (FORMERR) resolving 'ns-cnc1.qq.com/AAAA/IN': 202.55.2.226#53: 30 Time(s)
error (FORMERR) resolving 'ns-cnc1.qq.com/AAAA/IN': 202.55.2.230#53: 26 Time(s)
error (FORMERR) resolving 'ns-cnc1.qq.com/AAAA/IN': 61.135.167.182#53: 39 Time(s)
error (FORMERR) resolving 'ns-os1.qq.com/AAAA/IN': 101.226.66.18#53: 78 Time(s)
error (FORMERR) resolving 'ns-os1.qq.com/AAAA/IN': 103.7.29.241#53: 78 Time(s)
error (FORMERR) resolving 'ns-os1.qq.com/AAAA/IN': 120.204.202.200#53: 95 Time(s)
error (FORMERR) resolving 'ns-os1.qq.com/AAAA/IN': 14.17.19.140#53: 93 Time(s)
error (FORMERR) resolving 'ns-os1.qq.com/AAAA/IN': 175.155.119.229#53: 99 Time(s)
error (FORMERR) resolving 'ns-os1.qq.com/AAAA/IN': 184.105.66.196#53: 105 Time(s)
error (FORMERR) resolving 'ns-os1.qq.com/AAAA/IN': 202.55.2.226#53: 81 Time(s)
error (FORMERR) resolving 'ns-os1.qq.com/AAAA/IN': 202.55.2.230#53: 80 Time(s)
error (FORMERR) resolving 'ns-os1.qq.com/AAAA/IN': 61.135.167.182#53: 94 Time(s)
error (FORMERR) resolving 'ns-tel1.qq.com/AAAA/IN': 101.226.66.18#53: 32 Time(s)
error (FORMERR) resolving 'ns-tel1.qq.com/AAAA/IN': 103.7.29.241#53: 17 Time(s)
error (FORMERR) resolving 'ns-tel1.qq.com/AAAA/IN': 120.204.202.200#53: 47 Time(s)
error (FORMERR) resolving 'ns-tel1.qq.com/AAAA/IN': 14.17.19.140#53: 41 Time(s)
error (FORMERR) resolving 'ns-tel1.qq.com/AAAA/IN': 175.155.119.229#53: 44 Time(s)
error (FORMERR) resolving 'ns-tel1.qq.com/AAAA/IN': 184.105.66.196#53: 57 Time(s)
error (FORMERR) resolving 'ns-tel1.qq.com/AAAA/IN': 202.55.2.226#53: 24 Time(s)
error (FORMERR) resolving 'ns-tel1.qq.com/AAAA/IN': 202.55.2.230#53: 22 Time(s)
error (FORMERR) resolving 'ns-tel1.qq.com/AAAA/IN': 61.135.167.182#53: 35 Time(s)
error (FORMERR) resolving 'ns1.qq.com/AAAA/IN': 101.226.66.18#53: 1 Time(s)
error (FORMERR) resolving 'ns1.qq.com/AAAA/IN': 103.7.29.241#53: 1 Time(s)
error (FORMERR) resolving 'ns1.qq.com/AAAA/IN': 120.204.202.200#53: 1 Time(s)
error (FORMERR) resolving 'ns1.qq.com/AAAA/IN': 14.17.19.140#53: 1 Time(s)
error (FORMERR) resolving 'ns1.qq.com/AAAA/IN': 184.105.66.196#53: 1 Time(s)
error (FORMERR) resolving 'ns1.qq.com/AAAA/IN': 61.135.167.182#53: 1 Time(s)
error (FORMERR) resolving 'ns2.qq.com/AAAA/IN': 103.7.29.241#53: 1 Time(s)
error (FORMERR) resolving 'ns2.qq.com/AAAA/IN': 120.204.202.200#53: 1 Time(s)
error (FORMERR) resolving 'ns2.qq.com/AAAA/IN': 14.17.19.140#53: 1 Time(s)
error (FORMERR) resolving 'ns2.qq.com/AAAA/IN': 184.105.66.196#53: 1 Time(s)
error (FORMERR) resolving 'ns2.qq.com/AAAA/IN': 61.135.167.182#53: 1 Time(s)
error (FORMERR) resolving 'ns3.qq.com/AAAA/IN': 101.226.66.18#53: 1 Time(s)
error (FORMERR) resolving 'ns3.qq.com/AAAA/IN': 103.7.29.241#53: 1 Time(s)
error (FORMERR) resolving 'ns3.qq.com/AAAA/IN': 120.204.202.200#53: 1 Time(s)
error (FORMERR) resolving 'ns3.qq.com/AAAA/IN': 14.17.19.140#53: 1 Time(s)
error (FORMERR) resolving 'ns3.qq.com/AAAA/IN': 184.105.66.196#53: 1 Time(s)
error (FORMERR) resolving 'ns3.qq.com/AAAA/IN': 61.135.167.182#53: 1 Time(s)
error (FORMERR) resolving 'ns4.qq.com/AAAA/IN': 101.226.66.18#53: 1 Time(s)
error (FORMERR) resolving 'ns4.qq.com/AAAA/IN': 103.7.29.241#53: 1 Time(s)
error (FORMERR) resolving 'ns4.qq.com/AAAA/IN': 120.204.202.200#53: 1 Time(s)
error (FORMERR) resolving 'ns4.qq.com/AAAA/IN': 14.17.19.140#53: 1 Time(s)
error (FORMERR) resolving 'ns4.qq.com/AAAA/IN': 184.105.66.196#53: 1 Time(s)
error (FORMERR) resolving 'ns4.qq.com/AAAA/IN': 61.135.167.182#53: 1 Time(s)
error (FORMERR) resolving 'weldingequipments.net/MX/IN': 204.13.160.143#53: 42 Time(s)
error (FORMERR) resolving 'weldingequipments.net/MX/IN': 204.13.161.145#53: 42 Time(s)
error (chase DS servers) resolving 'rediris.es/DS/IN': 194.0.1.15#53: 2 Time(s)
error (chase DS servers) resolving 'rediris.es/DS/IN': 2001:678:4::f#53: 1 Time(s)
error (host unreachable) resolving 'adfinis-sygroup.ch/MX/IN': 5.148.174.196#53: 5 Time(s)
error (host unreachable) resolving 'bmx.adfinis-sygroup.ch/A/IN': 5.148.174.196#53: 1 Time(s)
error (host unreachable) resolving 'cluster6.us.messagelabs.com/AAAA/IN': 194.106.221.36#53: 1 Time(s)
error (host unreachable) resolving 'cluster9a.us.messagelabs.com/AAAA/IN': 194.106.221.36#53: 1 Time(s)
error (host unreachable) resolving 'dns3.sygroup.net/A/IN': 5.148.174.196#53: 1 Time(s)
error (host unreachable) resolving 'dns3.sygroup.net/AAAA/IN': 5.148.174.196#53: 1 Time(s)
error (host unreachable) resolving 'filtrare.adfinis-sygroup.ch/A/IN': 5.148.174.196#53: 2 Time(s)
error (host unreachable) resolving 'filtrare.adfinis-sygroup.ch/AAAA/IN': 5.148.174.196#53: 1 Time(s)
error (host unreachable) resolving 'filtro.adfinis-sygroup.ch/A/IN': 5.148.174.196#53: 2 Time(s)
error (host unreachable) resolving 'filtro.adfinis-sygroup.ch/AAAA/IN': 5.148.174.196#53: 1 Time(s)
error (host unreachable) resolving 'netapp.com/MX/IN': 202.3.115.11#53: 1 Time(s)
error (insecurity proof failed) resolving 'findthebestnew-healthyalerts.rocks/MX/IN': 156.154.165.50#53: 1 Time(s)
error (insecurity proof failed) resolving 'findthebestnew-healthyalerts.rocks/MX/IN': 156.154.165.51#53: 1 Time(s)
error (insecurity proof failed) resolving 'findthebestnew-healthyalerts.rocks/MX/IN': 156.154.165.58#53: 1 Time(s)
error (insecurity proof failed) resolving 'findthebestnew-healthyalerts.rocks/MX/IN': 156.154.165.82#53: 1 Time(s)
error (insecurity proof failed) resolving 'findthebestnew-healthyalerts.rocks/MX/IN': 156.154.165.88#53: 1 Time(s)
error (insecurity proof failed) resolving 'ms.aerohosting.cz/AAAA/IN': 74.117.158.145#53: 12 Time(s)
error (insecurity proof failed) resolving 'ms2.aerohosting.cz/AAAA/IN': 74.117.158.145#53: 12 Time(s)
error (no valid DS) resolving 'ull.edu.es/MX/IN': 193.145.120.80#53: 1 Time(s)
error (no valid RRSIG) resolving 'ms.aerohosting.cz/DS/IN': 74.117.158.145#53: 12 Time(s)
error (no valid RRSIG) resolving 'ms2.aerohosting.cz/DS/IN': 74.117.158.145#53: 12 Time(s)
error (unexpected RCODE REFUSED) resolving '108.133.135.61.in-addr.arpa/PTR/IN': 2001:250:208:4000:2000:2:0:20#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving '118.2.160.14.in-addr.arpa/PTR/IN': 203.162.0.11#53: 2 Time(s)
error (unexpected RCODE REFUSED) resolving '118.2.160.14.in-addr.arpa/PTR/IN': 203.162.4.1#53: 2 Time(s)
error (unexpected RCODE REFUSED) resolving '3.9.171.104.in-addr.arpa/PTR/IN': 108.175.144.42#53: 2 Time(s)
error (unexpected RCODE REFUSED) resolving '3.9.171.104.in-addr.arpa/PTR/IN': 174.37.143.41#53: 2 Time(s)
error (unexpected RCODE REFUSED) resolving '60.164.160.167.in-addr.arpa/PTR/IN': 167.88.119.103#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving '68.60.7.31.in-addr.arpa/PTR/IN': 2a02:29b8:1836::2#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving '68.60.7.31.in-addr.arpa/PTR/IN': 46.19.140.194#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving '73.133.57.64.in-addr.arpa/PTR/IN': 204.152.222.2#53: 2 Time(s)
error (unexpected RCODE REFUSED) resolving '73.133.57.64.in-addr.arpa/PTR/IN': 204.152.223.2#53: 2 Time(s)
error (unexpected RCODE REFUSED) resolving '75.133.57.64.in-addr.arpa/PTR/IN': 204.152.222.2#53: 2 Time(s)
error (unexpected RCODE REFUSED) resolving '75.133.57.64.in-addr.arpa/PTR/IN': 204.152.223.2#53: 2 Time(s)
error (unexpected RCODE REFUSED) resolving '76.133.57.64.in-addr.arpa/PTR/IN': 204.152.222.2#53: 2 Time(s)
error (unexpected RCODE REFUSED) resolving '76.133.57.64.in-addr.arpa/PTR/IN': 204.152.223.2#53: 2 Time(s)
error (unexpected RCODE REFUSED) resolving '77.133.57.64.in-addr.arpa/PTR/IN': 204.152.222.2#53: 2 Time(s)
error (unexpected RCODE REFUSED) resolving '77.133.57.64.in-addr.arpa/PTR/IN': 204.152.223.2#53: 2 Time(s)
error (unexpected RCODE REFUSED) resolving 'adsl.viettel.vn/A/IN': 203.113.131.2#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'adsl.viettel.vn/AAAA/IN': 203.113.131.2#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'enegom.com/MX/IN': 87.106.36.92#53: 7 Time(s)
error (unexpected RCODE REFUSED) resolving 'enegom.com/NS/IN': 87.106.36.92#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'logancheck.net/MX/IN': 173.245.58.249#53: 119 Time(s)
error (unexpected RCODE REFUSED) resolving 'logancheck.net/MX/IN': 173.245.59.190#53: 118 Time(s)
error (unexpected RCODE REFUSED) resolving 'logancheck.net/NS/IN': 173.245.58.249#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'logancheck.net/NS/IN': 173.245.59.190#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'luxfo.com/MX/IN': 173.245.58.249#53: 84 Time(s)
error (unexpected RCODE REFUSED) resolving 'luxfo.com/MX/IN': 173.245.59.190#53: 84 Time(s)
error (unexpected RCODE REFUSED) resolving 'luxfo.com/NS/IN': 173.245.58.249#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'luxfo.com/NS/IN': 173.245.59.190#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'mail.enegom.com/A/IN': 87.106.36.92#53: 8 Time(s)
error (unexpected RCODE REFUSED) resolving 'mail.enegom.com/AAAA/IN': 87.106.36.92#53: 8 Time(s)
error (unexpected RCODE REFUSED) resolving 'meegozu.com/MX/IN': 173.245.58.249#53: 50 Time(s)
error (unexpected RCODE REFUSED) resolving 'meegozu.com/MX/IN': 173.245.59.190#53: 50 Time(s)
error (unexpected RCODE REFUSED) resolving 'meegozu.com/NS/IN': 173.245.58.249#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'meegozu.com/NS/IN': 173.245.59.190#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'mx1.ks.pochta.ru/A/IN': 185.79.119.222#53: 27 Time(s)
error (unexpected RCODE REFUSED) resolving 'mx1.ks.pochta.ru/AAAA/IN': 185.79.119.222#53: 32 Time(s)
error (unexpected RCODE REFUSED) resolving 'mx1.lnf.infn.it/A/IN': 141.108.5.3#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'mx1.lnf.infn.it/AAAA/IN': 141.108.5.3#53: 3 Time(s)
error (unexpected RCODE REFUSED) resolving 'mx1.sante-martinique.fr/A/IN': 213.16.20.3#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'mx2.ks.pochta.ru/A/IN': 185.79.119.222#53: 29 Time(s)
error (unexpected RCODE REFUSED) resolving 'mx2.ks.pochta.ru/AAAA/IN': 185.79.119.222#53: 30 Time(s)
error (unexpected RCODE REFUSED) resolving 'mx2.lnf.infn.it/A/IN': 141.108.5.3#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'mx2.lnf.infn.it/AAAA/IN': 141.108.5.3#53: 3 Time(s)
error (unexpected RCODE REFUSED) resolving 'mx2.sante-martinique.fr/A/IN': 213.16.20.3#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'mx3.ks.pochta.ru/A/IN': 185.79.119.222#53: 28 Time(s)
error (unexpected RCODE REFUSED) resolving 'mx3.ks.pochta.ru/AAAA/IN': 185.79.119.222#53: 27 Time(s)
error (unexpected RCODE REFUSED) resolving 'mx4.ks.pochta.ru/A/IN': 185.79.119.222#53: 30 Time(s)
error (unexpected RCODE REFUSED) resolving 'mx4.ks.pochta.ru/AAAA/IN': 185.79.119.222#53: 33 Time(s)
error (unexpected RCODE REFUSED) resolving 'mx5.ks.pochta.ru/A/IN': 185.79.119.222#53: 24 Time(s)
error (unexpected RCODE REFUSED) resolving 'mx5.ks.pochta.ru/AAAA/IN': 185.79.119.222#53: 30 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns.enegom.com/A/IN': 87.106.36.92#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns1.courriergow.net/AAAA/IN': 184.95.56.18#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns1.courriergow.net/AAAA/IN': 184.95.56.22#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns1.logancheck.net/A/IN': 173.245.58.249#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns1.logancheck.net/A/IN': 173.245.59.190#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns1.logancheck.net/AAAA/IN': 173.245.58.249#53: 62 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns1.logancheck.net/AAAA/IN': 173.245.59.190#53: 61 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns1.luxfo.com/AAAA/IN': 173.245.58.249#53: 42 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns1.luxfo.com/AAAA/IN': 173.245.59.190#53: 42 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns1.meegozu.com/AAAA/IN': 173.245.58.249#53: 26 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns1.meegozu.com/AAAA/IN': 173.245.59.190#53: 26 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns1.netbcp.com/A/IN': 205.173.95.216#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns1.quanhta.com/AAAA/IN': 173.245.58.249#53: 50 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns1.quanhta.com/AAAA/IN': 173.245.59.190#53: 50 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns2.courriergow.net/AAAA/IN': 184.95.56.18#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns2.courriergow.net/AAAA/IN': 184.95.56.22#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns2.logancheck.net/A/IN': 173.245.58.249#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns2.logancheck.net/A/IN': 173.245.59.190#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns2.logancheck.net/AAAA/IN': 173.245.58.249#53: 62 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns2.logancheck.net/AAAA/IN': 173.245.59.190#53: 61 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns2.luxfo.com/AAAA/IN': 173.245.58.249#53: 42 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns2.luxfo.com/AAAA/IN': 173.245.59.190#53: 42 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns2.meegozu.com/AAAA/IN': 173.245.58.249#53: 26 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns2.meegozu.com/AAAA/IN': 173.245.59.190#53: 26 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns2.quanhta.com/AAAA/IN': 173.245.58.249#53: 50 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns2.quanhta.com/AAAA/IN': 173.245.59.190#53: 50 Time(s)
error (unexpected RCODE REFUSED) resolving 'posix.co.za/NS/IN': 160.124.48.1#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'quanhta.com/MX/IN': 173.245.58.249#53: 98 Time(s)
error (unexpected RCODE REFUSED) resolving 'quanhta.com/MX/IN': 173.245.59.190#53: 98 Time(s)
error (unexpected RCODE REFUSED) resolving 'quanhta.com/NS/IN': 173.245.58.249#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'quanhta.com/NS/IN': 173.245.59.190#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'serverel.net/NS/IN': 109.206.177.157#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'smtp.courriergow.net/A/IN': 184.95.56.18#53: 2 Time(s)
error (unexpected RCODE REFUSED) resolving 'smtp.courriergow.net/A/IN': 184.95.56.22#53: 2 Time(s)
error (unexpected RCODE REFUSED) resolving 'smtp.courriergow.net/AAAA/IN': 184.95.56.18#53: 2 Time(s)
error (unexpected RCODE REFUSED) resolving 'smtp.courriergow.net/AAAA/IN': 184.95.56.22#53: 2 Time(s)
error (unexpected RCODE REFUSED) resolving 'utropicmedia.com/MX/IN': 173.225.183.71#53: 1 Time(s)
error (unexpected RCODE SERVFAIL) resolving '120.218.125.64.in-addr.arpa/PTR/IN': 207.126.105.146#53: 1 Time(s)
error (unexpected RCODE SERVFAIL) resolving '121.218.125.64.in-addr.arpa/PTR/IN': 207.126.105.146#53: 1 Time(s)
error (unexpected RCODE SERVFAIL) resolving '122.218.125.64.in-addr.arpa/PTR/IN': 207.126.105.146#53: 1 Time(s)
error (unexpected RCODE SERVFAIL) resolving '123.218.125.64.in-addr.arpa/PTR/IN': 207.126.105.146#53: 1 Time(s)
error (unexpected RCODE SERVFAIL) resolving '145.48.154.195.in-addr.arpa/PTR/IN': 2001:67c:e0::6#53: 1 Time(s)
error (unexpected RCODE SERVFAIL) resolving '147.48.154.195.in-addr.arpa/PTR/IN': 193.0.9.6#53: 1 Time(s)
error (unexpected RCODE SERVFAIL) resolving '6.117.251.162.in-addr.arpa/PTR/IN': 82.196.3.18#53: 1 Time(s)
error (unexpected RCODE SERVFAIL) resolving 'asti.dost.gov.ph/MX/IN': 202.90.128.8#53: 1 Time(s)
error (unexpected RCODE SERVFAIL) resolving 'dns1.psychz.net/A/IN': 192.184.32.204#53: 1 Time(s)
error (unexpected RCODE SERVFAIL) resolving 'dns1.psychz.net/AAAA/IN': 192.184.32.204#53: 1 Time(s)
error (unexpected RCODE SERVFAIL) resolving 'dns2.psychz.net/A/IN': 192.184.32.204#53: 1 Time(s)
error (unexpected RCODE SERVFAIL) resolving 'dns2.psychz.net/AAAA/IN': 192.184.32.204#53: 1 Time(s)
error (unexpected RCODE SERVFAIL) resolving 'giesen.me/MX/IN': 216.235.0.100#53: 5 Time(s)
error (unexpected RCODE SERVFAIL) resolving 'h5.srov.info/A/IN': 2001:41d0:1:4a8d::1#53: 1 Time(s)
error (unexpected RCODE SERVFAIL) resolving 'h5.srov.info/A/IN': 213.251.188.141#53: 1 Time(s)
error (unexpected RCODE SERVFAIL) resolving 'h5.srov.info/AAAA/IN': 2001:41d0:1:4a8d::1#53: 1 Time(s)
error (unexpected RCODE SERVFAIL) resolving 'h5.srov.info/AAAA/IN': 213.251.188.141#53: 1 Time(s)
error (unexpected RCODE SERVFAIL) resolving 'kitana.asti.dost.gov.ph/A/IN': 2001:d18:1::8#53: 1 Time(s)
error (unexpected RCODE SERVFAIL) resolving 'kitana.asti.dost.gov.ph/AAAA/IN': 2001:d18:1::8#53: 1 Time(s)
error (unexpected RCODE SERVFAIL) resolving 'mail.box11.org/AAAA/IN': 94.76.200.250#53: 1 Time(s)
error (unexpected RCODE SERVFAIL) resolving 'mail2.asti.dost.gov.ph/A/IN': 202.90.128.8#53: 1 Time(s)
error (unexpected RCODE SERVFAIL) resolving 'ns1.acloud.pt/A/IN': 94.46.233.22#53: 1 Time(s)
error (unexpected RCODE SERVFAIL) resolving 'ns1.acloud.pt/AAAA/IN': 87.103.115.60#53: 3 Time(s)
error (unexpected RCODE SERVFAIL) resolving 'ns1.acloud.pt/AAAA/IN': 94.46.233.22#53: 4 Time(s)
error (unexpected RCODE SERVFAIL) resolving 'ns2.acloud.pt/A/IN': 87.103.115.60#53: 1 Time(s)
error (unexpected RCODE SERVFAIL) resolving 'ns2.acloud.pt/A/IN': 94.46.233.22#53: 1 Time(s)
error (unexpected RCODE SERVFAIL) resolving 'ns2.acloud.pt/AAAA/IN': 87.103.115.60#53: 3 Time(s)
error (unexpected RCODE SERVFAIL) resolving 'ns2.acloud.pt/AAAA/IN': 94.46.233.22#53: 4 Time(s)
error (unexpected RCODE SERVFAIL) resolving 'smtp.giesen.me/A/IN': 216.235.0.100#53: 8 Time(s)
error (unexpected RCODE SERVFAIL) resolving 'smtp.giesen.me/AAAA/IN': 216.235.0.100#53: 8 Time(s)
error (unexpected RCODE SERVFAIL) resolving 'srov.info/NS/IN': 2001:41d0:1:4a8d::1#53: 1 Time(s)
error (unexpected RCODE SERVFAIL) resolving 'thena.com.de/MX/IN': 85.159.232.241#53: 1 Time(s)
---------------------- Named End -------------------------
--------------------- Postfix Begin ------------------------
52 *Warning: Pre-queue content-filter connection overload
24 Miscellaneous warnings
70.560M Bytes accepted 73,987,507
1.843G Bytes delivered 1,979,142,143
======== ================================================
4289 Accepted 98.67%
58 Rejected 1.33%
-------- ------------------------------------------------
4347 Total 100.00%
======== ================================================
58 Reject unknown user 100.00%
-------- ------------------------------------------------
58 Total Rejects 100.00%
======== ================================================
2809 Connections made
68 Connections lost
2808 Disconnections
4161 Removed from queue
2336 Delivered
60994 Sent via SMTP
4 Forwarded
195 Deferred
2844 Deferrals
19 Bounce (local)
96 Bounce (remote)
24 Expired and returned to sender
50 DSNs undeliverable
2706 Connection failure (outbound)
18 Timeout (inbound)
261 Hostname verification errors
195 Enabled PIX workaround
**Unmatched Entries**
1 Jan 29 18:37:11 linode01 postfix/smtp[26289]: SSL_connect error to mail.moov.de[188.246.8.100]:25: -1
1 Jan 29 18:37:11 linode01 postfix/smtp[26289]: 66713C41A: Cannot start TLS: handshake failure
---------------------- Postfix End -------------------------
--------------------- SSHD Begin ------------------------
Users logging in through sshd:
dcaro:
81.44.244.219 (219.Red-81-44-244.dynamicIP.rima-tde.net): 1 time
jenkins:
89.31.150.215 (alterway01.ovirt.org): 2 times
mirror:
192.87.102.41: 12 times
128.61.111.12 (zaphod.gtlib.gatech.edu): 1 time
130.89.149.129 (vlaai.snt.utwente.nl): 1 time
152.3.102.53 (archive.linux.duke.edu): 1 time
152.19.134.30 (jobbot1.ibiblio.org): 1 time
rsync:
209.132.186.36 (nat-pool-tlv-t.redhat.com): 1 time
Received disconnect:
11: : 12 Time(s)
11: Bye Bye : 354 Time(s)
11: Normal Shutdown, Thank you for playing : 1 Time(s)
11: disconnected by user : 17 Time(s)
3: com.jcraft.jsch.JSchException: Auth fail : 57 Time(s)
SFTP subsystem requests: 2 Time(s)
**Unmatched Entries**
Address 67.228.78.186 maps to emailhosting.com, but this does not map back to the address - POSSIBLE BREAK-IN ATTEMPT! : 11 time(s)
reverse mapping checking getaddrinfo for 208.50.174.61.dial.wz.zj.dynamic.163data.com.cn [61.174.50.208] failed - POSSIBLE BREAK-IN ATTEMPT! : 2 time(s)
reverse mapping checking getaddrinfo for 224.51.174.61.dial.wz.zj.dynamic.163data.com.cn [61.174.51.224] failed - POSSIBLE BREAK-IN ATTEMPT! : 3 time(s)
reverse mapping checking getaddrinfo for 208.51.174.61.dial.wz.zj.dynamic.163data.com.cn [61.174.51.208] failed - POSSIBLE BREAK-IN ATTEMPT! : 2 time(s)
reverse mapping checking getaddrinfo for 147.4.161.222.adsl-pool.jlccptt.net.cn [222.161.4.147] failed - POSSIBLE BREAK-IN ATTEMPT! : 1 time(s)
reverse mapping checking getaddrinfo for 206.51.174.61.dial.wz.zj.dynamic.163data.com.cn [61.174.51.206] failed - POSSIBLE BREAK-IN ATTEMPT! : 3 time(s)
reverse mapping checking getaddrinfo for 146-118-162-69.static.reverse.lstn.net [69.162.118.146] failed - POSSIBLE BREAK-IN ATTEMPT! : 52 time(s)
reverse mapping checking getaddrinfo for 172.212.161.222.adsl-pool.jlccptt.net.cn [222.161.212.172] failed - POSSIBLE BREAK-IN ATTEMPT! : 77 time(s)
---------------------- SSHD End -------------------------
--------------------- Sudo (secure-log) Begin ------------------------
==============================================================================
nrpe => root
------------
/sbin/service - 288 Times.
---------------------- Sudo (secure-log) End -------------------------
--------------------- Disk Space Begin ------------------------
Filesystem Size Used Avail Use% Mounted on
/dev/xvda 97G 81G 16G 84% /
---------------------- Disk Space End -------------------------
###################### Logwatch End #########################
9 years, 10 months
oVirt Infra weekly update :: 2015-01-29
by David Caro
--BwCQnh7xodEAoBMC
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
Content-Transfer-Encoding: quoted-printable
Hi everyone!
This week:
=3D=3D CI
* Will start pushing the new standards
http://etherpad.ovirt.org/p/build-and-test-standards
* Started testing Zuul (local setup, with gerrit and jenkins is working)
* Started testing jeepyb for gerrit management
https://github.com/openstack-infra/jeepyb
* Started automating slave template creation and update:
So far we can create a machine from foreman, install it, update it, stop
it and create a template (no checks are done to see if the template
exists or anything). Patch not sent yet
* Investigating similar 'brother' projects to unite efforts:
https://github.com/simon3z/virt-deploy
https://github.com/simon3z/fabric-scripts
* Investigating a simple url shortener service for ovirt, successfully
installed and deployed yourls in openshift, exploring it
http://yourls.org
=3D=3D Hosting
* Kernel updated on all el6 hosts
* Haveged installed on all the vms to avoid entropy exhaustion
* glibc security upgrade
* Started using fail2ban on some machines to avoid ssh brute-force attacks
* Connected the missing storage servers interfaces, and made sure we have
redundant physical network
I'm investigating how to upgrade as painlessly as possible the hosts to fc2=
0 so
we can use nested. And finishing the 3.4->3.5 upgrade of the others.
Will update when ready
--=20
David Caro
Red Hat S.L.
Continuous Integration Engineer - EMEA ENG Virtualization R&D
Tel.: +420 532 294 605
Email: dcaro(a)redhat.com
Web: www.redhat.com
RHT Global #: 82-62605
--BwCQnh7xodEAoBMC
Content-Type: application/pgp-signature
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1
iQEcBAEBAgAGBQJUylCAAAoJEEBxx+HSYmnDfoEH/3vJLF8CWXGFSi4F2dlGKCqJ
c9RSZ9rY37TGV5eXyktqnZFfEqX/W32OyQ9pJf9fuCxuVzNSj+uj4LNNqwGK2j7t
FEnCxCmilnkCejdFkpgfcLm2nl8DyBzA/kJZqgWF0Cv/zLlZXq873AtW49yzlIhG
zmrFuINvYPpoxw6AwEk9EER41Q+65algT+wfXpnnoNLT9DD0Afc+uDZ4hIWpNg7d
wdY3eat4Ih7Y/clbWla2s1LpnxxGMSrcN2bVB3lrNqMcj9px/hsgLLFQdTp+wI2e
z9ohqEtb51h5ZcCrzd6xoQ1/A+cRfYS4g2hZPt/EG9bNbcwrkEiZ2RVnYXtCou8=
=cZdf
-----END PGP SIGNATURE-----
--BwCQnh7xodEAoBMC--
9 years, 10 months
Logwatch for linode01.ovirt.org (Linux)
by logwatch@lists.ovirt.org
################### Logwatch 7.3.6 (05/19/07) ####################
Processing Initiated: Thu Jan 29 03:29:19 2015
Date Range Processed: yesterday
( 2015-Jan-28 )
Period is day.
Detail Level of Output: 0
Type of Output: unformatted
Logfiles for Host: linode01.ovirt.org
##################################################################
--------------------- httpd Begin ------------------------
Requests with error response codes
400 Bad Request
/: 2 Time(s)
//Net_work.xml: 1 Time(s)
/tmUnblock.cgi: 1 Time(s)
404 Not Found
/**mailman/listinfo/users<http:/lists.ovir ... /listinfo/users: 1 Time(s)
//components/com_jnews/includes/openflashc ... pload_image.php: 1 Time(s)
//dompdf/dompdf.php: 3 Time(s)
//dompdf/dompdf.php?input_file=: 3 Time(s)
//dompdf/dompdf.php?input_file=http://www. ... t/plugins/idr??: 1 Time(s)
//dompdf/donpdf.php: 5 Time(s)
//dompdf/donpdf.php?input_file=: 5 Time(s)
//index.php: 17 Time(s)
//libraries/dompdf/donpdf.php: 4 Time(s)
//libraries/dompdf/donpdf.php?input_file=: 3 Time(s)
//libraries/dompdf/donpdf.php?input_file=h ... s/mods//bt.php?: 1 Time(s)
//wp-admin/admin-ajax.php: 1 Time(s)
//wp-content/themes/ecobiz/timthumb.php?sr ... %2F%2Fmagic.php: 2 Time(s)
//wp-content/themes/ecobiz/timthumb.php?sr ... ro%2F%2Fcpx.php: 2 Time(s)
//xmlrpc.php: 1 Time(s)
/admin.php: 3 Time(s)
/admin/: 3 Time(s)
/admin/login.php: 3 Time(s)
/administrator/components/com_acymailing/i ... ?name=magic.php: 1 Time(s)
/administrator/components/com_acymailing/i ... e=magic.php.pHp: 1 Time(s)
/administrator/components/com_civicrm/civi ... ?name=magic.php: 1 Time(s)
/administrator/components/com_civicrm/civi ... e=magic.php.pHp: 1 Time(s)
/administrator/components/com_jinc/classes ... ?name=magic.php: 1 Time(s)
/administrator/components/com_jinc/classes ... e=magic.php.pHp: 1 Time(s)
/administrator/components/com_jnews/includ ... ?name=magic.php: 1 Time(s)
/administrator/components/com_jnews/includ ... e=magic.php.pHp: 1 Time(s)
/administrator/components/com_jnewsletter/ ... ?name=magic.php: 1 Time(s)
/administrator/components/com_jnewsletter/ ... e=magic.php.pHp: 1 Time(s)
/administrator/components/com_maian15/char ... ?name=magic.php: 1 Time(s)
/administrator/components/com_maian15/char ... e=magic.php.pHp: 1 Time(s)
/administrator/index.php: 3 Time(s)
/agger.php: 1 Time(s)
/apple-touch-icon.png: 2 Time(s)
/bitrix/admin/index.php?lang=en: 3 Time(s)
/blog/wp-admin/: 10 Time(s)
/browserconfig.xml: 1 Time(s)
/category/news/feed: 1 Time(s)
/category/news/feed/: 31 Time(s)
/components/com_acymailing/inc/openflash/p ... ?name=magic.php: 1 Time(s)
/components/com_acymailing/inc/openflash/p ... e=magic.php.pHp: 1 Time(s)
/components/com_civicrm/civicrm/packages/O ... ?name=magic.php: 1 Time(s)
/components/com_civicrm/civicrm/packages/O ... e=magic.php.pHp: 1 Time(s)
/components/com_jinc/classes/graphics/php- ... ?name=magic.php: 1 Time(s)
/components/com_jinc/classes/graphics/php- ... e=magic.php.pHp: 1 Time(s)
/components/com_jnews/includes/openflashch ... ?name=magic.php: 1 Time(s)
/components/com_jnews/includes/openflashch ... e=magic.php.pHp: 1 Time(s)
/components/com_jnewsletter/includes/openf ... ?name=magic.php: 1 Time(s)
/components/com_jnewsletter/includes/openf ... e=magic.php.pHp: 1 Time(s)
/components/com_maian15/charts/php-ofc-lib ... ?name=magic.php: 1 Time(s)
/components/com_maian15/charts/php-ofc-lib ... e=magic.php.pHp: 1 Time(s)
/favicon.ico: 780 Time(s)
/index.php?m=account_register: 2 Time(s)
/mailman/users: 1 Time(s)
/meetings/ovirt/2011/ovirt.2011-15-08-14.00.html: 1 Time(s)
/meetings/ovirt/2011/ovirt.2011-15-08-14.00.log.html: 1 Time(s)
/nyet.gif: 17 Time(s)
/old/wp-admin/: 12 Time(s)
/phpThumb.php?src=file.jpg&fltr[]=blur%7C9 ... phpThumbDebug=9: 2 Time(s)
/phpThumb/agger.php: 1 Time(s)
/phpThumb/phpThumb.php?src=file.jpg&fltr[] ... phpThumbDebug=9: 2 Time(s)
/phpthumb/agger.php: 1 Time(s)
/phpthumb/phpThumb.php?src=file.jpg&fltr[] ... phpThumbDebug=9: 2 Time(s)
/pipermail: 1 Time(s)
/pipermail/devel/2014-March/006713.html/trackback/: 4 Time(s)
/pipermail/engine-patches/2011-November/000284.html: 1 Time(s)
/pipermail/engine-patches/2012-April/012187.html: 1 Time(s)
/pipermail/engine-patches/2012-April/014035.html: 1 Time(s)
/pipermail/engine-patches/2012-August/030470.html: 1 Time(s)
/pipermail/engine-patches/2012-December/044904.html: 1 Time(s)
/pipermail/engine-patches/2012-December/045429.html: 1 Time(s)
/pipermail/engine-patches/2012-February/005820.html: 1 Time(s)
/pipermail/engine-patches/2012-March/011799.html: 1 Time(s)
/pipermail/engine-patches/2013-April/066200.html: 4 Time(s)
/pipermail/engine-patches/2013-August/097114.html: 1 Time(s)
/pipermail/engine-patches/2013-December/130951.html: 1 Time(s)
/pipermail/engine-patches/2013-December/137725.html: 1 Time(s)
/pipermail/engine-patches/2013-February/057883.html: 1 Time(s)
/pipermail/engine-patches/2013-January/053110.html: 1 Time(s)
/pipermail/engine-patches/2013-June/079927.html: 2 Time(s)
/pipermail/engine-patches/2013-March/060050.html: 1 Time(s)
/pipermail/engine-patches/2013-November/subject.html: 4 Time(s)
/pipermail/engine-patches/2013-October/114587.html: 2 Time(s)
/pipermail/engine-patches/2014-April/175630.html: 1 Time(s)
/pipermail/engine-patches/2014-January/140663.html: 1 Time(s)
/pipermail/engine-patches/2014-January/142233.html: 1 Time(s)
/pipermail/engine-patches/2014-January/148477.html: 2 Time(s)
/pipermail/engine-patches/2014-March/164232.html: 1 Time(s)
/pipermail/engine-patches/2014-March/167432.html: 1 Time(s)
/pipermail/engine-patches/2014-March/subject.html: 4 Time(s)
/pipermail/infra//dompdf/dompdf.php?input_ ... t/plugins/idr??: 1 Time(s)
/pipermail/infra//libraries/dompdf/donpdf. ... s/mods//bt.php?: 1 Time(s)
/pipermail/infra//libraries/dompdf/donpdf.php: 4 Time(s)
/pipermail/infra//libraries/dompdf/donpdf.php?input_file=: 3 Time(s)
/pipermail/infra/2012-December/administrat ... ?name=magic.php: 6 Time(s)
/pipermail/infra/2012-December/administrat ... e=magic.php.pHp: 6 Time(s)
/pipermail/infra/2012-December/components/ ... ?name=magic.php: 6 Time(s)
/pipermail/infra/2012-December/components/ ... e=magic.php.pHp: 6 Time(s)
/pipermail/infra/2012-December/tiki-register.php: 1 Time(s)
/pipermail/infra/2012-November/register.php?mlvl=-1: 2 Time(s)
/pipermail/infra/2012-November/tiki-register.php: 1 Time(s)
/pipermail/infra/2012-august/000928.html: 12 Time(s)
/pipermail/infra/2012-december/001585.html: 1 Time(s)
/pipermail/infra/2012-december/001611.html: 1 Time(s)
/pipermail/infra/2013-February/002029.html ... re/timthumb.php: 1 Time(s)
/pipermail/infra/2013-February/wp-content/ ... om%2Fsimple.php: 1 Time(s)
/pipermail/infra/2013-February/wp-content/ ... re/timthumb.php: 1 Time(s)
/pipermail/infra/2013-July//xmlrpc.php: 1 Time(s)
/pipermail/infra/2013-July/003624.html& ... FQA//xmlrpc.php: 1 Time(s)
/pipermail/infra/2013-July/003624.html& ... Uqg//xmlrpc.php: 1 Time(s)
/pipermail/infra/2013-July/003624.html& ... ePw//xmlrpc.php: 1 Time(s)
/pipermail/infra/2013-July/003624.html& ... kvg//xmlrpc.php: 1 Time(s)
/pipermail/infra/2013-July/tiki-register.php: 3 Time(s)
/pipermail/infra/2013-June/wp-content/them ... .com/indeks.php: 1 Time(s)
/pipermail/infra/2013-March//libraries/dom ... php?input_file=: 1 Time(s)
/pipermail/infra/2013-March//libraries/dompdf/donpdf.php: 1 Time(s)
/pipermail/infra/2013-March/002267.html&am ... re/timthumb.php: 1 Time(s)
/pipermail/infra/2013-March/wp-content/the ... om%2Fsimple.php: 2 Time(s)
/pipermail/infra/2013-March/wp-content/the ... re/timthumb.php: 1 Time(s)
/pipermail/infra/2013-March/wp-content/the ... ris.gr%2Fxp.php: 1 Time(s)
/pipermail/infra/2013-March/wp-content/the ... y.com%2Fbad.php: 4 Time(s)
/pipermail/infra/2013-May/wp-content/theme ... y.com%2Fbad.php: 1 Time(s)
/pipermail/infra/2013-September//component ... pload_image.php: 1 Time(s)
/pipermail/infra/2013-September/003964.htm ... pload_image.php: 1 Time(s)
/pipermail/infra/2013-September/tiki-register.php: 2 Time(s)
/pipermail/infra/2014-April//libraries/dom ... php?input_file=: 2 Time(s)
/pipermail/infra/2014-April//libraries/dom ... s/mods//bt.php?: 1 Time(s)
/pipermail/infra/2014-April//libraries/dompdf/donpdf.php: 3 Time(s)
/pipermail/infra/2014-April/006086.html&am ... AO4hA/agger.php: 1 Time(s)
/pipermail/infra/2014-April/006086.html&am ... Thumb/agger.php: 2 Time(s)
/pipermail/infra/2014-April/006086.html&am ... oYkDA/agger.php: 1 Time(s)
/pipermail/infra/2014-April/006086.html&am ... phpThumbDebug=9: 12 Time(s)
/pipermail/infra/2014-April/006086.html&am ... thumb/agger.php: 2 Time(s)
/pipermail/infra/2014-April/agger.php: 1 Time(s)
/pipermail/infra/2014-April/phpThumb.php?s ... phpThumbDebug=9: 2 Time(s)
/pipermail/infra/2014-April/phpThumb/agger.php: 1 Time(s)
/pipermail/infra/2014-April/phpThumb/phpTh ... phpThumbDebug=9: 2 Time(s)
/pipermail/infra/2014-April/phpthumb/agger.php: 1 Time(s)
/pipermail/infra/2014-April/phpthumb/phpTh ... phpThumbDebug=9: 2 Time(s)
/pipermail/infra/2014-April/tiki-register.php: 1 Time(s)
/pipermail/infra/2014-February//wp-content ... %2F%2Fmagic.php: 1 Time(s)
/pipermail/infra/2014-February//wp-content ... ro%2F%2Fcpx.php: 1 Time(s)
/pipermail/infra/2014-February/wp-content/ ... %2F%2Fmagic.php: 1 Time(s)
/pipermail/infra/2014-February/wp-content/ ... ro%2F%2Fcpx.php: 1 Time(s)
/pipermail/infra/2014-January//wp-content/ ... %2F%2Fmagic.php: 1 Time(s)
/pipermail/infra/2014-January//wp-content/ ... ro%2F%2Fcpx.php: 1 Time(s)
/pipermail/infra/2014-May/006220.html/trackback/: 1 Time(s)
/pipermail/infra/2014-November/tiki-register.php: 2 Time(s)
/pipermail/kimchi-devel/2014-July/index.ph ... okies]=on&hl=80: 1 Time(s)
/pipermail/kimchi-devel/2014-May/005531.html/trackback/: 1 Time(s)
/pipermail/node-devel/2012-april/000216.html: 1 Time(s)
/pipermail/users/2012-October/009731.html/trackback/: 4 Time(s)
/pipermail/users/2013-September/016499.html/trackback/: 1 Time(s)
/pipermail/users/2014-April/023284.html/trackback/: 1 Time(s)
/pipermail/users/2014-April/023315.html/trackback/: 1 Time(s)
/pipermail/users/2014-February/021586.html/trackback/: 1 Time(s)
/pipermail/users/2014-June/024840.html/trackback/: 1 Time(s)
/pipermail/users/2014-June/024993.html/trackback/: 1 Time(s)
/pipermail/users/2014-October/028282.html/trackback/: 2 Time(s)
/pipermail/users/2014-november28884.html: 2 Time(s)
/pipermail/users/2014-october28348.html: 3 Time(s)
/pipermail/users/2015-january/030657.html: 1 Time(s)
/plain/pub/ovirt-3.5-pre/rpm/el7Server/ppc64/: 1 Time(s)
/plain/pub/ovirt-3.5-pre/rpm/fc19/noarch/o ... fc19.noarch.rpm: 2 Time(s)
/plain/pub/ovirt-3.5-pre/rpm/fc19/repodata/repomd.xml: 2 Time(s)
/plain/pub/ovirt-master-snapshot-static/rp ... -primary.xml.gz: 1 Time(s)
/plain/pub/ovirt-master-snapshot/rpm/fc19/ ... ilelists.xml.gz: 2 Time(s)
/pub.yum-repo/ovirt-release35.rpm: 1 Time(s)
/pub/3.5/: 1 Time(s)
/pub/ovirt-3.3/rpm/el7/repodata/repomd.xml: 3 Time(s)
/pub/ovirt-3.3/rpm/fc21/repodata/repomd.xml: 7 Time(s)
/pub/ovirt-3.4-snapshot-static/rpm/fc20/repodata/repomd.xml: 25 Time(s)
/pub/ovirt-3.4-snapshot/rpm/$distro: 1 Time(s)
/pub/ovirt-3.4-snapshot/rpm/fc20/repodata/repomd.xml: 25 Time(s)
/pub/ovirt-3.4/iso/ovirt-node-iso-3.4-20140423.0.el6.iso: 3 Time(s)
/pub/ovirt-3.4/rpm/el6.6/repodata/repomd.xml: 6 Time(s)
/pub/ovirt-3.4/rpm/el6//.treeinfo: 9 Time(s)
/pub/ovirt-3.4/rpm/el6//treeinfo: 9 Time(s)
/pub/ovirt-3.4/rpm/el6/repodata/2e38bad336 ... mary.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.4/rpm/el6/repodata/4cd55fcf5f ... ists.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.4/rpm/el6/repodata/d016b3e20c ... mary.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.4/rpm/el6/repodata/e54dde6e89 ... ists.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.4/rpm/fc20/noarch/ovirt-engin ... 4-1.fc20.noarch: 1 Time(s)
/pub/ovirt-3.5-pre/exe/ovirt-guest-tools/: 1 Time(s)
/pub/ovirt-3.5-pre/iso/ovirt-guest-tools/: 1 Time(s)
/pub/ovirt-3.5-pre/iso/ovirt-node-iso-3.5. ... 0140630.el6.iso: 3 Time(s)
/pub/ovirt-3.5-pre/rpm/el6/SRPMS/ovirt-eng ... 7c7.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6/SRPMS/ovirt-eng ... 912.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6/SRPMS/ovirt-hos ... 297.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6/SRPMS/ovirt-hos ... dfc.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6/SRPMS/ovirt-log ... d0c.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6/SRPMS/ovirt-rel ... .master.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6/i686/ovirt-host ... -1.el6.i686.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6/ppc64/?C=M;O=D: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6/ppc64/?C=N;O=D: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6/ppc64/ovirt-hos ... 1.el6.ppc64.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6/ppc64/vdsm-4.16.4-0.el6.ppc64.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6/ppc64/vdsm-debu ... 0.el6.ppc64.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6/x86_64/ovirt-ho ... .el6.x86_64.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6/x86_64/ovirt-no ... .el6.x86_64.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6/x86_64/qemu-img ... 5.14.x86_64.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6/x86_64/qemu-kvm ... 5.10.x86_64.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6/x86_64/qemu-kvm ... 5.14.x86_64.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6/x86_64/vdsm-4.1 ... .el6.x86_64.rpm: 3 Time(s)
/pub/ovirt-3.5-pre/rpm/el6/x86_64/vdsm-deb ... .el6.x86_64.rpm: 2 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Server/: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Server/?C=M;O=D: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Server/SRPMS/ovi ... 080.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Server/ppc64/?C=S;O=A: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Server/ppc64/vds ... 0.el6.ppc64.rpm: 2 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Server/repodata/: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Server/repodata/ ... 01-other.xml.gz: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Server/repodata/ ... ists.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Server/repodata/?C=S;O=D: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Server/repodata/repomd.xml: 79 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Server/x86_64/gd ... .el6.x86_64.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Server/x86_64/ov ... .el6.x86_64.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Server/x86_64/qe ... 5.14.x86_64.rpm: 3 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Server/x86_64/vd ... .el6.x86_64.rpm: 6 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Workstation/SRPM ... 1-1.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Workstation/SRPM ... 614.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Workstation/SRPM ... 6da.el6.src.rpm: 2 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Workstation/SRPM ... f77.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Workstation/SRPM ... l6_5.10.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Workstation/ppc6 ... 0.el6.ppc64.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Workstation/ppc6 ... f.el6.ppc64.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Workstation/ppc64/: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Workstation/repo ... 01-other.xml.gz: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Workstation/repo ... ilelists.xml.gz: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Workstation/repodata/?C=S;O=D: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Workstation/repodata/repomd.xml: 6 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Workstation/x86_ ... .el6.x86_64.rpm: 9 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Workstation/x86_ ... 5.10.x86_64.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el6Workstation/x86_ ... 5.14.x86_64.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7/SRPMS/ioprocess ... 0-1.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7/SRPMS/ovirt-eng ... b9c.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7/SRPMS/ovirt-hos ... 1-1.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7/SRPMS/ovirt-hos ... 5f8.el7.src.rpm: 3 Time(s)
/pub/ovirt-3.5-pre/rpm/el7/SRPMS/ovirt-hos ... b7e.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7/SRPMS/ovirt-hos ... f86.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7/SRPMS/ovirt-log ... 7b4.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7/SRPMS/ovirt-rel ... 0.5.rc2.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7/SRPMS/qemu-kvm- ... 7_0_0.2.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7/SRPMS/qemu-kvm- ... el7_0.2.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7/SRPMS/vdsm-4.16 ... a75.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7/SRPMS/vdsm-4.16.5-0.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7/SRPMS/vdsm-json ... 674.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7/SRPMS/vdsm-json ... c39.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7/noarch/otopi-1. ... .el7.noarch.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7/noarch/otopi-ja ... .el7.noarch.rpm: 2 Time(s)
/pub/ovirt-3.5-pre/rpm/el7/noarch/vdsm-cli ... .el7.noarch.rpm: 2 Time(s)
/pub/ovirt-3.5-pre/rpm/el7/noarch/vdsm-hoo ... .el7.noarch.rpm: 4 Time(s)
/pub/ovirt-3.5-pre/rpm/el7/noarch/vdsm-pyt ... .el7.noarch.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7/ppc64/: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7/ppc64/vdsm-4.16 ... 3.el7.ppc64.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7/ppc64/vdsm-debu ... 0.el7.ppc64.rpm: 2 Time(s)
/pub/ovirt-3.5-pre/rpm/el7/repodata/860f59 ... ther.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7/x86_64/ovirt-ho ... .el7.x86_64.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7/x86_64/qemu-kvm ... _0.2.x86_64.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7/x86_64/vdsm-4.1 ... .el7.x86_64.rpm: 2 Time(s)
/pub/ovirt-3.5-pre/rpm/el7/x86_64/vdsm-pyt ... .el7.x86_64.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Server/SRPMS/oto ... 0-1.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Server/SRPMS/ovi ... 0.5.rc2.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Server/SRPMS/ovi ... a43.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Server/SRPMS/ovi ... b24.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Server/SRPMS/ovi ... b7e.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Server/SRPMS/ovi ... c53.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Server/SRPMS/vds ... 5-0.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Server/SRPMS/vds ... 674.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Server/SRPMS/vds ... c39.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Server/ppc64/: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Server/ppc64/vds ... 3.el7.ppc64.rpm: 2 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Server/x86_64/ke ... .el7.x86_64.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Server/x86_64/qe ... _0.2.x86_64.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Server/x86_64/vd ... .el7.x86_64.rpm: 2 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Workstation/?C=D;O=D: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Workstation/SRPM ... 0-1.el7.src.rpm: 2 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Workstation/SRPM ... 1-1.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Workstation/SRPM ... 674.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Workstation/SRPM ... 6da.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Workstation/SRPM ... 912.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Workstation/SRPM ... 96f.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Workstation/SRPM ... a75.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Workstation/noar ... .el7.noarch.rpm: 3 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Workstation/ppc6 ... 0.el7.ppc64.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Workstation/ppc6 ... 3.el7.ppc64.rpm: 2 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Workstation/ppc64/?C=M;O=D: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Workstation/ppc64/?C=S;O=D: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Workstation/repo ... -primary.xml.gz: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Workstation/repo ... 89-other.xml.gz: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Workstation/repo ... mary.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Workstation/repodata/: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Workstation/repodata/repomd.xml: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Workstation/x86_ ... .el7.x86_64.rpm: 6 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Workstation/x86_ ... _0.2.x86_64.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/el7Workstation/x86_64/?C=M;O=A: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc$releasever/: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/: 2 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/?C=D;O=D: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/?C=M;O=A: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/SRPMS/: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/SRPMS/otopi-1. ... 5a.fc19.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/SRPMS/ovirt-en ... .3.fc19.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/SRPMS/ovirt-en ... 01.fc19.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/SRPMS/ovirt-en ... 15.fc19.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/SRPMS/ovirt-en ... 83.fc19.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/SRPMS/ovirt-en ... bc.fc19.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/SRPMS/ovirt-en ... f5.fc19.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/SRPMS/ovirt-en ... fd.fc19.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/SRPMS/ovirt-ho ... 35.fc19.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/SRPMS/ovirt-ho ... 43.fc19.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/SRPMS/ovirt-ho ... 58.fc19.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/SRPMS/ovirt-ho ... 97.fc19.src.rpm: 3 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/SRPMS/ovirt-ho ... a6.fc19.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/SRPMS/ovirt-ho ... a9.fc19.src.rpm: 3 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/SRPMS/ovirt-ho ... f8.fc19.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/SRPMS/ovirt-no ... -1.fc19.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/SRPMS/vdsm-4.1 ... 14.fc19.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/SRPMS/vdsm-4.1 ... c1.fc19.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/SRPMS/vdsm-jso ... 15.fc19.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/SRPMS/vdsm-jso ... er.fc19.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/noarch/otopi-1 ... fc19.noarch.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/noarch/otopi-d ... fc19.noarch.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/repodata/: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/repodata/?C=M;O=A: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/repodata/repomd.xml: 9 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/x86_64/kexec-t ... fc19.x86_64.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/x86_64/vdsm-4. ... fc19.x86_64.rpm: 4 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/x86_64/vdsm-de ... fc19.x86_64.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc19/x86_64/vdsm-py ... fc19.x86_64.rpm: 4 Time(s)
/pub/ovirt-3.5-pre/rpm/fc20/SRPMS/ovirt-en ... -1.fc20.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc20/SRPMS/ovirt-en ... 15.fc20.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc20/SRPMS/ovirt-en ... 66.fc20.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc20/SRPMS/ovirt-en ... 87.fc20.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc20/SRPMS/ovirt-en ... a0.fc20.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc20/SRPMS/ovirt-en ... d4.fc20.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc20/SRPMS/ovirt-ho ... -1.fc20.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc20/SRPMS/ovirt-ho ... 7e.fc20.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc20/SRPMS/ovirt-im ... 70.fc20.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc20/SRPMS/sos-3.1- ... 0.ovirt.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc20/SRPMS/vdsm-4.1 ... 49.fc20.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc20/SRPMS/vdsm-4.1 ... 86.fc20.src.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc20/x86_64/ovirt-h ... fc20.x86_64.rpm: 4 Time(s)
/pub/ovirt-3.5-pre/rpm/fc20/x86_64/vdsm-4. ... fc20.x86_64.rpm: 4 Time(s)
/pub/ovirt-3.5-pre/rpm/fc20/x86_64/vdsm-de ... fc20.x86_64.rpm: 2 Time(s)
/pub/ovirt-3.5-pre/rpm/fc20/x86_64/vdsm-py ... fc20.x86_64.rpm: 1 Time(s)
/pub/ovirt-3.5-pre/rpm/fc6/repodata/repomd.xml: 1 Time(s)
/pub/ovirt-3.5-pre/src/httpcomponents-core ... -src.tar.gz.sig: 1 Time(s)
/pub/ovirt-3.5-pre/src/ioprocess/: 1 Time(s)
/pub/ovirt-3.5-pre/src/ioprocess/ioprocess-0.9.0.tar.gz.sig: 2 Time(s)
/pub/ovirt-3.5-pre/src/kexec-tools/kexec-t ... 0131224.tgz.sig: 1 Time(s)
/pub/ovirt-3.5-pre/src/mom/mom-0.4.0_master.tar.gz: 1 Time(s)
/pub/ovirt-3.5-pre/src/otopi/otopi-1.3.0_master.tar.gz: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-engine-cli/ov ... -3.5.0.2.tar.gz: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-engine-cli/ov ... -3.5.0.5.tar.gz: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-engine-cli/ov ... .0.0.tar.gz.sig: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-engine-cli/ov ... .0.4.tar.gz.sig: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-engine-dwh/ov ... 0_master.tar.gz: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-engine-dwh/ov ... 0_rc.tar.gz.sig: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-engine-extens ... ster.tar.gz.sig: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-engine-report ... _rc4.tar.gz.sig: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-engine-report ... ts-3.5.0.tar.gz: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-engine-sdk-ja ... -3.5.0.5.tar.gz: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-engine-sdk-ja ... .0.2.tar.gz.sig: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-host-deploy-o ... ster.tar.gz.sig: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-host-deploy/o ... 0_master.tar.gz: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-host-deploy/o ... ster.tar.gz.sig: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-hosted-engine ... 05072228.tar.gz: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-hosted-engine ... 1556.tar.gz.sig: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-hosted-engine ... 2035.tar.gz.sig: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-hosted-engine ... 2128.tar.gz.sig: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-hosted-engine ... 2239.tar.gz.sig: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-hosted-engine ... 2316.tar.gz.sig: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-hosted-engine ... 2326.tar.gz.sig: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-hosted-engine ... 24143059.tar.gz: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-hosted-engine ... ha-1.2.1.tar.gz: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-hosted-engine ... ster.tar.gz.sig: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-image-uploade ... .5.0.tar.gz.sig: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-image-uploade ... 0_master.tar.gz: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-node-plugin-v ... .1.2.tar.gz.sig: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-node-plugin-v ... ster.tar.gz.sig: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-node-plugin-vdsm/?C=S;O=D: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-node/: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-node/?C=S;O=A: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-optimizer/ovi ... -0.1.tar.gz.sig: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-optimizer/ovi ... -0.2.tar.gz.sig: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-release34/: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-release34/?C=D;O=D: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-release34/?C=M;O=A: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-release35/ovi ... -001_rc2.tar.gz: 1 Time(s)
/pub/ovirt-3.5-pre/src/ovirt-release35/ovi ... 01_beta1.tar.gz: 1 Time(s)
/pub/ovirt-3.5-pre/src/qemu-kvm-rhev/: 1 Time(s)
/pub/ovirt-3.5-pre/src/vdsm-jsonrpc-java/v ... 3_master.tar.gz: 1 Time(s)
/pub/ovirt-3.5-pre/src/vdsm-jsonrpc-java/v ... 8_master.tar.gz: 1 Time(s)
/pub/ovirt-3.5-pre/src/vdsm-jsonrpc-java/v ... ster.tar.gz.sig: 1 Time(s)
/pub/ovirt-3.5-pre/src/vdsm-jsonrpc-java/v ... va-1.0.8.tar.gz: 1 Time(s)
/pub/ovirt-3.5-pre/src/vdsm/vdsm-4.14.1.tar.gz: 1 Time(s)
/pub/ovirt-3.5-pre/src/vdsm/vdsm-4.14.1.tar.gz.sig: 1 Time(s)
/pub/ovirt-3.5-pre/src/vdsm/vdsm-4.16.0.tar.gz.sig: 1 Time(s)
/pub/ovirt-3.5-pre/src/vdsm/vdsm-4.16.4.tar.gz: 1 Time(s)
/pub/ovirt-3.5-pre/src/vdsm/vdsm-4.16.5.tar.gz: 1 Time(s)
/pub/ovirt-3.5-snapshot-static/rpm/el6Work ... ists.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5-snapshot-static/rpm/el6Work ... mary.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5-snapshot-static/rpm/el7/SRP ... 5-1.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot-static/rpm/el7/rep ... -primary.xml.gz: 3 Time(s)
/pub/ovirt-3.5-snapshot-static/rpm/el7/rep ... 9a-other.xml.gz: 1 Time(s)
/pub/ovirt-3.5-snapshot-static/rpm/el7Serv ... .el7.noarch.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot-static/rpm/el7Serv ... 5-1.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot-static/rpm/el7Serv ... ilelists.xml.gz: 1 Time(s)
/pub/ovirt-3.5-snapshot-static/rpm/el7Serv ... ther.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5-snapshot-static/rpm/el7Work ... ists.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6.6/SRPMS/ot ... 28c.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6.6/SRPMS/ov ... 173.el6.src.rpm: 4 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6.6/SRPMS/ov ... bad.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6.6/noarch/o ... .el6.noarch.rpm: 5 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6.6/noarch/o ... el6.noarch.rpm/: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6.6/noarch/v ... .el6.noarch.rpm: 18 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6.6/repodata ... -primary.xml.gz: 2 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6.6/repodata ... 76-other.xml.gz: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6.6/repodata ... ilelists.xml.gz: 2 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6.6/repodata ... ists.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6.6/repodata ... mary.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6.6/repodata ... ther.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6.6/x86_64/v ... .el6.x86_64.rpm: 5 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6/SRPMS/ovir ... 32b.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6/SRPMS/ovir ... c78.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6/SRPMS/ovir ... d59.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6/SRPMS/ovir ... de2.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6/noarch/ovi ... .el6.noarch.rpm: 2 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6/noarch/vds ... .el6.noarch.rpm: 2 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6/noarch/vdsm-: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6/repodata/1 ... -primary.xml.gz: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6/repodata/2 ... 76-other.xml.gz: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6/repodata/4 ... ists.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6/repodata/8 ... ists.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6/repodata/9 ... mary.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6/repodata/c ... ilelists.xml.gz: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6/repodata/d ... ilelists.xml.gz: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6/repodata/f ... ther.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6/x86_64/vds ... .el6.x86_64.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6Server/SRPM ... 393.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6Server/SRPM ... 5ac.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6Server/SRPM ... 76c.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6Server/SRPM ... 78a.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6Server/SRPM ... d3a.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6Server/SRPM ... f70.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6Server/noar ... .el6.noarch.rpm: 2 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6Server/repo ... -primary.xml.gz: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6Server/repo ... f8-other.xml.gz: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6Server/repo ... ilelists.xml.gz: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6Server/repo ... ists.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6Server/repo ... mary.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6Server/repo ... ther.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6Server/x86_ ... .el6.x86_64.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6Workstation ... -primary.xml.gz: 2 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6Workstation ... .el6.noarch.rpm: 56 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6Workstation ... .el6.x86_64.rpm: 3 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6Workstation ... 5e-other.xml.gz: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6Workstation ... 76-other.xml.gz: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6Workstation ... 76c.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6Workstation ... d59.el6.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6Workstation ... ilelists.xml.gz: 5 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6Workstation ... ists.sqlite.bz2: 3 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6Workstation ... mary.sqlite.bz2: 3 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el6Workstation ... ther.sqlite.bz2: 2 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7/SRPMS/ovir ... .centos.src.rpm: 2 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7/SRPMS/ovir ... cd6.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7/SRPMS/vdsm ... 4-1.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7/noarch/oto ... ntos.noarch.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7/noarch/ovi ... .el7.noarch.rpm: 3 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7/noarch/ovi ... ntos.noarch.rpm: 3 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7/noarch/vds ... .el7.noarch.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7/repodata/5 ... -primary.xml.gz: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7/repodata/6 ... ther.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7/repodata/7 ... ilelists.xml.gz: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7/repodata/7 ... ists.sqlite.bz2: 2 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7/repodata/8 ... 34-other.xml.gz: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7/repodata/c ... ther.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7/repodata/e ... ilelists.xml.gz: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7/repodata/e ... mary.sqlite.bz2: 3 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7Server/SRPM ... .centos.src.rpm: 2 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7Server/SRPM ... 033.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7Server/SRPM ... 205.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7Server/SRPM ... 927.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7Server/SRPM ... d59.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7Server/noar ... .el7.noarch.rpm: 19 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7Server/noar ... ntos.noarch.rpm: 23 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7Server/repo ... -primary.xml.gz: 2 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7Server/repo ... 34-other.xml.gz: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7Server/repo ... ilelists.xml.gz: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7Server/repo ... ists.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7Server/repo ... mary.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7Server/repo ... ther.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7Server/x86_ ... .el7.x86_64.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7Workstation ... -primary.xml.gz: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7Workstation ... .centos.src.rpm: 2 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7Workstation ... .el7.noarch.rpm: 8 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7Workstation ... de2.el7.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7Workstation ... ists.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/el7Workstation ... ntos.noarch.rpm: 5 Time(s)
/pub/ovirt-3.5-snapshot/rpm/fc19/SRPMS/iop ... -1.fc19.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/fc19/SRPMS/ovi ... 16.fc19.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/fc19/SRPMS/ovi ... 57.fc19.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/fc19/SRPMS/ovi ... 6e.fc19.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/fc19/SRPMS/ovi ... e9.fc19.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/fc19/SRPMS/vds ... 29.fc19.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/fc19/repodata/ ... -primary.xml.gz: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/fc19/repodata/ ... mary.sqlite.bz2: 2 Time(s)
/pub/ovirt-3.5-snapshot/rpm/fc19/repodata/ ... ther.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/fc20/noarch/ov ... fc20.noarch.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/fc20/noarch/vd ... fc20.noarch.rpm: 2 Time(s)
/pub/ovirt-3.5-snapshot/rpm/fc20/repodata/ ... -primary.xml.gz: 2 Time(s)
/pub/ovirt-3.5-snapshot/rpm/fc20/repodata/ ... 7f-other.xml.gz: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/fc20/repodata/ ... f4-other.xml.gz: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/fc20/repodata/ ... ilelists.xml.gz: 2 Time(s)
/pub/ovirt-3.5-snapshot/rpm/fc20/repodata/ ... ists.sqlite.bz2: 2 Time(s)
/pub/ovirt-3.5-snapshot/rpm/fc20/repodata/ ... mary.sqlite.bz2: 2 Time(s)
/pub/ovirt-3.5-snapshot/rpm/fc20/repodata/ ... ther.sqlite.bz2: 2 Time(s)
/pub/ovirt-3.5-snapshot/rpm/fc20/x86_64/vd ... fc20.x86_64.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/fc21/SRPMS/ovi ... 12.fc21.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/fc21/SRPMS/ovi ... 59.fc21.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/fc21/SRPMS/vds ... 78.fc21.src.rpm: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/fc21/noarch/ov ... fc21.noarch.rpm: 2 Time(s)
/pub/ovirt-3.5-snapshot/rpm/fc21/repodata/ ... -primary.xml.gz: 3 Time(s)
/pub/ovirt-3.5-snapshot/rpm/fc21/repodata/ ... 6f-other.xml.gz: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/fc21/repodata/ ... ilelists.xml.gz: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/fc21/repodata/ ... ists.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5-snapshot/rpm/fc21/repodata/ ... mary.sqlite.bz2: 2 Time(s)
/pub/ovirt-3.5-snapshot/rpm/fc21/repodata/ ... ther.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5-snapshot/src/ovirt-engine-a ... 20150106.tar.gz: 1 Time(s)
/pub/ovirt-3.5-snapshot/src/ovirt-engine-a ... 20150109.tar.gz: 1 Time(s)
/pub/ovirt-3.5-snapshot/src/ovirt-schedule ... ge0e6875.tar.gz: 1 Time(s)
/pub/ovirt-3.5/rpm/el6.6/repodata/ffcbf581 ... ilelists.xml.gz: 1 Time(s)
/pub/ovirt-3.5/rpm/el6.6/x86_64/repodata/repomd.xml: 1 Time(s)
/pub/ovirt-3.5/rpm/el6/.treeinfo: 2 Time(s)
/pub/ovirt-3.5/rpm/el6//jasperreports-serv ... .el6.noarch.rpm: 3 Time(s)
/pub/ovirt-3.5/rpm/el6/repodata/8aafee4a19 ... ists.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5/rpm/el6/repodata/bcce20bcdd ... ists.sqlite.bz2: 2 Time(s)
/pub/ovirt-3.5/rpm/el6/repodata/ce02787a5c ... ists.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5/rpm/el6/repodata/ffcbf581cd ... ilelists.xml.gz: 1 Time(s)
/pub/ovirt-3.5/rpm/el6/treeinfo: 2 Time(s)
/pub/ovirt-3.5/rpm/el7/.treeinfo: 2 Time(s)
/pub/ovirt-3.5/rpm/el7/repodata/4018c4bd41 ... ists.sqlite.bz2: 9 Time(s)
/pub/ovirt-3.5/rpm/el7/repodata/4f7ce0d3ae ... ther.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5/rpm/el7/repodata/a40c3507b1 ... -primary.xml.gz: 1 Time(s)
/pub/ovirt-3.5/rpm/el7/repodata/ec5c0077a9 ... ther.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5/rpm/el7/treeinfo: 2 Time(s)
/pub/ovirt-3.5/rpm/el7Workstation/repodata ... 10-other.xml.gz: 1 Time(s)
/pub/ovirt-3.5/rpm/el7Workstation/repodata ... ilelists.xml.gz: 1 Time(s)
/pub/ovirt-3.5/rpm/el7Workstation/repodata ... ists.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5/rpm/fc19/repodata/4d511e259 ... -primary.xml.gz: 1 Time(s)
/pub/ovirt-3.5/rpm/fc19/repodata/d1337a11b ... ilelists.xml.gz: 1 Time(s)
/pub/ovirt-3.5/rpm/fc19/repodata/dde93d77e ... mary.sqlite.bz2: 1 Time(s)
/pub/ovirt-3.5/rpm/fc20/noarch/atlas-3.8.4 ... fc20.x86_64.rpm: 1 Time(s)
/pub/ovirt-3.5/rpm/fc20/noarch/ovirt-engin ... fc20.x86_64.rpm: 1 Time(s)
/pub/ovirt-3.5/rpm/fc20/noarch/patternfly1 ... fc20.noarch.rpm: 1 Time(s)
/pub/ovirt-3.5/rpm/popo//qweqwe: 1 Time(s)
/pub/ovirt-3.6/src/ovirt-engine-sdk-java/@TARBALL@: 1 Time(s)
/pub/ovirt-master-snapshot-static/rpm/$distro: 1 Time(s)
/pub/ovirt-master-snapshot-static/rpm/el6. ... ther.sqlite.bz2: 1 Time(s)
/pub/ovirt-master-snapshot-static/rpm/el6/ ... -primary.xml.gz: 1 Time(s)
/pub/ovirt-master-snapshot-static/rpm/el7/ ... 5-1.el7.src.rpm: 2 Time(s)
/pub/ovirt-master-snapshot-static/rpm/el7S ... 5-1.el7.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot-static/rpm/el7W ... 5-1.el7.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot-static/rpm/fc20 ... -primary.xml.gz: 1 Time(s)
/pub/ovirt-master-snapshot-static/rpm/fc20 ... ists.sqlite.bz2: 1 Time(s)
/pub/ovirt-master-snapshot-static/rpm/fc21 ... ists.sqlite.bz2: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/$distro: 2 Time(s)
/pub/ovirt-master-snapshot/rpm/@distro@6Server: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6.6/SRPMS ... 04a.el6.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6.6/SRPMS ... 173.el6.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6.6/SRPMS ... 3c4.el6.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6.6/SRPMS ... 44e.el6.src.rpm: 2 Time(s)
/pub/ovirt-master-snapshot/rpm/el6.6/SRPMS ... dc1.el6.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6.6/SRPMS ... e77.el6.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6.6/noarc ... .el6.noarch.rpm: 21 Time(s)
/pub/ovirt-master-snapshot/rpm/el6.6/repod ... -primary.xml.gz: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6.6/repod ... 81-other.xml.gz: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6.6/repod ... ilelists.xml.gz: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6.6/repod ... ther.sqlite.bz2: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6.6/x86_6 ... .el6.x86_64.rpm: 3 Time(s)
/pub/ovirt-master-snapshot/rpm/el6/SRPMS/o ... 36f.el6.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6/SRPMS/o ... 78a.el6.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6/SRPMS/o ... dc1.el6.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6/SRPMS/o ... fcb.el6.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6/SRPMS/v ... 2ac.el6.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6/SRPMS/v ... 382.el6.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6/SRPMS/v ... e77.el6.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6/noarch/ ... .el6.noarch.rpm: 14 Time(s)
/pub/ovirt-master-snapshot/rpm/el6/repodat ... -primary.xml.gz: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6/repodat ... ists.sqlite.bz2: 2 Time(s)
/pub/ovirt-master-snapshot/rpm/el6/repodat ... ther.sqlite.bz2: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6/x86_64/ ... .el6.x86_64.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6Server/S ... 033.el6.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6Server/S ... 2ac.el6.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6Server/S ... 78a.el6.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6Server/n ... .el6.noarch.rpm: 2 Time(s)
/pub/ovirt-master-snapshot/rpm/el6Server/r ... -primary.xml.gz: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6Server/r ... a2-other.xml.gz: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6Server/r ... cb-other.xml.gz: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6Server/r ... ilelists.xml.gz: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6Server/r ... ists.sqlite.bz2: 3 Time(s)
/pub/ovirt-master-snapshot/rpm/el6Server/r ... mary.sqlite.bz2: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6Server/r ... ther.sqlite.bz2: 2 Time(s)
/pub/ovirt-master-snapshot/rpm/el6Workstat ... -primary.xml.gz: 2 Time(s)
/pub/ovirt-master-snapshot/rpm/el6Workstat ... .el6.noarch.rpm: 26 Time(s)
/pub/ovirt-master-snapshot/rpm/el6Workstat ... 18-other.xml.gz: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6Workstat ... 36f.el6.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6Workstat ... 385.el6.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6Workstat ... 78a.el6.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6Workstat ... cb-other.xml.gz: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6Workstat ... e77.el6.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el6Workstat ... ilelists.xml.gz: 2 Time(s)
/pub/ovirt-master-snapshot/rpm/el6Workstat ... ists.sqlite.bz2: 3 Time(s)
/pub/ovirt-master-snapshot/rpm/el6Workstat ... mary.sqlite.bz2: 2 Time(s)
/pub/ovirt-master-snapshot/rpm/el6Workstat ... ther.sqlite.bz2: 2 Time(s)
/pub/ovirt-master-snapshot/rpm/el7/SRPMS/o ... .centos.src.rpm: 4 Time(s)
/pub/ovirt-master-snapshot/rpm/el7/SRPMS/o ... 173.el7.src.rpm: 3 Time(s)
/pub/ovirt-master-snapshot/rpm/el7/SRPMS/o ... 32b.el7.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el7/SRPMS/o ... 44e.el7.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el7/SRPMS/o ... 914.el7.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el7/SRPMS/o ... dea.el7.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el7/SRPMS/v ... 385.el7.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el7/SRPMS/v ... 4b0.el7.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el7/SRPMS/v ... f9b.el7.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el7/noarch/ ... .el7.noarch.rpm: 28 Time(s)
/pub/ovirt-master-snapshot/rpm/el7/noarch/ ... ntos.noarch.rpm: 5 Time(s)
/pub/ovirt-master-snapshot/rpm/el7/repodat ... -primary.xml.gz: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el7/repodat ... 00-other.xml.gz: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el7/repodat ... ilelists.xml.gz: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el7/repodat ... ists.sqlite.bz2: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el7/repodat ... mary.sqlite.bz2: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el7/repodat ... ther.sqlite.bz2: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el7/x86_64/ ... .el7.x86_64.rpm: 3 Time(s)
/pub/ovirt-master-snapshot/rpm/el7Server/S ... 1a6.el7.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el7Server/S ... 205.el7.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el7Server/S ... 382.el7.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el7Server/S ... e77.el7.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el7Server/n ... .el7.noarch.rpm: 36 Time(s)
/pub/ovirt-master-snapshot/rpm/el7Server/n ... ntos.noarch.rpm: 7 Time(s)
/pub/ovirt-master-snapshot/rpm/el7Server/r ... -primary.xml.gz: 2 Time(s)
/pub/ovirt-master-snapshot/rpm/el7Server/r ... 00-other.xml.gz: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el7Server/r ... 9c-other.xml.gz: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el7Server/r ... ilelists.xml.gz: 2 Time(s)
/pub/ovirt-master-snapshot/rpm/el7Server/r ... ists.sqlite.bz2: 2 Time(s)
/pub/ovirt-master-snapshot/rpm/el7Server/r ... mary.sqlite.bz2: 2 Time(s)
/pub/ovirt-master-snapshot/rpm/el7Server/r ... ther.sqlite.bz2: 2 Time(s)
/pub/ovirt-master-snapshot/rpm/el7Server/x ... .el7.x86_64.rpm: 3 Time(s)
/pub/ovirt-master-snapshot/rpm/el7Workstat ... -primary.xml.gz: 2 Time(s)
/pub/ovirt-master-snapshot/rpm/el7Workstat ... .centos.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el7Workstat ... .el7.noarch.rpm: 8 Time(s)
/pub/ovirt-master-snapshot/rpm/el7Workstat ... .el7.x86_64.rpm: 4 Time(s)
/pub/ovirt-master-snapshot/rpm/el7Workstat ... 00-other.xml.gz: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el7Workstat ... ilelists.xml.gz: 2 Time(s)
/pub/ovirt-master-snapshot/rpm/el7Workstat ... ists.sqlite.bz2: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el7Workstat ... mary.sqlite.bz2: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el7Workstat ... ntos.noarch.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/el7Workstat ... ther.sqlite.bz2: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/fc19/SRPMS/ ... 73.fc19.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/fc19/repoda ... -primary.xml.gz: 2 Time(s)
/pub/ovirt-master-snapshot/rpm/fc19/repoda ... ilelists.xml.gz: 2 Time(s)
/pub/ovirt-master-snapshot/rpm/fc19/repoda ... mary.sqlite.bz2: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/fc19/repoda ... ther.sqlite.bz2: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/fc20/SRPMS/ ... 73.fc20.src.rpm: 2 Time(s)
/pub/ovirt-master-snapshot/rpm/fc20/SRPMS/ ... 77.fc20.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/fc20/SRPMS/ ... 84.fc20.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/fc20/noarch ... fc20.noarch.rpm: 22 Time(s)
/pub/ovirt-master-snapshot/rpm/fc20/repoda ... -primary.xml.gz: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/fc20/repoda ... 50-other.xml.gz: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/fc20/repoda ... ilelists.xml.gz: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/fc20/repoda ... ists.sqlite.bz2: 2 Time(s)
/pub/ovirt-master-snapshot/rpm/fc20/repoda ... mary.sqlite.bz2: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/fc20/repoda ... ther.sqlite.bz2: 18 Time(s)
/pub/ovirt-master-snapshot/rpm/fc20/x86_64 ... fc20.x86_64.rpm: 2 Time(s)
/pub/ovirt-master-snapshot/rpm/fc21/SRPMS/ ... 14.fc21.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/fc21/SRPMS/ ... 2b.fc21.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/fc21/SRPMS/ ... 54.fc21.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/fc21/SRPMS/ ... 73.fc21.src.rpm: 2 Time(s)
/pub/ovirt-master-snapshot/rpm/fc21/SRPMS/ ... a2.fc21.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/fc21/SRPMS/ ... a6.fc21.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/fc21/SRPMS/ ... cb.fc21.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/fc21/SRPMS/ ... ea.fc21.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/fc21/SRPMS/ ... ed.fc21.src.rpm: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/fc21/noarch ... fc21.noarch.rpm: 29 Time(s)
/pub/ovirt-master-snapshot/rpm/fc21/repoda ... -primary.xml.gz: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/fc21/repoda ... 3d-other.xml.gz: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/fc21/repoda ... ilelists.xml.gz: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/fc21/repoda ... ists.sqlite.bz2: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/fc21/repoda ... mary.sqlite.bz2: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/fc21/repoda ... ther.sqlite.bz2: 1 Time(s)
/pub/ovirt-master-snapshot/rpm/fc21/x86_64 ... fc21.x86_64.rpm: 5 Time(s)
/pub/ovirt-master-snapshot/src/ovirt-engin ... 4j-1.0.0.tar.gz: 1 Time(s)
/pub/ovirt-master-snapshot/src/ovirt-hoste ... 06150010.tar.gz: 1 Time(s)
/pub/ovirt-snapshot-static/rpm/el6/repodata/repomd.xml: 3 Time(s)
/pub/ovirt-snapshot/rpm/el6/noarch/otopi-1 ... .el6.noarch.rpm: 2 Time(s)
/pub/ovirt-snapshot/rpm/el6/noarch/otopi-j ... .el6.noarch.rpm: 2 Time(s)
/pub/ovirt-snapshot/rpm/el6/noarch/ovirt-e ... .el6.noarch.rpm: 28 Time(s)
/pub/ovirt-snapshot/rpm/el6/noarch/ovirt-h ... .el6.noarch.rpm: 4 Time(s)
/pub/ovirt-snapshot/rpm/el6/repodata/repomd.xml: 3 Time(s)
/pub/yum-repo/ovirt-release: 1 Time(s)
/pub/yum-repo/ovirt-release.rpm: 1 Time(s)
/pub/yum-repo/ovirt-releaseXY.rpm: 2 Time(s)
/repos/ci-tools/fedora/18/repodata/repomd.xml: 42 Time(s)
/repos/clean_pub/ovirt-3.5-pre/src/ovirt-scheduler-proxy/: 1 Time(s)
/repos/ovirt-3.5-20141203-backup/exe/: 1 Time(s)
/repos/ovirt-3.5-20141203-backup/iso/: 1 Time(s)
/repos/ovirt-3.5-pre-rc1.1/src/ovirt-scheduler-proxy/: 1 Time(s)
/robots.txt: 219 Time(s)
/stable: 1 Time(s)
/stats/irc/blue-v.png: 1 Time(s)
/stats/irc/green-v.png: 1 Time(s)
/stats/irc/red-h.png: 1 Time(s)
/stats/irc/red-v.png: 1 Time(s)
/stats/irc/yellow-v.png: 1 Time(s)
/test/wp-admin/: 12 Time(s)
/user/: 3 Time(s)
/wiki/Foobar: 1 Time(s)
/wordpress/wp-admin/: 9 Time(s)
/wp-admin/: 13 Time(s)
/wp-content/themes/Nova/timthumb.php?src=h ... y.com%2Fbad.php: 1 Time(s)
/wp-content/themes/TheProfessional/timthum ... y.com%2Fbad.php: 4 Time(s)
/wp-content/themes/eStore/timthumb.php: 2 Time(s)
/wp-content/themes/eStore/timthumb.php?src ... ris.gr%2Fxp.php: 1 Time(s)
/wp-content/themes/ecobiz/timthumb.php?src ... %2F%2Fmagic.php: 1 Time(s)
/wp-content/themes/ecobiz/timthumb.php?src ... .com/indeks.php: 1 Time(s)
/wp-content/themes/ecobiz/timthumb.php?src ... ro%2F%2Fcpx.php: 1 Time(s)
/wp-content/themes/irresistible/thumb.php? ... om%2Fsimple.php: 1 Time(s)
/wp-content/themes/overeasy/thumb.php?src= ... om%2Fsimple.php: 1 Time(s)
/wp-login.php: 10 Time(s)
/wp-login.php?action=register: 6 Time(s)
/wp/wp-admin/: 11 Time(s)
/xmlrpc.php: 2 Time(s)
405 Method Not Allowed
/mailman/listinfo: 1 Time(s)
/nyet%2Egif: 2 Time(s)
/nyet.gif: 15 Time(s)
416 Request Range Not Satisfiable
/pub/ovirt-3.4/rpm/el6/noarch/otopi-devtoo ... .el6.noarch.rpm: 2 Time(s)
/pub/ovirt-3.4/rpm/el6/noarch/otopi-java-1 ... .el6.noarch.rpm: 2 Time(s)
/pub/ovirt-3.4/rpm/el6/noarch/otopi-repoli ... .el6.noarch.rpm: 2 Time(s)
/pub/ovirt-3.5/rpm/el7/noarch/ovirt-engine ... ntos.noarch.rpm: 2 Time(s)
/pub/ovirt-3.5/rpm/fc21/noarch/ovirt-relea ... 02-1.noarch.rpm: 670 Time(s)
/pub/ovirt-master-snapshot-static/rpm/el6/ ... ster.noarch.rpm: 6 Time(s)
/pub/ovirt-master-snapshot/rpm/el6/noarch/ ... .el6.noarch.rpm: 24 Time(s)
/pub/ovirt-master-snapshot/rpm/el6/x86_64/ ... l6_6.x86_64.rpm: 24 Time(s)
503 Service Unavailable
/_h5ai/client/images/descending.svg: 1 Time(s)
/_h5ai/client/images/preview/prev.svg: 1 Time(s)
/_h5ai/client/images/preview/raw.svg: 2 Time(s)
/favicon.ico: 3 Time(s)
/pub/ovirt-3.4/iso/ovirt-live-el6-3.4.4.iso: 14 Time(s)
/pub/ovirt-3.4/iso/ovirt-node-iso-3.4-20140508.2.el6.iso: 29 Time(s)
/pub/ovirt-3.5/: 1 Time(s)
/pub/ovirt-3.5/iso/: 3 Time(s)
/pub/ovirt-3.5/iso/ovirt-live-el6-3.5.1.iso: 954 Time(s)
---------------------- httpd End -------------------------
--------------------- Named Begin ------------------------
**Unmatched Entries**
validating @0xaddfc1d0: 221.162.in-addr.arpa SOA: got insecure response; parent indicates it should be secure: 1 Time(s)
validating @0xaed9d598: 221.162.in-addr.arpa SOA: got insecure response; parent indicates it should be secure: 6 Time(s)
validating @0xb09ff040: 148.104.in-addr.arpa SOA: got insecure response; parent indicates it should be secure: 1 Time(s)
validating @0xb0c357d8: 221.162.in-addr.arpa SOA: got insecure response; parent indicates it should be secure: 8 Time(s)
validating @0xb0e073f8: 148.104.in-addr.arpa SOA: got insecure response; parent indicates it should be secure: 1 Time(s)
validating @0xb0e073f8: 221.162.in-addr.arpa SOA: got insecure response; parent indicates it should be secure: 2 Time(s)
validating @0xb0e08400: 148.104.in-addr.arpa SOA: got insecure response; parent indicates it should be secure: 1 Time(s)
validating @0xb0e08400: 221.162.in-addr.arpa SOA: got insecure response; parent indicates it should be secure: 6 Time(s)
validating @0xb0f2f648: 221.162.in-addr.arpa SOA: got insecure response; parent indicates it should be secure: 1 Time(s)
validating @0xb1018360: 221.162.in-addr.arpa SOA: got insecure response; parent indicates it should be secure: 5 Time(s)
validating @0xb1018dd8: 221.162.in-addr.arpa SOA: got insecure response; parent indicates it should be secure: 1 Time(s)
validating @0xb1133dd0: 148.104.in-addr.arpa SOA: got insecure response; parent indicates it should be secure: 1 Time(s)
validating @0xb1133dd0: 221.162.in-addr.arpa SOA: got insecure response; parent indicates it should be secure: 10 Time(s)
validating @0xb1201150: 221.162.in-addr.arpa SOA: got insecure response; parent indicates it should be secure: 1 Time(s)
validating @0xb1202158: 221.162.in-addr.arpa SOA: got insecure response; parent indicates it should be secure: 1 Time(s)
validating @0xb1338e18: 148.104.in-addr.arpa SOA: got insecure response; parent indicates it should be secure: 2 Time(s)
validating @0xb1338e18: 221.162.in-addr.arpa SOA: got insecure response; parent indicates it should be secure: 7 Time(s)
validating @0xb13fe1e0: 221.162.in-addr.arpa SOA: got insecure response; parent indicates it should be secure: 1 Time(s)
validating @0xb14e87b8: 221.162.in-addr.arpa SOA: got insecure response; parent indicates it should be secure: 1 Time(s)
validating @0xb14fc420: 221.162.in-addr.arpa SOA: got insecure response; parent indicates it should be secure: 6 Time(s)
error (FORMERR) resolving '_adsp._domainkey.weldingequipments.net/TXT/IN': 204.13.160.143#53: 7 Time(s)
error (FORMERR) resolving '_adsp._domainkey.weldingequipments.net/TXT/IN': 204.13.161.145#53: 7 Time(s)
error (FORMERR) resolving 'around.in/NS/IN': 124.16.31.146#53: 1 Time(s)
error (FORMERR) resolving 'around.in/NS/IN': 124.16.31.150#53: 1 Time(s)
error (FORMERR) resolving 'ns-cmn1.qq.com/AAAA/IN': 101.226.66.18#53: 25 Time(s)
error (FORMERR) resolving 'ns-cmn1.qq.com/AAAA/IN': 103.7.29.241#53: 29 Time(s)
error (FORMERR) resolving 'ns-cmn1.qq.com/AAAA/IN': 120.204.202.200#53: 51 Time(s)
error (FORMERR) resolving 'ns-cmn1.qq.com/AAAA/IN': 14.17.19.140#53: 50 Time(s)
error (FORMERR) resolving 'ns-cmn1.qq.com/AAAA/IN': 175.155.119.229#53: 52 Time(s)
error (FORMERR) resolving 'ns-cmn1.qq.com/AAAA/IN': 184.105.66.196#53: 64 Time(s)
error (FORMERR) resolving 'ns-cmn1.qq.com/AAAA/IN': 202.55.2.226#53: 29 Time(s)
error (FORMERR) resolving 'ns-cmn1.qq.com/AAAA/IN': 202.55.2.230#53: 26 Time(s)
error (FORMERR) resolving 'ns-cmn1.qq.com/AAAA/IN': 61.135.167.182#53: 54 Time(s)
error (FORMERR) resolving 'ns-cnc1.qq.com/AAAA/IN': 101.226.66.18#53: 13 Time(s)
error (FORMERR) resolving 'ns-cnc1.qq.com/AAAA/IN': 103.7.29.241#53: 21 Time(s)
error (FORMERR) resolving 'ns-cnc1.qq.com/AAAA/IN': 120.204.202.200#53: 43 Time(s)
error (FORMERR) resolving 'ns-cnc1.qq.com/AAAA/IN': 14.17.19.140#53: 37 Time(s)
error (FORMERR) resolving 'ns-cnc1.qq.com/AAAA/IN': 175.155.119.229#53: 38 Time(s)
error (FORMERR) resolving 'ns-cnc1.qq.com/AAAA/IN': 184.105.66.196#53: 54 Time(s)
error (FORMERR) resolving 'ns-cnc1.qq.com/AAAA/IN': 202.55.2.226#53: 19 Time(s)
error (FORMERR) resolving 'ns-cnc1.qq.com/AAAA/IN': 202.55.2.230#53: 18 Time(s)
error (FORMERR) resolving 'ns-cnc1.qq.com/AAAA/IN': 61.135.167.182#53: 39 Time(s)
error (FORMERR) resolving 'ns-os1.qq.com/AAAA/IN': 101.226.66.18#53: 54 Time(s)
error (FORMERR) resolving 'ns-os1.qq.com/AAAA/IN': 103.7.29.241#53: 80 Time(s)
error (FORMERR) resolving 'ns-os1.qq.com/AAAA/IN': 120.204.202.200#53: 93 Time(s)
error (FORMERR) resolving 'ns-os1.qq.com/AAAA/IN': 14.17.19.140#53: 86 Time(s)
error (FORMERR) resolving 'ns-os1.qq.com/AAAA/IN': 175.155.119.229#53: 98 Time(s)
error (FORMERR) resolving 'ns-os1.qq.com/AAAA/IN': 184.105.66.196#53: 105 Time(s)
error (FORMERR) resolving 'ns-os1.qq.com/AAAA/IN': 202.55.2.226#53: 77 Time(s)
error (FORMERR) resolving 'ns-os1.qq.com/AAAA/IN': 202.55.2.230#53: 79 Time(s)
error (FORMERR) resolving 'ns-os1.qq.com/AAAA/IN': 61.135.167.182#53: 99 Time(s)
error (FORMERR) resolving 'ns-tel1.qq.com/AAAA/IN': 101.226.66.18#53: 14 Time(s)
error (FORMERR) resolving 'ns-tel1.qq.com/AAAA/IN': 103.7.29.241#53: 20 Time(s)
error (FORMERR) resolving 'ns-tel1.qq.com/AAAA/IN': 120.204.202.200#53: 43 Time(s)
error (FORMERR) resolving 'ns-tel1.qq.com/AAAA/IN': 14.17.19.140#53: 37 Time(s)
error (FORMERR) resolving 'ns-tel1.qq.com/AAAA/IN': 175.155.119.229#53: 36 Time(s)
error (FORMERR) resolving 'ns-tel1.qq.com/AAAA/IN': 184.105.66.196#53: 52 Time(s)
error (FORMERR) resolving 'ns-tel1.qq.com/AAAA/IN': 202.55.2.226#53: 19 Time(s)
error (FORMERR) resolving 'ns-tel1.qq.com/AAAA/IN': 202.55.2.230#53: 14 Time(s)
error (FORMERR) resolving 'ns-tel1.qq.com/AAAA/IN': 61.135.167.182#53: 34 Time(s)
error (FORMERR) resolving 'ns1.go2.pl/AAAA/IN': 193.17.41.1#53: 1 Time(s)
error (FORMERR) resolving 'ns1.go2.pl/AAAA/IN': 193.222.135.67#53: 1 Time(s)
error (FORMERR) resolving 'ns2.go2.pl/AAAA/IN': 193.17.41.1#53: 1 Time(s)
error (FORMERR) resolving 'ns2.go2.pl/AAAA/IN': 193.222.135.67#53: 1 Time(s)
error (FORMERR) resolving 'weldingequipments.net/MX/IN': 204.13.160.143#53: 26 Time(s)
error (FORMERR) resolving 'weldingequipments.net/MX/IN': 204.13.161.145#53: 26 Time(s)
error (host unreachable) resolving 'adfinis-sygroup.ch/MX/IN': 5.148.174.196#53: 6 Time(s)
error (host unreachable) resolving 'bmx.adfinis-sygroup.ch/A/IN': 5.148.174.196#53: 1 Time(s)
error (host unreachable) resolving 'dns3.sygroup.net/A/IN': 5.148.174.196#53: 1 Time(s)
error (host unreachable) resolving 'dns3.sygroup.net/AAAA/IN': 5.148.174.196#53: 1 Time(s)
error (host unreachable) resolving 'filtrare.adfinis-sygroup.ch/A/IN': 5.148.174.196#53: 1 Time(s)
error (host unreachable) resolving 'filtro.adfinis-sygroup.ch/AAAA/IN': 5.148.174.196#53: 1 Time(s)
error (insecurity proof failed) resolving 'edu.es/DNSKEY/IN': 217.76.145.5#53: 1 Time(s)
error (insecurity proof failed) resolving 'ms.aerohosting.cz/AAAA/IN': 74.117.158.145#53: 9 Time(s)
error (insecurity proof failed) resolving 'ms2.aerohosting.cz/AAAA/IN': 74.117.158.145#53: 9 Time(s)
error (no valid DS) resolving 'ull.edu.es/MX/IN': 193.145.120.40#53: 1 Time(s)
error (no valid RRSIG) resolving 'ms.aerohosting.cz/DS/IN': 74.117.158.145#53: 9 Time(s)
error (no valid RRSIG) resolving 'ms2.aerohosting.cz/DS/IN': 74.117.158.145#53: 9 Time(s)
error (unexpected RCODE REFUSED) resolving '122.15.153.219.in-addr.arpa/PTR/IN': 61.128.128.77#53: 149 Time(s)
error (unexpected RCODE REFUSED) resolving '122.15.153.219.in-addr.arpa/PTR/IN': 61.128.192.77#53: 149 Time(s)
error (unexpected RCODE REFUSED) resolving '16.4.123.77.in-addr.arpa/PTR/IN': 77.120.80.1#53: 2 Time(s)
error (unexpected RCODE REFUSED) resolving '16.4.123.77.in-addr.arpa/PTR/IN': 77.120.80.16#53: 2 Time(s)
error (unexpected RCODE REFUSED) resolving '33.65.116.87.in-addr.arpa/PTR/IN': 93.94.142.13#53: 2 Time(s)
error (unexpected RCODE REFUSED) resolving '33.65.116.87.in-addr.arpa/PTR/IN': 93.94.142.14#53: 2 Time(s)
error (unexpected RCODE REFUSED) resolving '34.65.116.87.in-addr.arpa/PTR/IN': 93.94.142.13#53: 2 Time(s)
error (unexpected RCODE REFUSED) resolving '34.65.116.87.in-addr.arpa/PTR/IN': 93.94.142.14#53: 2 Time(s)
error (unexpected RCODE REFUSED) resolving '35.65.116.87.in-addr.arpa/PTR/IN': 93.94.142.13#53: 2 Time(s)
error (unexpected RCODE REFUSED) resolving '35.65.116.87.in-addr.arpa/PTR/IN': 93.94.142.14#53: 2 Time(s)
error (unexpected RCODE REFUSED) resolving '37.65.116.87.in-addr.arpa/PTR/IN': 93.94.142.13#53: 2 Time(s)
error (unexpected RCODE REFUSED) resolving '37.65.116.87.in-addr.arpa/PTR/IN': 93.94.142.14#53: 2 Time(s)
error (unexpected RCODE REFUSED) resolving '_adsp._domainkey.dismi.info/TXT/IN': 173.232.54.50#53: 3 Time(s)
error (unexpected RCODE REFUSED) resolving '_adsp._domainkey.dismi.info/TXT/IN': 173.232.54.51#53: 3 Time(s)
error (unexpected RCODE REFUSED) resolving 'dismi.info/A/IN': 173.232.54.50#53: 3 Time(s)
error (unexpected RCODE REFUSED) resolving 'dismi.info/A/IN': 173.232.54.51#53: 3 Time(s)
error (unexpected RCODE REFUSED) resolving 'dismi.info/MX/IN': 173.232.54.50#53: 6 Time(s)
error (unexpected RCODE REFUSED) resolving 'dismi.info/MX/IN': 173.232.54.51#53: 6 Time(s)
error (unexpected RCODE REFUSED) resolving 'dismi.info/NS/IN': 173.232.54.50#53: 3 Time(s)
error (unexpected RCODE REFUSED) resolving 'dismi.info/NS/IN': 173.232.54.51#53: 3 Time(s)
error (unexpected RCODE REFUSED) resolving 'enegom.com/MX/IN': 87.106.36.92#53: 20 Time(s)
error (unexpected RCODE REFUSED) resolving 'hostsmtp.pl/NS/IN': 89.185.229.67#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'hostsmtp.pl/NS/IN': 89.185.243.146#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'logancheck.net/MX/IN': 173.245.58.249#53: 124 Time(s)
error (unexpected RCODE REFUSED) resolving 'logancheck.net/MX/IN': 173.245.59.190#53: 124 Time(s)
error (unexpected RCODE REFUSED) resolving 'logancheck.net/NS/IN': 173.245.58.249#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'logancheck.net/NS/IN': 173.245.59.190#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'luxfo.com/MX/IN': 173.245.58.249#53: 78 Time(s)
error (unexpected RCODE REFUSED) resolving 'luxfo.com/MX/IN': 173.245.59.190#53: 78 Time(s)
error (unexpected RCODE REFUSED) resolving 'm4i9q49m.dismi.info/A/IN': 173.232.54.50#53: 4 Time(s)
error (unexpected RCODE REFUSED) resolving 'm4i9q49m.dismi.info/A/IN': 173.232.54.51#53: 4 Time(s)
error (unexpected RCODE REFUSED) resolving 'm4i9q49m.dismi.info/AAAA/IN': 173.232.54.50#53: 4 Time(s)
error (unexpected RCODE REFUSED) resolving 'm4i9q49m.dismi.info/AAAA/IN': 173.232.54.51#53: 4 Time(s)
error (unexpected RCODE REFUSED) resolving 'mail.enegom.com/A/IN': 87.106.36.92#53: 16 Time(s)
error (unexpected RCODE REFUSED) resolving 'mail.enegom.com/AAAA/IN': 87.106.36.92#53: 18 Time(s)
error (unexpected RCODE REFUSED) resolving 'meegozu.com/MX/IN': 173.245.58.249#53: 82 Time(s)
error (unexpected RCODE REFUSED) resolving 'meegozu.com/MX/IN': 173.245.59.190#53: 82 Time(s)
error (unexpected RCODE REFUSED) resolving 'mx1.ks.pochta.ru/A/IN': 185.79.119.222#53: 23 Time(s)
error (unexpected RCODE REFUSED) resolving 'mx1.ks.pochta.ru/AAAA/IN': 185.79.119.222#53: 24 Time(s)
error (unexpected RCODE REFUSED) resolving 'mx1.lnf.infn.it/AAAA/IN': 141.108.5.3#53: 2 Time(s)
error (unexpected RCODE REFUSED) resolving 'mx1.sante-martinique.fr/AAAA/IN': 213.16.20.3#53: 4 Time(s)
error (unexpected RCODE REFUSED) resolving 'mx2.ks.pochta.ru/A/IN': 185.79.119.222#53: 26 Time(s)
error (unexpected RCODE REFUSED) resolving 'mx2.ks.pochta.ru/AAAA/IN': 185.79.119.222#53: 24 Time(s)
error (unexpected RCODE REFUSED) resolving 'mx2.lnf.infn.it/A/IN': 141.108.5.3#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'mx2.lnf.infn.it/AAAA/IN': 141.108.5.3#53: 3 Time(s)
error (unexpected RCODE REFUSED) resolving 'mx2.sante-martinique.fr/AAAA/IN': 213.16.20.3#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'mx3.ks.pochta.ru/A/IN': 185.79.119.222#53: 26 Time(s)
error (unexpected RCODE REFUSED) resolving 'mx3.ks.pochta.ru/AAAA/IN': 185.79.119.222#53: 28 Time(s)
error (unexpected RCODE REFUSED) resolving 'mx4.ecarnot.net/AAAA/IN': 212.83.147.9#53: 2 Time(s)
error (unexpected RCODE REFUSED) resolving 'mx4.ks.pochta.ru/A/IN': 185.79.119.222#53: 24 Time(s)
error (unexpected RCODE REFUSED) resolving 'mx4.ks.pochta.ru/AAAA/IN': 185.79.119.222#53: 24 Time(s)
error (unexpected RCODE REFUSED) resolving 'mx5.ks.pochta.ru/A/IN': 185.79.119.222#53: 26 Time(s)
error (unexpected RCODE REFUSED) resolving 'mx5.ks.pochta.ru/AAAA/IN': 185.79.119.222#53: 22 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns.enegom.com/AAAA/IN': 87.106.36.92#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns.sante-martinique.fr/A/IN': 213.16.20.3#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns1.dismi.info/AAAA/IN': 173.232.54.50#53: 2 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns1.dismi.info/AAAA/IN': 173.232.54.51#53: 2 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns1.logancheck.net/AAAA/IN': 173.245.58.249#53: 63 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns1.logancheck.net/AAAA/IN': 173.245.59.190#53: 63 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns1.luxfo.com/A/IN': 173.245.58.249#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns1.luxfo.com/A/IN': 173.245.59.190#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns1.luxfo.com/AAAA/IN': 173.245.58.249#53: 40 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns1.luxfo.com/AAAA/IN': 173.245.59.190#53: 40 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns1.meegozu.com/A/IN': 173.245.58.249#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns1.meegozu.com/A/IN': 173.245.59.190#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns1.meegozu.com/AAAA/IN': 173.245.58.249#53: 42 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns1.meegozu.com/AAAA/IN': 173.245.59.190#53: 42 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns1.quanhta.com/A/IN': 173.245.58.249#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns1.quanhta.com/A/IN': 173.245.59.190#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns1.quanhta.com/AAAA/IN': 173.245.58.249#53: 62 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns1.quanhta.com/AAAA/IN': 173.245.59.190#53: 62 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns1.serverel.net/A/IN': 109.206.177.157#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns1.serverel.net/AAAA/IN': 109.206.177.157#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns2.dismi.info/AAAA/IN': 173.232.54.50#53: 2 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns2.dismi.info/AAAA/IN': 173.232.54.51#53: 2 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns2.logancheck.net/AAAA/IN': 173.245.58.249#53: 63 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns2.logancheck.net/AAAA/IN': 173.245.59.190#53: 63 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns2.luxfo.com/A/IN': 173.245.58.249#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns2.luxfo.com/A/IN': 173.245.59.190#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns2.luxfo.com/AAAA/IN': 173.245.58.249#53: 40 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns2.luxfo.com/AAAA/IN': 173.245.59.190#53: 40 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns2.meegozu.com/A/IN': 173.245.58.249#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns2.meegozu.com/A/IN': 173.245.59.190#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns2.meegozu.com/AAAA/IN': 173.245.58.249#53: 42 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns2.meegozu.com/AAAA/IN': 173.245.59.190#53: 42 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns2.netbcp.net/A/IN': 205.173.95.216#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns2.quanhta.com/A/IN': 173.245.58.249#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns2.quanhta.com/A/IN': 173.245.59.190#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns2.quanhta.com/AAAA/IN': 173.245.58.249#53: 62 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns2.quanhta.com/AAAA/IN': 173.245.59.190#53: 62 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns2.serverel.net/A/IN': 109.206.177.157#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'ns2.serverel.net/AAAA/IN': 109.206.177.157#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'quanhta.com/MX/IN': 173.245.58.249#53: 122 Time(s)
error (unexpected RCODE REFUSED) resolving 'quanhta.com/MX/IN': 173.245.59.190#53: 122 Time(s)
error (unexpected RCODE REFUSED) resolving 'quanhta.com/NS/IN': 173.245.58.249#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'quanhta.com/NS/IN': 173.245.59.190#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'secdns1.posix.co.za/A/IN': 160.124.48.1#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'secdns1.posix.co.za/AAAA/IN': 160.124.48.1#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'yellowjacketusa.com/A/IN': 65.61.188.4#53: 42 Time(s)
error (unexpected RCODE REFUSED) resolving 'yellowjacketusa.com/A/IN': 69.20.95.4#53: 42 Time(s)
error (unexpected RCODE REFUSED) resolving 'yellowjacketusa.com/AAAA/IN': 65.61.188.4#53: 42 Time(s)
error (unexpected RCODE REFUSED) resolving 'yellowjacketusa.com/AAAA/IN': 69.20.95.4#53: 42 Time(s)
error (unexpected RCODE REFUSED) resolving 'yellowjacketusa.com/NS/IN': 65.61.188.4#53: 1 Time(s)
error (unexpected RCODE REFUSED) resolving 'yellowjacketusa.com/NS/IN': 69.20.95.4#53: 1 Time(s)
error (unexpected RCODE SERVFAIL) resolving '118.218.125.64.in-addr.arpa/PTR/IN': 207.126.105.146#53: 1 Time(s)
error (unexpected RCODE SERVFAIL) resolving 'acloud.pt/NS/IN': 87.103.115.60#53: 1 Time(s)
error (unexpected RCODE SERVFAIL) resolving 'acloud.pt/NS/IN': 94.46.233.22#53: 1 Time(s)
error (unexpected RCODE SERVFAIL) resolving 'giesen.me/MX/IN': 216.235.0.100#53: 2 Time(s)
error (unexpected RCODE SERVFAIL) resolving 'h5.srov.info/A/IN': 2001:41d0:1:4a8d::1#53: 1 Time(s)
error (unexpected RCODE SERVFAIL) resolving 'h5.srov.info/A/IN': 213.251.188.141#53: 1 Time(s)
error (unexpected RCODE SERVFAIL) resolving 'h5.srov.info/AAAA/IN': 2001:41d0:1:4a8d::1#53: 1 Time(s)
error (unexpected RCODE SERVFAIL) resolving 'h5.srov.info/AAAA/IN': 213.251.188.141#53: 1 Time(s)
error (unexpected RCODE SERVFAIL) resolving 'ns1.acloud.pt/AAAA/IN': 87.103.115.60#53: 3 Time(s)
error (unexpected RCODE SERVFAIL) resolving 'ns1.acloud.pt/AAAA/IN': 94.46.233.22#53: 2 Time(s)
error (unexpected RCODE SERVFAIL) resolving 'ns2.acloud.pt/AAAA/IN': 87.103.115.60#53: 3 Time(s)
error (unexpected RCODE SERVFAIL) resolving 'ns2.acloud.pt/AAAA/IN': 94.46.233.22#53: 5 Time(s)
error (unexpected RCODE SERVFAIL) resolving 'smtp.giesen.me/A/IN': 216.235.0.100#53: 4 Time(s)
error (unexpected RCODE SERVFAIL) resolving 'smtp.giesen.me/AAAA/IN': 216.235.0.100#53: 4 Time(s)
error (unexpected RCODE SERVFAIL) resolving 'ukfsn.org/DS/IN': 199.249.112.1#53: 1 Time(s)
error (unexpected RCODE SERVFAIL) resolving 'wrea.org/DS/IN': 2001:500:40::1#53: 1 Time(s)
validating @0xb0c34c88: edu.es DNSKEY: got insecure response; parent indicates it should be secure: 1 Time(s)
---------------------- Named End -------------------------
--------------------- pam_unix Begin ------------------------
sudo:
Authentication Failures:
dcaro(516) -> dcaro: 1 Time(s)
---------------------- pam_unix End -------------------------
--------------------- Postfix Begin ------------------------
1764 *Warning: Pre-queue content-filter connection overload
5 Miscellaneous warnings
48.121M Bytes accepted 50,458,851
565.603M Bytes delivered 593,077,653
======== ================================================
5413 Accepted 99.34%
36 Rejected 0.66%
-------- ------------------------------------------------
5449 Total 100.00%
======== ================================================
36 Reject unknown user 100.00%
-------- ------------------------------------------------
36 Total Rejects 100.00%
======== ================================================
5250 Connections made
19 Connections lost
5250 Disconnections
5285 Removed from queue
2778 Delivered
66118 Sent via SMTP
6 Forwarded
197 Deferred
2667 Deferrals
17 Bounce (local)
177 Bounce (remote)
4 Expired and returned to sender
40 DSNs undeliverable
3024 Connection failure (outbound)
12 Timeout (inbound)
1 SMTP commands dialog error
504 Hostname verification errors
153 Enabled PIX workaround
**Unmatched Entries**
1 Jan 28 06:03:59 linode01 postfix/smtp[3670]: SSL_connect error to mta5.am0.yahoodns.net[66.196.118.37]:25: -1
1 Jan 28 06:03:59 linode01 postfix/smtp[3670]: 1B610C3E7: Cannot start TLS: handshake failure
---------------------- Postfix End -------------------------
--------------------- SSHD Begin ------------------------
SSHD Killed: 1 Time(s)
SSHD Started: 2 Time(s)
Users logging in through sshd:
dcaro:
81.44.244.219 (219.Red-81-44-244.dynamicIP.rima-tde.net): 3 times
jenkins:
89.31.150.215 (alterway01.ovirt.org): 2 times
mirror:
192.87.102.41: 12 times
128.61.111.12 (zaphod.gtlib.gatech.edu): 1 time
130.89.149.129 (vlaai.snt.utwente.nl): 1 time
152.3.102.53 (archive.linux.duke.edu): 1 time
152.19.134.30 (jobbot1.ibiblio.org): 1 time
misc:
209.132.186.20 (nat-pool-cdg-t.redhat.com): 1 time
rsync:
209.132.186.36 (nat-pool-tlv-t.redhat.com): 1 time
sbonazzo:
209.132.186.37 (nat-pool-tlv-u.redhat.com): 1 time
Received disconnect:
11: : 17 Time(s)
11: Bye Bye : 570 Time(s)
11: disconnected by user : 20 Time(s)
SFTP subsystem requests: 2 Time(s)
**Unmatched Entries**
reverse mapping checking getaddrinfo for ingenieria_de_proyectos_ltda-116 [201.245.165.116] failed - POSSIBLE BREAK-IN ATTEMPT! : 53 time(s)
reverse mapping checking getaddrinfo for 105.49.174.61.dial.wz.zj.dynamic.163data.com.cn [61.174.49.105] failed - POSSIBLE BREAK-IN ATTEMPT! : 1 time(s)
reverse mapping checking getaddrinfo for 147.4.161.222.adsl-pool.jlccptt.net.cn [222.161.4.147] failed - POSSIBLE BREAK-IN ATTEMPT! : 1 time(s)
reverse mapping checking getaddrinfo for 224.51.174.61.dial.wz.zj.dynamic.163data.com.cn [61.174.51.224] failed - POSSIBLE BREAK-IN ATTEMPT! : 3 time(s)
reverse mapping checking getaddrinfo for 207.51.174.61.dial.wz.zj.dynamic.163data.com.cn [61.174.51.207] failed - POSSIBLE BREAK-IN ATTEMPT! : 3 time(s)
reverse mapping checking getaddrinfo for 211.51.174.61.dial.wz.zj.dynamic.163data.com.cn [61.174.51.211] failed - POSSIBLE BREAK-IN ATTEMPT! : 3 time(s)
reverse mapping checking getaddrinfo for 225.50.174.61.dial.wz.zj.dynamic.163data.com.cn [61.174.50.225] failed - POSSIBLE BREAK-IN ATTEMPT! : 3 time(s)
---------------------- SSHD End -------------------------
--------------------- Sudo (secure-log) Begin ------------------------
==============================================================================
dcaro => root
-------------
/bin/cp - 1 Times.
/bin/mv - 2 Times.
/usr/bin/repoman - 1 Times.
/usr/bin/yum - 1 Times.
==============================================================================
misc => root
------------
/bin/bash - 1 Times.
==============================================================================
nrpe => root
------------
/sbin/service - 288 Times.
---------------------- Sudo (secure-log) End -------------------------
--------------------- yum Begin ------------------------
Packages Updated:
glibc-2.12-1.149.el6_6.5.i686
glibc-common-2.12-1.149.el6_6.5.i686
glibc-devel-2.12-1.149.el6_6.5.i686
glibc-headers-2.12-1.149.el6_6.5.i686
---------------------- yum End -------------------------
--------------------- Disk Space Begin ------------------------
Filesystem Size Used Avail Use% Mounted on
/dev/xvda 97G 81G 16G 84% /
---------------------- Disk Space End -------------------------
###################### Logwatch End #########################
9 years, 10 months
Upgrade job is failing while upgrading from 3.4.4 to 3.5.2-snapshot:
by Sandro Bonazzola
Upgrade job is failing while upgrading from 3.4.4 to 3.5.2-snapshot:
2015-01-27 15:02:46 DEBUG otopi.plugins.ovirt_engine_setup.ovirt_engine.upgrade.asynctasks plugin.execute:866 execute-output:
('/usr/share/ovirt-engine/setup/dbutils/taskcleaner.sh', '-l', '/var/log/ovirt-engine/setup/ovirt-engine-setup-20150127150216-p4ixpj.log', '-u',
'engine', '-s', 'localhost', '-p', '5432', '-d', 'engine', '-R', '-A', '-J', '-q') stderr:
psql:/usr/share/ovirt-engine/setup/dbutils/taskcleaner_sp.sql:145: ERROR: type "command_entities" does not exist
FATAL: Cannot execute sql command: --file=/usr/share/ovirt-engine/setup/dbutils/taskcleaner_sp.sql
2015-01-27 15:02:46 DEBUG otopi.context context._executeMethod:152 method exception
Traceback (most recent call last):
File "/usr/lib/python2.6/site-packages/otopi/context.py", line 142, in _executeMethod
method['method']()
File "/usr/share/ovirt-engine/setup/bin/../plugins/ovirt-engine-setup/ovirt-engine/upgrade/asynctasks.py", line 422, in _validateZombies
self._clearZombieTasks()
File "/usr/share/ovirt-engine/setup/bin/../plugins/ovirt-engine-setup/ovirt-engine/upgrade/asynctasks.py", line 156, in _clearZombieTasks
'Failed to clear zombie tasks. Please access support '
RuntimeError: Failed to clear zombie tasks. Please access support in attempt to resolve the problem
2015-01-27 15:02:46 ERROR otopi.context context._executeMethod:161 Failed to execute stage 'Setup validation': Failed to clear zombie tasks. Please
access support in attempt to resolve the problem
Please fix ASAP.
Reference: http://jenkins.ovirt.org/job/ovirt-engine_3.5_upgrade-from-3.4_merged/lab...
--
Sandro Bonazzola
Better technology. Faster innovation. Powered by community collaboration.
See how it works at redhat.com
9 years, 10 months