Project

General

Profile

Actions

Bug #18401

closed

NoMethodError - undefined method `each' for nil:NilClass on complex tasks

Added by Klaas D about 7 years ago. Updated about 7 years ago.

Status:
Resolved
Priority:
Normal
Assignee:
-
Category:
-
Target version:
-
Difficulty:
Triaged:
Fixed in Releases:
Found in Releases:

Description

Hi,
I'm having an issue with complex remote execution tasks. If I run something like "echo test" with the "Run Command - SSH Default" template it works fine, if I run something more complex like upgrade to puppet4 it fails on a lot of hosts with "Error loading data from proxy: NoMethodError - undefined method `each' for nil:NilClass". I'm not sure if this is inside the task/dynflow part or in the remote execution part.

The commands I run:

if [ -e /etc/puppetlabs/puppet/puppet.conf ] ; then exit 0; fi
if ! yum info puppet-agent; then
  exit 1
fi
yum update -y puppet
mv /var/lib/puppet/ssl /etc/puppetlabs/puppet/
sed -i 's#/var/lib/puppet/ssl#/etc/puppetlabs/puppet/ssl#' /etc/puppet/puppet.conf.rpmsave
sed -i 's#/var/lib/puppet#/opt/puppetlabs/puppet/cache#' /etc/puppet/puppet.conf.rpmsave
sed -i 's#/var/run/puppet#/var/run/puppetlabs#' /etc/puppet/puppet.conf.rpmsave
sed -i 's#/var/log/puppet#/var/log/puppetlabs/puppet#' /etc/puppet/puppet.conf.rpmsave
mv -f /etc/puppet/puppet.conf.rpmsave /etc/puppetlabs/puppet/puppet.conf
/opt/puppetlabs/bin/puppet agent -t --no-noop
rm -rf /etc/puppet
rm -rf /var/lib/puppet

Example of a failed task that still returns "success":

Id: 145ee1fa-c808-42c7-b0ea-b3e192ef8a6f
Label: Actions::RemoteExecution::RunHostJob
Name: Remote action:
Owner: admin
Execution type: Delayed
Start at: 2017-02-06 09:47:49 +0100
Start before: -
Started at: 2017-02-06 09:47:49 +0100
Ended at: 2017-02-06 09:49:35 +0100
State: stopped
Result: success
Params: Run #!/bin/bash if [ -e /etc/puppetlabs/puppet/puppet.conf ] ; then exit 0; fi if ! yum info puppet-agent; then exit 1 fi yum update -y puppet mv /var/lib/puppet/ssl /etc/puppetlabs/puppet/ sed -i 's#/var/lib/puppet/ssl#/etc/puppetlabs/puppet/ssl on target.tld

Error loading data from proxy: NoMethodError - undefined method `each' for nil:NilClass

I see errors like this in my smart_proxy_dynflow_core.log that seem like they are related:

[2017-02-06 10:57:48.296 #45700] ERROR -- dynflow: SQLite3::BusyException: database is locked (Sequel::DatabaseError)
/opt/rh/sclo-ror42/root/usr/share/gems/gems/sqlite3-1.3.10/lib/sqlite3/statement.rb:108:in `step'
/opt/rh/sclo-ror42/root/usr/share/gems/gems/sqlite3-1.3.10/lib/sqlite3/statement.rb:108:in `block in each'
/opt/rh/sclo-ror42/root/usr/share/gems/gems/sqlite3-1.3.10/lib/sqlite3/statement.rb:107:in `loop'
/opt/rh/sclo-ror42/root/usr/share/gems/gems/sqlite3-1.3.10/lib/sqlite3/statement.rb:107:in `each'
/opt/rh/sclo-ror42/root/usr/share/gems/gems/sqlite3-1.3.10/lib/sqlite3/database.rb:158:in `to_a'
/opt/rh/sclo-ror42/root/usr/share/gems/gems/sqlite3-1.3.10/lib/sqlite3/database.rb:158:in `block in execute'
/opt/rh/sclo-ror42/root/usr/share/gems/gems/sqlite3-1.3.10/lib/sqlite3/database.rb:95:in `prepare'
/opt/rh/sclo-ror42/root/usr/share/gems/gems/sqlite3-1.3.10/lib/sqlite3/database.rb:134:in `execute'
/opt/theforeman/tfm/root/usr/share/gems/gems/sequel-4.20.0/lib/sequel/adapters/sqlite.rb:187:in `block (2 levels) in _execute'
/opt/theforeman/tfm/root/usr/share/gems/gems/sequel-4.20.0/lib/sequel/database/logging.rb:33:in `log_yield'
/opt/theforeman/tfm/root/usr/share/gems/gems/sequel-4.20.0/lib/sequel/adapters/sqlite.rb:187:in `block in _execute'
/opt/theforeman/tfm/root/usr/share/gems/gems/sequel-4.20.0/lib/sequel/database/connecting.rb:250:in `block in synchronize'
/opt/theforeman/tfm/root/usr/share/gems/gems/sequel-4.20.0/lib/sequel/connection_pool/threaded.rb:98:in `hold'
/opt/theforeman/tfm/root/usr/share/gems/gems/sequel-4.20.0/lib/sequel/database/connecting.rb:250:in `synchronize'
/opt/theforeman/tfm/root/usr/share/gems/gems/sequel-4.20.0/lib/sequel/adapters/sqlite.rb:178:in `_execute'
/opt/theforeman/tfm/root/usr/share/gems/gems/sequel-4.20.0/lib/sequel/adapters/sqlite.rb:149:in `execute_insert'
/opt/theforeman/tfm/root/usr/share/gems/gems/sequel-4.20.0/lib/sequel/dataset/actions.rb:927:in `execute_insert'
/opt/theforeman/tfm/root/usr/share/gems/gems/sequel-4.20.0/lib/sequel/dataset/actions.rb:336:in `insert'
/opt/theforeman/tfm/root/usr/share/gems/gems/dynflow-0.8.15/lib/dynflow/persistence_adapters/sequel.rb:240:in `block in save'
/opt/theforeman/tfm/root/usr/share/gems/gems/dynflow-0.8.15/lib/dynflow/persistence_adapters/sequel.rb:326:in `with_retry'
/opt/theforeman/tfm/root/usr/share/gems/gems/dynflow-0.8.15/lib/dynflow/persistence_adapters/sequel.rb:240:in `save'
/opt/theforeman/tfm/root/usr/share/gems/gems/dynflow-0.8.15/lib/dynflow/persistence_adapters/sequel.rb:80:in `save_execution_plan'
/opt/theforeman/tfm/root/usr/share/gems/gems/dynflow-0.8.15/lib/dynflow/persistence.rb:51:in `save_execution_plan'
/opt/theforeman/tfm/root/usr/share/gems/gems/dynflow-0.8.15/lib/dynflow/execution_plan.rb:338:in `save'
/opt/theforeman/tfm/root/usr/share/gems/gems/dynflow-0.8.15/lib/dynflow/execution_plan.rb:185:in `prepare'
/opt/theforeman/tfm/root/usr/share/gems/gems/dynflow-0.8.15/lib/dynflow/world.rb:167:in `block in plan'
/opt/theforeman/tfm/root/usr/share/gems/gems/dynflow-0.8.15/lib/dynflow/world.rb:166:in `tap'
/opt/theforeman/tfm/root/usr/share/gems/gems/dynflow-0.8.15/lib/dynflow/world.rb:166:in `plan'
/opt/theforeman/tfm/root/usr/share/gems/gems/dynflow-0.8.15/lib/dynflow/world.rb:142:in `trigger'
/opt/theforeman/tfm/root/usr/share/gems/gems/smart_proxy_dynflow_core-0.1.5/lib/smart_proxy_dynflow_core/helpers.rb:25:in `trigger_task'
/opt/theforeman/tfm/root/usr/share/gems/gems/smart_proxy_dynflow_core-0.1.5/lib/smart_proxy_dynflow_core/api.rb:16:in `block in <class:Api>'
/opt/rh/sclo-ror42/root/usr/share/gems/gems/sinatra-1.4.6/lib/sinatra/base.rb:1610:in `call'
/opt/rh/sclo-ror42/root/usr/share/gems/gems/sinatra-1.4.6/lib/sinatra/base.rb:1610:in `block in compile!'
/opt/rh/sclo-ror42/root/usr/share/gems/gems/sinatra-1.4.6/lib/sinatra/base.rb:974:in `[]'
/opt/rh/sclo-ror42/root/usr/share/gems/gems/sinatra-1.4.6/lib/sinatra/base.rb:974:in `block (3 levels) in route!'
/opt/rh/sclo-ror42/root/usr/share/gems/gems/sinatra-1.4.6/lib/sinatra/base.rb:993:in `route_eval'
/opt/rh/sclo-ror42/root/usr/share/gems/gems/sinatra-1.4.6/lib/sinatra/base.rb:974:in `block (2 levels) in route!'
/opt/rh/sclo-ror42/root/usr/share/gems/gems/sinatra-1.4.6/lib/sinatra/base.rb:1014:in `block in process_route'
/opt/rh/sclo-ror42/root/usr/share/gems/gems/sinatra-1.4.6/lib/sinatra/base.rb:1012:in `catch'
/opt/rh/sclo-ror42/root/usr/share/gems/gems/sinatra-1.4.6/lib/sinatra/base.rb:1012:in `process_route'
/opt/rh/sclo-ror42/root/usr/share/gems/gems/sinatra-1.4.6/lib/sinatra/base.rb:972:in `block in route!'
/opt/rh/sclo-ror42/root/usr/share/gems/gems/sinatra-1.4.6/lib/sinatra/base.rb:971:in `each'
/opt/rh/sclo-ror42/root/usr/share/gems/gems/sinatra-1.4.6/lib/sinatra/base.rb:971:in `route!'
/opt/rh/sclo-ror42/root/usr/share/gems/gems/sinatra-1.4.6/lib/sinatra/base.rb:1084:in `block in dispatch!'
/opt/rh/sclo-ror42/root/usr/share/gems/gems/sinatra-1.4.6/lib/sinatra/base.rb:1066:in `block in invoke'
/opt/rh/sclo-ror42/root/usr/share/gems/gems/sinatra-1.4.6/lib/sinatra/base.rb:1066:in `catch'
/opt/rh/sclo-ror42/root/usr/share/gems/gems/sinatra-1.4.6/lib/sinatra/base.rb:1066:in `invoke'
/opt/rh/sclo-ror42/root/usr/share/gems/gems/sinatra-1.4.6/lib/sinatra/base.rb:1081:in `dispatch!'
/opt/rh/sclo-ror42/root/usr/share/gems/gems/sinatra-1.4.6/lib/sinatra/base.rb:906:in `block in call!'
/opt/rh/sclo-ror42/root/usr/share/gems/gems/sinatra-1.4.6/lib/sinatra/base.rb:1066:in `block in invoke'
/opt/rh/sclo-ror42/root/usr/share/gems/gems/sinatra-1.4.6/lib/sinatra/base.rb:1066:in `catch'
/opt/rh/sclo-ror42/root/usr/share/gems/gems/sinatra-1.4.6/lib/sinatra/base.rb:1066:in `invoke'
/opt/rh/sclo-ror42/root/usr/share/gems/gems/sinatra-1.4.6/lib/sinatra/base.rb:906:in `call!'
/opt/rh/sclo-ror42/root/usr/share/gems/gems/sinatra-1.4.6/lib/sinatra/base.rb:894:in `call'
/opt/rh/sclo-ror42/root/usr/share/gems/gems/rack-protection-1.5.3/lib/rack/protection/xss_header.rb:18:in `call'
/opt/rh/sclo-ror42/root/usr/share/gems/gems/rack-protection-1.5.3/lib/rack/protection/path_traversal.rb:16:in `call'
/opt/rh/sclo-ror42/root/usr/share/gems/gems/rack-protection-1.5.3/lib/rack/protection/json_csrf.rb:18:in `call'
/opt/rh/sclo-ror42/root/usr/share/gems/gems/rack-protection-1.5.3/lib/rack/protection/base.rb:49:in `call'
/opt/rh/sclo-ror42/root/usr/share/gems/gems/rack-protection-1.5.3/lib/rack/protection/base.rb:49:in `call'
/opt/rh/sclo-ror42/root/usr/share/gems/gems/rack-protection-1.5.3/lib/rack/protection/frame_options.rb:31:in `call'
/opt/rh/sclo-ror42/root/usr/share/gems/gems/rack-1.6.2/lib/rack/nulllogger.rb:9:in `call'
/opt/rh/sclo-ror42/root/usr/share/gems/gems/rack-1.6.2/lib/rack/head.rb:13:in `call'
/opt/rh/sclo-ror42/root/usr/share/gems/gems/sinatra-1.4.6/lib/sinatra/show_exceptions.rb:21:in `call'
/opt/rh/sclo-ror42/root/usr/share/gems/gems/sinatra-1.4.6/lib/sinatra/base.rb:181:in `call'
/opt/rh/sclo-ror42/root/usr/share/gems/gems/sinatra-1.4.6/lib/sinatra/base.rb:2021:in `call'
/opt/rh/sclo-ror42/root/usr/share/gems/gems/sinatra-1.4.6/lib/sinatra/base.rb:1486:in `block in call'
/opt/rh/sclo-ror42/root/usr/share/gems/gems/sinatra-1.4.6/lib/sinatra/base.rb:1795:in `synchronize'
/opt/rh/sclo-ror42/root/usr/share/gems/gems/sinatra-1.4.6/lib/sinatra/base.rb:1486:in `call'
/opt/rh/sclo-ror42/root/usr/share/gems/gems/rack-1.6.2/lib/rack/urlmap.rb:66:in `block in call'
/opt/rh/sclo-ror42/root/usr/share/gems/gems/rack-1.6.2/lib/rack/urlmap.rb:50:in `each'
/opt/rh/sclo-ror42/root/usr/share/gems/gems/rack-1.6.2/lib/rack/urlmap.rb:50:in `call'
/opt/rh/sclo-ror42/root/usr/share/gems/gems/rack-1.6.2/lib/rack/builder.rb:153:in `call'
/opt/rh/sclo-ror42/root/usr/share/gems/gems/rack-1.6.2/lib/rack/handler/webrick.rb:88:in `service'
/opt/rh/rh-ruby22/root/usr/share/ruby/webrick/httpserver.rb:138:in `service'
/opt/rh/rh-ruby22/root/usr/share/ruby/webrick/httpserver.rb:94:in `run'
/opt/rh/rh-ruby22/root/usr/share/ruby/webrick/server.rb:294:in `block in start_thread'
[2017-02-06 10:57:48.296 #45700] ERROR -- dynflow: Persistence retry no. 1

How can I debug this better? Setting loglevel to debug in smart-proxy config didn't show much more.

Greetings
Klaas

Actions #1

Updated by Klaas D about 7 years ago

if I put the dynflow db into memory the locked db errors disappear but rex is still throwing the same error

Actions #2

Updated by Klaas D about 7 years ago

okay I think I figured out why its happening - if I send "true ; true" as command it also fails - so I guess you can't use ; when using remote execution

Actions #3

Updated by Klaas D about 7 years ago

scratch that, its the no output part that breaks it :D

Actions #4

Updated by Klaas D about 7 years ago

katello-3.2.2-1.el7.noarch
foreman-1.13.4-1.el7.noarch
tfm-rubygem-foreman_remote_execution-1.2.2-1.fm1_13.el7.noarch
tfm-rubygem-foreman_remote_execution_core-1.0.2-1.fm1_13.el7.noarch
rubygem-smart_proxy_remote_execution_ssh-0.1.4-1.el7.noarch

Actions #5

Updated by Klaas D about 7 years ago

inecas asked me to update the report with some more information:

A list of installed packages

acl-2.2.51-12.el7.x86_64
aic94xx-firmware-30-6.el7.noarch
alsa-firmware-1.0.28-2.el7.noarch
alsa-lib-1.1.1-1.el7.x86_64
alsa-tools-firmware-1.1.0-1.el7.x86_64
apache-commons-collections-3.2.1-22.el7_2.noarch
apache-commons-daemon-1.0.13-6.el7.x86_64
apache-commons-dbcp-1.4-17.el7.noarch
apache-commons-logging-1.1.2-7.el7.noarch
apache-commons-pool-1.6-9.el7.noarch
apr-1.4.8-3.el7.x86_64
apr-util-1.5.2-6.el7.x86_64
at-3.1.13-22.el7.x86_64
atk-2.14.0-1.el7.x86_64
audit-2.6.5-3.el7.x86_64
audit-libs-2.6.5-3.el7.x86_64
audit-libs-python-2.6.5-3.el7.x86_64
augeas-1.4.0-2.el7.x86_64
augeas-libs-1.4.0-2.el7.x86_64
authconfig-6.2.8-14.el7.x86_64
autofs-5.0.7-56.el7.x86_64
autogen-libopts-5.18-5.el7.x86_64
avahi-autoipd-0.6.31-17.el7.x86_64
avahi-libs-0.6.31-17.el7.x86_64
avalon-framework-4.3-10.el7.noarch
avalon-logkit-2.1-14.el7.noarch
basesystem-10.0-7.el7.noarch
bash-4.2.46-21.el7_3.x86_64
bash-completion-2.1-6.el7.noarch
bc-1.06.95-13.el7.x86_64
bind-libs-9.9.4-38.el7_3.1.x86_64
bind-libs-lite-9.9.4-38.el7_3.1.x86_64
bind-license-9.9.4-38.el7_3.1.noarch
bind-utils-9.9.4-38.el7_3.1.x86_64
binutils-2.25.1-22.base.el7.x86_64
biosdevname-0.7.2-1.el7.x86_64
boost-1.53.0-26.el7.x86_64
boost-atomic-1.53.0-26.el7.x86_64
boost-chrono-1.53.0-26.el7.x86_64
boost-context-1.53.0-26.el7.x86_64
boost-date-time-1.53.0-26.el7.x86_64
boost-devel-1.53.0-26.el7.x86_64
boost-filesystem-1.53.0-26.el7.x86_64
boost-graph-1.53.0-26.el7.x86_64
boost-iostreams-1.53.0-26.el7.x86_64
boost-locale-1.53.0-26.el7.x86_64
boost-math-1.53.0-26.el7.x86_64
boost-program-options-1.53.0-26.el7.x86_64
boost-python-1.53.0-26.el7.x86_64
boost-random-1.53.0-26.el7.x86_64
boost-regex-1.53.0-26.el7.x86_64
boost-serialization-1.53.0-26.el7.x86_64
boost-signals-1.53.0-26.el7.x86_64
boost-system-1.53.0-26.el7.x86_64
boost-test-1.53.0-26.el7.x86_64
boost-thread-1.53.0-26.el7.x86_64
boost-timer-1.53.0-26.el7.x86_64
boost-wave-1.53.0-26.el7.x86_64
btrfs-progs-4.4.1-1.el7.x86_64
bzip2-1.0.6-13.el7.x86_64
bzip2-libs-1.0.6-13.el7.x86_64
ca-certificates-2015.2.6-73.el7.noarch
cairo-1.14.2-1.el7.x86_64
candlepin-0.9.54.6-1.el7.noarch
candlepin-selinux-0.9.54.6-1.el7.noarch
c-ares-1.10.0-3.el7.x86_64
centos-release-scl-2-2.el7.centos.noarch
centos-release-scl-rh-2-2.el7.centos.noarch
checkpolicy-2.5-4.el7.x86_64
chkconfig-1.7.2-1.el7.x86_64
colordiff-1.0.13-2.el7.noarch
compat-libcap1-1.10-7.el7.x86_64
compat-libstdc++-33-3.2.3-72.el7.x86_64
copy-jdk-configs-1.2-1.el7.noarch
coreutils-8.22-18.el7.x86_64
cpio-2.11-24.el7.x86_64
cpp-4.8.5-11.el7.x86_64
cracklib-2.9.0-11.el7.x86_64
cracklib-dicts-2.9.0-11.el7.x86_64
createrepo-0.9.9-26.el7.noarch
createrepo_c-0.9.0-1.el7.x86_64
createrepo_c-libs-0.9.0-1.el7.x86_64
cronie-1.4.11-14.el7_2.1.x86_64
cronie-anacron-1.4.11-14.el7_2.1.x86_64
crontabs-1.11-6.20121102git.el7.noarch
cryptsetup-libs-1.7.2-1.el7.x86_64
cups-client-1.6.3-26.el7.x86_64
cups-libs-1.6.3-26.el7.x86_64
curl-7.29.0-35.el7.x86_64
cyrus-sasl-2.1.26-20.el7_2.x86_64
cyrus-sasl-gssapi-2.1.26-20.el7_2.x86_64
cyrus-sasl-lib-2.1.26-20.el7_2.x86_64
cyrus-sasl-plain-2.1.26-20.el7_2.x86_64
dbus-1.6.12-17.el7.x86_64
dbus-glib-0.100-7.el7.x86_64
dbus-libs-1.6.12-17.el7.x86_64
dbus-python-1.1.1-9.el7.x86_64
deltarpm-3.6-3.el7.x86_64
foreman.tld-apache-1.0-1.noarch
foreman.tld-foreman-client-1.0-1.noarch
foreman.tld-foreman-proxy-1.0-1.noarch
foreman.tld-foreman-proxy-client-1.0-1.noarch
foreman.tld-puppet-client-1.0-1.noarch
foreman.tld-qpid-broker-1.0-1.noarch
foreman.tld-qpid-client-cert-1.0-1.noarch
foreman.tld-qpid-router-client-1.0-1.noarch
foreman.tld-qpid-router-server-1.0-1.noarch
desktop-file-utils-0.22-1.el7.x86_64
device-mapper-1.02.135-1.el7_3.2.x86_64
device-mapper-event-1.02.135-1.el7_3.2.x86_64
device-mapper-event-libs-1.02.135-1.el7_3.2.x86_64
device-mapper-libs-1.02.135-1.el7_3.2.x86_64
device-mapper-persistent-data-0.6.3-1.el7.x86_64
dhclient-4.2.5-47.el7.x86_64
dhcp-common-4.2.5-47.el7.x86_64
dhcp-libs-4.2.5-47.el7.x86_64
diffutils-3.3-4.el7.x86_64
dmidecode-3.0-2.el7.x86_64
dnsmasq-2.66-21.el7.x86_64
dracut-033-463.el7.x86_64
dracut-config-rescue-033-463.el7.x86_64
dracut-network-033-463.el7.x86_64
dwz-0.11-3.el7.x86_64
e2fsprogs-1.42.9-9.el7.x86_64
e2fsprogs-libs-1.42.9-9.el7.x86_64
ebtables-2.0.10-15.el7.x86_64
ecj-4.2.1-8.el7.x86_64
ed-1.9-4.el7.x86_64
elfutils-0.166-2.el7.x86_64
elfutils-libelf-0.166-2.el7.x86_64
elfutils-libs-0.166-2.el7.x86_64
emacs-filesystem-24.3-18.el7.noarch
epel-release-7-9.noarch
ethtool-4.5-3.el7.x86_64
expat-2.1.0-10.el7_3.x86_64
file-5.11-33.el7.x86_64
file-libs-5.11-33.el7.x86_64
filesystem-3.2-21.el7.x86_64
findutils-4.5.11-5.el7.x86_64
fipscheck-1.4.1-5.el7.x86_64
fipscheck-lib-1.4.1-5.el7.x86_64
firewalld-0.4.3.2-8.1.el7_3.noarch
firewalld-filesystem-0.4.3.2-8.1.el7_3.noarch
flac-libs-1.3.0-5.el7_1.x86_64
fontconfig-2.10.95-10.el7.x86_64
fontpackages-filesystem-1.44-8.el7.noarch
foreman-1.13.4-1.el7.noarch
foreman-compute-1.13.4-1.el7.noarch
foreman-debug-1.13.4-1.el7.noarch
foreman-installer-1.13.4-1.el7.noarch
foreman-installer-katello-3.2.3-1.el7.noarch
foreman-postgresql-1.13.4-1.el7.noarch
foreman-proxy-1.13.4-1.el7.noarch
foreman-release-1.13.4-1.el7.noarch
foreman-release-scl-3-1.el7.noarch
foreman-selinux-1.13.4-1.el7.noarch
foreman-vmware-1.13.4-1.el7.noarch
freetype-2.4.11-12.el7.x86_64
fuse-2.9.2-7.el7.x86_64
fuse-libs-2.9.2-7.el7.x86_64
fxload-2002_04_11-16.el7.x86_64
gawk-4.0.2-4.el7.x86_64
gcc-4.8.5-11.el7.x86_64
gcc-c++-4.8.5-11.el7.x86_64
GConf2-3.2.6-8.el7.x86_64
gdb-7.6.1-94.el7.x86_64
gdbm-1.10-8.el7.x86_64
gdk-pixbuf2-2.31.6-3.el7.x86_64
genisoimage-1.1.11-23.el7.x86_64
GeoIP-1.5.0-11.el7.x86_64
geronimo-jms-1.1.1-19.el7.noarch
geronimo-jta-1.1.1-17.el7.noarch
gettext-0.18.2.1-4.el7.x86_64
gettext-libs-0.18.2.1-4.el7.x86_64
giflib-4.1.6-9.el7.x86_64
git-1.8.3.1-6.el7_2.1.x86_64
glib2-2.46.2-4.el7.x86_64
glibc-2.17-157.el7_3.1.i686
glibc-2.17-157.el7_3.1.x86_64
glibc-common-2.17-157.el7_3.1.x86_64
glibc-devel-2.17-157.el7_3.1.x86_64
glibc-headers-2.17-157.el7_3.1.x86_64
glib-networking-2.42.0-1.el7.x86_64
gmp-6.0.0-12.el7_1.x86_64
gnupg2-2.0.22-4.el7.x86_64
gnutls-3.3.24-1.el7.x86_64
gobject-introspection-1.42.0-1.el7.x86_64
gofer-2.7.6-1.el7.noarch
gperftools-libs-2.4-8.el7.x86_64
gpgme-1.3.2-5.el7.x86_64
gpm-libs-1.20.7-5.el7.x86_64
graphite2-1.3.6-1.el7_2.x86_64
grep-2.20-2.el7.x86_64
groff-base-1.22.2-8.el7.x86_64
grub2-2.02-0.44.el7.x86_64
grub2-efi-2.02-0.44.el7.x86_64
grub2-efi-modules-2.02-0.44.el7.x86_64
grub2-tools-2.02-0.44.el7.x86_64
grubby-8.28-18.el7.x86_64
gsettings-desktop-schemas-3.14.2-1.el7.x86_64
gsm-1.0.13-11.el7.x86_64
gssproxy-0.4.1-13.el7.x86_64
gtk2-2.24.28-8.el7.x86_64
gzip-1.5-8.el7.x86_64
hardlink-1.0-19.el7.x86_64
harfbuzz-0.9.36-1.el7.x86_64
hesiod-3.2.1-3.el7.x86_64
hicolor-icon-theme-0.12-7.el7.noarch
hiera-1.3.4-5.el7.noarch
hostname-3.13-3.el7.x86_64
httpd-2.4.6-45.el7.x86_64
httpd-tools-2.4.6-45.el7.x86_64
hwdata-0.252-8.4.el7.x86_64
iftop-1.0-0.12.pre4.el7.x86_64
info-5.1-4.el7.x86_64
initscripts-9.49.37-1.el7.x86_64
iotop-0.6-2.el7.noarch
ipmitool-1.8.15-7.el7.x86_64
iproute-3.10.0-74.el7.x86_64
iprutils-2.4.13.1-1.el7.x86_64
ipset-6.19-6.el7.x86_64
ipset-libs-6.19-6.el7.x86_64
iptables-1.4.21-17.el7.x86_64
iputils-20160308-8.el7.x86_64
irqbalance-1.0.7-6.el7.x86_64
ivtv-firmware-20080701-26.el7.noarch
iwl1000-firmware-39.31.5.1-49.el7.noarch
iwl100-firmware-39.31.5.1-49.el7.noarch
iwl105-firmware-18.168.6.1-49.el7.noarch
iwl135-firmware-18.168.6.1-49.el7.noarch
iwl2000-firmware-18.168.6.1-49.el7.noarch
iwl2030-firmware-18.168.6.1-49.el7.noarch
iwl3160-firmware-22.0.7.0-49.el7.noarch
iwl3945-firmware-15.32.2.9-49.el7.noarch
iwl4965-firmware-228.61.2.24-49.el7.noarch
iwl5000-firmware-8.83.5.1_1-49.el7.noarch
iwl5150-firmware-8.24.2.2-49.el7.noarch
iwl6000-firmware-9.221.4.1-49.el7.noarch
iwl6000g2a-firmware-17.168.5.3-49.el7.noarch
iwl6000g2b-firmware-17.168.5.2-49.el7.noarch
iwl6050-firmware-41.28.5.1-49.el7.noarch
iwl7260-firmware-22.0.7.0-49.el7.noarch
iwl7265-firmware-22.0.7.0-49.el7.noarch
jansson-2.4-6.el7.x86_64
jasper-libs-1.900.1-29.el7.x86_64
java-1.7.0-openjdk-1.7.0.121-2.6.8.0.el7_3.x86_64
java-1.7.0-openjdk-headless-1.7.0.121-2.6.8.0.el7_3.x86_64
java-1.8.0-openjdk-headless-1.8.0.121-0.b13.el7_3.x86_64
java-client-1.0-1.noarch
javamail-1.4.6-8.el7.noarch
javapackages-tools-3.4.1-11.el7.noarch
jbigkit-libs-2.0-11.el7.x86_64
json-c-0.11-4.el7_0.x86_64
katello-3.2.2-1.el7.noarch
katello-agent-2.7.0-1.el7.noarch
katello-agent-fact-plugin-2.7.0-1.el7.noarch
katello-ca-consumer-foreman.tld-1.0-1.noarch
katello-certs-tools-2.4.0-1.el7.noarch
katello-client-bootstrap-1.1.0-1.el7.noarch
katello-common-3.2.2-1.el7.noarch
katello-debug-3.2.2-1.el7.noarch
katello-default-ca-1.0-1.noarch
katello-installer-base-3.2.3-1.el7.noarch
katello-repos-3.2.0-4.el7.noarch
katello-selinux-3.0.1-1.el7.noarch
katello-server-ca-1.0-1.noarch
katello-service-3.2.2-1.el7.noarch
kbd-1.15.5-12.el7.x86_64
kbd-legacy-1.15.5-12.el7.noarch
kbd-misc-1.15.5-12.el7.noarch
kernel-3.10.0-514.2.2.el7.x86_64
kernel-3.10.0-514.6.1.el7.x86_64
kernel-3.10.0-514.el7.x86_64
kernel-headers-3.10.0-514.6.1.el7.x86_64
kernel-tools-3.10.0-514.6.1.el7.x86_64
kernel-tools-libs-3.10.0-514.6.1.el7.x86_64
kexec-tools-2.0.7-50.el7.x86_64
keyutils-1.5.8-3.el7.x86_64
keyutils-libs-1.5.8-3.el7.x86_64
kmod-20-9.el7.x86_64
kmod-libs-20-9.el7.x86_64
kpartx-0.4.9-99.el7_3.1.x86_64
krb5-libs-1.14.1-27.el7_3.x86_64
ksh-20120801-26.el7.x86_64
less-458-9.el7.x86_64
lgtoclnt-8.2.0.5-1.x86_64
libacl-2.2.51-12.el7.x86_64
libaio-0.3.109-13.el7.x86_64
libassuan-2.1.0-3.el7.x86_64
libasyncns-0.8-7.el7.x86_64
libattr-2.4.46-12.el7.x86_64
libbasicobjects-0.1.1-27.el7.x86_64
libblkid-2.23.2-33.el7.x86_64
libcap-2.22-8.el7.x86_64
libcap-ng-0.7.5-4.el7.x86_64
libcgroup-0.41-11.el7.x86_64
libcollection-0.6.2-27.el7.x86_64
libcom_err-1.42.9-9.el7.x86_64
libcroco-0.6.8-5.el7.x86_64
libcurl-7.29.0-35.el7.x86_64
libdaemon-0.14-7.el7.x86_64
libdb4-4.8.30-13.el7.x86_64
libdb4-cxx-4.8.30-13.el7.x86_64
libdb-5.3.21-19.el7.x86_64
libdb-cxx-5.3.21-19.el7.x86_64
libdb-utils-5.3.21-19.el7.x86_64
libdhash-0.4.3-27.el7.x86_64
libdnet-1.12-13.1.el7.x86_64
libdrm-2.4.67-3.el7.x86_64
libecap-1.0.0-1.el7.x86_64
libedit-3.0-12.20121213cvs.el7.x86_64
libeio-4.19-4.el7.x86_64
libestr-0.1.9-2.el7.x86_64
libev-4.15-6.el7.x86_64
libevent-2.0.21-4.el7.x86_64
libffi-3.0.13-18.el7.x86_64
libfontenc-1.1.2-3.el7.x86_64
libgcc-4.8.5-11.el7.x86_64
libgcrypt-1.5.3-13.el7_3.1.x86_64
libgnome-keyring-3.8.0-3.el7.x86_64
libgomp-4.8.5-11.el7.x86_64
libgpg-error-1.12-3.el7.x86_64
libgudev1-219-30.el7_3.6.x86_64
libICE-1.0.9-2.el7.x86_64
libicu-50.1.2-15.el7.x86_64
libidn-1.28-4.el7.x86_64
libini_config-1.3.0-27.el7.x86_64
libipa_hbac-1.14.0-43.el7_3.11.x86_64
libjpeg-turbo-1.2.90-5.el7.x86_64
libkadm5-1.14.1-27.el7_3.x86_64
libldb-1.1.26-1.el7.x86_64
libmnl-1.0.3-7.el7.x86_64
libmodman-2.0.1-8.el7.x86_64
libmount-2.23.2-33.el7.x86_64
libmpc-1.0.1-3.el7.x86_64
libmspack-0.5-0.4.alpha.el7.x86_64
libndp-1.2-7.el7.x86_64
libnetfilter_conntrack-1.0.4-2.el7.x86_64
libnfnetlink-1.0.1-4.el7.x86_64
libnfsidmap-0.25-15.el7.x86_64
libnl-1.1.4-3.el7.x86_64
libnl3-3.2.28-3.el7_3.x86_64
libnl3-cli-3.2.28-3.el7_3.x86_64
libogg-1.3.0-7.el7.x86_64
libpath_utils-0.2.1-27.el7.x86_64
libpcap-1.5.3-8.el7.x86_64
libpciaccess-0.13.4-3.el7_3.x86_64
libpipeline-1.2.3-3.el7.x86_64
libpng-1.5.13-7.el7_2.x86_64
libproxy-0.4.11-10.el7.x86_64
libpwquality-1.2.3-4.el7.x86_64
libref_array-0.1.5-27.el7.x86_64
libselinux-2.5-6.el7.x86_64
libselinux-python-2.5-6.el7.x86_64
libselinux-ruby-2.5-6.el7.x86_64
libselinux-utils-2.5-6.el7.x86_64
libsemanage-2.5-5.1.el7_3.x86_64
libsemanage-python-2.5-5.1.el7_3.x86_64
libsepol-2.5-6.el7.x86_64
libSM-1.2.2-2.el7.x86_64
libsmbclient-4.4.4-12.el7_3.x86_64
libsndfile-1.0.25-10.el7.x86_64
libsoup-2.48.1-6.el7.x86_64
libss-1.42.9-9.el7.x86_64
libssh2-1.4.3-10.el7_2.1.x86_64
libsss_autofs-1.14.0-43.el7_3.11.x86_64
libsss_idmap-1.14.0-43.el7_3.11.x86_64
libsss_nss_idmap-1.14.0-43.el7_3.11.x86_64
libsss_sudo-1.14.0-43.el7_3.11.x86_64
libstdc++-4.8.5-11.el7.x86_64
libstdc++-devel-4.8.5-11.el7.x86_64
libstemmer-0-2.585svn.el7.x86_64
libsysfs-2.1.0-16.el7.x86_64
libtalloc-2.1.6-1.el7.x86_64
libtasn1-3.8-3.el7.x86_64
libtdb-1.3.8-1.el7_2.x86_64
libteam-1.25-4.el7.x86_64
libtevent-0.9.28-1.el7.x86_64
libthai-0.1.14-9.el7.x86_64
libtiff-4.0.3-25.el7_2.x86_64
libtirpc-0.2.4-0.8.el7.x86_64
libtool-ltdl-2.4.2-21.el7_2.x86_64
libunistring-0.9.3-9.el7.x86_64
libunwind-1.1-5.el7_2.2.x86_64
libusal-1.1.11-23.el7.x86_64
libuser-0.60-7.el7_1.x86_64
libutempter-1.1.6-4.el7.x86_64
libuuid-2.23.2-33.el7.x86_64
libuuid-devel-2.23.2-33.el7.x86_64
libverto-0.2.5-4.el7.x86_64
libverto-tevent-0.2.5-4.el7.x86_64
libvorbis-1.3.3-8.el7.x86_64
libwbclient-4.4.4-12.el7_3.x86_64
libwebp-0.3.0-3.el7.x86_64
libX11-1.6.3-3.el7.x86_64
libX11-common-1.6.3-3.el7.noarch
libXau-1.0.8-2.1.el7.x86_64
libxcb-1.11-4.el7.x86_64
libXcomposite-0.4.4-4.1.el7.x86_64
libXcursor-1.1.14-2.1.el7.x86_64
libXdamage-1.1.4-4.1.el7.x86_64
libXext-1.3.3-3.el7.x86_64
libXfixes-5.0.1-2.1.el7.x86_64
libXfont-1.5.1-2.el7.x86_64
libXft-2.3.2-2.el7.x86_64
libXi-1.7.4-2.el7.x86_64
libXinerama-1.1.3-2.1.el7.x86_64
libxml2-2.9.1-6.el7_2.3.x86_64
libxml2-python-2.9.1-6.el7_2.3.x86_64
libXrandr-1.4.2-2.el7.x86_64
libXrender-0.9.8-2.1.el7.x86_64
libxshmfence-1.2-1.el7.x86_64
libxslt-1.1.28-5.el7.x86_64
libXtst-1.2.2-2.1.el7.x86_64
libXxf86vm-1.1.3-2.1.el7.x86_64
libyaml-0.1.4-11.el7_0.x86_64
linux-firmware-20160830-49.git7534e19.el7.noarch
liquibase-3.1.0-1.el7.noarch
lksctp-tools-1.0.17-2.el7.x86_64
log4j-1.2.17-15.el7.noarch
logrotate-3.8.6-12.el7.x86_64
lsof-4.87-4.el7.x86_64
lsscsi-0.27-4.el7.x86_64
lua-5.1.4-15.el7.x86_64
lua-bitop-1.0.2-3.el7.x86_64
lua-posix-32-2.el7.x86_64
lvm2-2.02.166-1.el7_3.2.x86_64
lvm2-libs-2.02.166-1.el7_3.2.x86_64
lzo-2.06-8.el7.x86_64
m2crypto-0.21.1-17.el7.x86_64
m4-1.4.16-10.el7.x86_64
mailcap-2.1.41-2.el7.noarch
mailx-12.5-12.el7_0.x86_64
make-3.82-23.el7.x86_64
man-db-2.6.3-9.el7.x86_64
mariadb-libs-5.5.52-1.el7.x86_64
mesa-libEGL-11.2.2-2.20160614.el7.x86_64
mesa-libgbm-11.2.2-2.20160614.el7.x86_64
mesa-libGL-11.2.2-2.20160614.el7.x86_64
mesa-libglapi-11.2.2-2.20160614.el7.x86_64
microcode_ctl-2.1-16.1.el7_3.x86_64
mlocate-0.26-6.el7.x86_64
mod_passenger-4.0.53-4.el7.x86_64
mod_ssl-2.4.6-45.el7.x86_64
mod_wsgi-3.4-12.el7_0.x86_64
mod_xsendfile-0.12-10.el7.x86_64
mokutil-0.9-2.el7.x86_64
mongodb-2.6.12-4.el7.x86_64
mongodb-server-2.6.12-4.el7.x86_64
mozjs17-17.0.0-19.el7.x86_64
mpfr-3.1.1-4.el7.x86_64
mtools-4.0.18-5.el7.x86_64
ncdu-1.12-2.el7.x86_64
ncurses-5.9-13.20130511.el7.x86_64
ncurses-base-5.9-13.20130511.el7.noarch
ncurses-libs-5.9-13.20130511.el7.x86_64
nettle-2.7.1-8.el7.x86_64
net-tools-2.0-0.17.20131004git.el7.x86_64
NetworkManager-1.4.0-14.el7_3.x86_64
NetworkManager-config-server-1.4.0-14.el7_3.x86_64
NetworkManager-libnm-1.4.0-14.el7_3.x86_64
NetworkManager-team-1.4.0-14.el7_3.x86_64
NetworkManager-tui-1.4.0-14.el7_3.x86_64
newt-0.52.15-4.el7.x86_64
newt-python-0.52.15-4.el7.x86_64
nfs-utils-1.3.0-0.33.el7.x86_64
nspr-4.11.0-1.el7_2.x86_64
nss-3.21.3-2.el7_3.x86_64
nss-softokn-3.16.2.3-14.4.el7.x86_64
nss-softokn-freebl-3.16.2.3-14.4.el7.i686
nss-softokn-freebl-3.16.2.3-14.4.el7.x86_64
nss-sysinit-3.21.3-2.el7_3.x86_64
nss-tools-3.21.3-2.el7_3.x86_64
nss-util-3.21.3-1.1.el7_3.x86_64
ntp-4.2.6p5-25.el7.x86_64
ntpdate-4.2.6p5-25.el7.x86_64
numactl-libs-2.0.9-6.el7_2.x86_64
OpenIPMI-modalias-2.0.19-15.el7.x86_64
openldap-2.4.40-13.el7.x86_64
openldap-clients-2.4.40-13.el7.x86_64
openssh-6.6.1p1-33.el7_3.x86_64
openssh-clients-6.6.1p1-33.el7_3.x86_64
openssh-server-6.6.1p1-33.el7_3.x86_64
openssl-1.0.1e-60.el7.x86_64
openssl-libs-1.0.1e-60.el7.x86_64
open-vm-tools-10.0.5-2.el7.x86_64
os-prober-1.58-9.el7.x86_64
p11-kit-0.20.7-3.el7.x86_64
p11-kit-trust-0.20.7-3.el7.x86_64
pam-1.1.8-18.el7.x86_64
pango-1.36.8-2.el7.x86_64
parted-3.1-28.el7.x86_64
passenger-4.0.53-4.el7.x86_64
passwd-0.79-4.el7.x86_64
patch-2.7.1-8.el7.x86_64
pciutils-3.5.1-1.el7.x86_64
pciutils-libs-3.5.1-1.el7.x86_64
pcre-8.32-15.el7_2.1.x86_64
pcsc-lite-libs-1.8.8-6.el7.x86_64
perf-3.10.0-514.6.1.el7.x86_64
perl-5.16.3-291.el7.x86_64
perl-Carp-1.26-244.el7.noarch
perl-Compress-Raw-Bzip2-2.061-3.el7.x86_64
perl-Compress-Raw-Zlib-2.061-4.el7.x86_64
perl-constant-1.27-2.el7.noarch
perl-Data-Dumper-2.145-3.el7.x86_64
perl-DBI-1.627-4.el7.x86_64
perl-Digest-1.17-245.el7.noarch
perl-Digest-MD5-2.52-3.el7.x86_64
perl-Encode-2.51-7.el7.x86_64
perl-Error-0.17020-2.el7.noarch
perl-Exporter-5.68-3.el7.noarch
perl-File-Path-2.09-2.el7.noarch
perl-File-Temp-0.23.01-3.el7.noarch
perl-Filter-1.49-3.el7.x86_64
perl-Getopt-Long-2.40-2.el7.noarch
perl-Git-1.8.3.1-6.el7_2.1.noarch
perl-HTTP-Tiny-0.033-3.el7.noarch
perl-IO-Compress-2.061-2.el7.noarch
perl-libs-5.16.3-291.el7.x86_64
perl-macros-5.16.3-291.el7.x86_64
perl-Net-Daemon-0.48-5.el7.noarch
perl-parent-0.225-244.el7.noarch
perl-PathTools-3.40-5.el7.x86_64
perl-PlRPC-0.2020-14.el7.noarch
perl-Pod-Escapes-1.04-291.el7.noarch
perl-podlators-2.5.1-3.el7.noarch
perl-Pod-Perldoc-3.20-4.el7.noarch
perl-Pod-Simple-3.28-4.el7.noarch
perl-Pod-Usage-1.63-3.el7.noarch
perl-Scalar-List-Utils-1.27-248.el7.x86_64
perl-Socket-2.010-4.el7.x86_64
perl-srpm-macros-1-8.el7.noarch
perl-Storable-2.45-3.el7.x86_64
perl-TermReadKey-2.30-20.el7.x86_64
perl-Text-ParseWords-3.29-4.el7.noarch
perl-Thread-Queue-3.02-2.el7.noarch
perl-threads-1.87-4.el7.x86_64
perl-threads-shared-1.43-6.el7.x86_64
perl-Time-HiRes-1.9725-3.el7.x86_64
perl-Time-Local-1.2300-2.el7.noarch
pinentry-0.8.1-17.el7.x86_64
pixman-0.34.0-1.el7.x86_64
pkgconfig-0.27.1-4.el7.x86_64
plymouth-0.8.9-0.26.20140113.el7.x86_64
plymouth-core-libs-0.8.9-0.26.20140113.el7.x86_64
plymouth-scripts-0.8.9-0.26.20140113.el7.x86_64
policycoreutils-2.5-11.el7_3.x86_64
policycoreutils-python-2.5-11.el7_3.x86_64
polkit-0.112-9.el7.x86_64
polkit-pkla-compat-0.1-4.el7.x86_64
popt-1.13-16.el7.x86_64
postfix-2.10.1-6.el7.x86_64
postgresql-9.2.18-1.el7.x86_64
postgresql-jdbc-9.2.1002-5.el7.noarch
postgresql-libs-9.2.18-1.el7.x86_64
postgresql-server-9.2.18-1.el7.x86_64
ppp-2.4.5-33.el7.x86_64
procps-ng-3.3.10-10.el7.x86_64
psmisc-22.20-11.el7.x86_64
pth-2.0.7-23.el7.x86_64
pulp-admin-client-2.9.3-1.el7.noarch
pulp-client-1.0-1.noarch
pulp-docker-plugins-2.0.4-1.el7.noarch
pulp-katello-1.0.2-1.el7.noarch
pulp-puppet-plugins-2.9.3-1.el7.noarch
pulp-puppet-tools-2.9.3-1.el7.noarch
pulp-rpm-admin-extensions-2.9.3-1.el7.noarch
pulp-rpm-handlers-2.9.3-1.el7.noarch
pulp-rpm-plugins-2.9.3-1.el7.noarch
pulp-selinux-2.9.3-1.el7.noarch
pulp-server-2.9.3-1.el7.noarch
pulseaudio-libs-6.0-8.el7.x86_64
puppet-agent-1.8.3-1.el7.x86_64
puppet-agent-oauth-0.5.1-3.el7.noarch
puppetlabs-release-22.0-2.noarch
puppetserver-2.7.2-1.el7.noarch
pygobject2-2.28.6-11.el7.x86_64
pygobject3-base-3.14.0-3.el7.x86_64
pygpgme-0.3-9.el7.x86_64
pyliblzma-0.5.3-11.el7.x86_64
pyOpenSSL-0.13.1-3.el7.x86_64
pyparsing-1.5.6-9.el7.noarch
pyserial-2.6-5.el7.noarch
pytalloc-2.1.6-1.el7.x86_64
python-2.7.5-48.el7.x86_64
python2-httpie-0.9.4-1.el7.noarch
python2-simplejson-3.10.0-1.el7.x86_64
python-amqp-1.4.9-1.el7.noarch
python-anyjson-0.3.3-3.el7.noarch
python-babel-0.9.6-8.el7.noarch
python-backports-1.0-8.el7.x86_64
python-backports-ssl_match_hostname-3.4.0.2-4.el7.noarch
python-billiard-3.3.0.20-2.el7.x86_64
python-blinker-1.3-2.el7.noarch
python-bson-3.2-1.el7.x86_64
python-celery-3.1.11-1.el7.noarch
python-chardet-2.2.1-1.el7_1.noarch
python-configobj-4.7.2-7.el7.noarch
python-crane-2.0.2-1.el7.noarch
python-dateutil-1.5-7.el7.noarch
python-decorator-3.4.0-3.el7.noarch
python-deltarpm-3.6-3.el7.x86_64
python-django-1.6.11-5.el7.noarch
python-django-bash-completion-1.6.11-5.el7.noarch
python-dmidecode-3.10.13-11.el7.x86_64
python-ethtool-0.8-5.el7.x86_64
python-firewall-0.4.3.2-8.1.el7_3.noarch
python-flask-0.10.1-4.el7.noarch
python-fpconst-0.7.3-12.el7.noarch
python-gofer-2.7.6-1.el7.noarch
python-gofer-proton-2.7.6-1.el7.noarch
python-gofer-qpid-2.7.6-1.el7.noarch
python-gudev-147.2-7.el7.x86_64
python-httplib2-0.7.7-3.el7.noarch
python-hwdata-1.7.3-4.el7.noarch
python-iniparse-0.4-9.el7.noarch
python-IPy-0.75-6.el7.noarch
python-isodate-0.5.0-4.pulp.el7.noarch
python-itsdangerous-0.23-2.el7.noarch
python-javapackages-3.4.1-11.el7.noarch
python-jinja2-2.7.2-2.el7.noarch
python-kid-0.9.6-11.el7.noarch
python-kitchen-1.1.1-5.el7.noarch
python-kombu-3.0.33-6.pulp.el7.noarch
python-ldap-2.4.15-2.el7.x86_64
python-libs-2.7.5-48.el7.x86_64
python-lxml-3.2.1-4.el7.x86_64
python-magic-5.11-33.el7.noarch
python-markupsafe-0.11-10.el7.x86_64
python-mongoengine-0.10.5-1.el7.noarch
python-nectar-1.5.2-1.el7.noarch
python-oauth2-1.5.211-8.el7.noarch
python-okaara-1.0.35-1.el7.noarch
python-perf-3.10.0-514.6.1.el7.x86_64
python-pillow-2.0.0-19.gitd1c6db8.el7.x86_64
python-pulp-agent-lib-2.9.3-1.el7.noarch
python-pulp-bindings-2.9.3-1.el7.noarch
python-pulp-client-lib-2.9.3-1.el7.noarch
python-pulp-common-2.9.3-1.el7.noarch
python-pulp-docker-common-2.0.4-1.el7.noarch
python-pulp-oid_validation-2.9.3-1.el7.noarch
python-pulp-puppet-common-2.9.3-1.el7.noarch
python-pulp-repoauth-2.9.3-1.el7.noarch
python-pulp-rpm-common-2.9.3-1.el7.noarch
python-pulp-streamer-2.9.3-1.el7.noarch
python-pycurl-7.19.0-19.el7.x86_64
python-pygments-1.4-9.el7.noarch
python-pymongo-3.2-1.el7.x86_64
python-pymongo-gridfs-3.2-1.el7.x86_64
python-pyudev-0.15-7.el7_2.1.noarch
python-qpid-1.35.0-1.el7.noarch
python-qpid-common-1.35.0-1.el7.noarch
python-qpid-proton-0.14.0-2.el7.x86_64
python-qpid-qmf-1.35.0-1.el7.x86_64
python-requests-2.6.0-1.el7_1.noarch
python-rhsm-1.17.9-1.el7.x86_64
python-rhsm-certificates-1.17.9-1.el7.x86_64
python-saslwrapper-0.22-5.el7.x86_64
python-semantic_version-2.4.2-1.el7.noarch
python-setuptools-0.9.8-4.el7.noarch
python-six-1.9.0-2.el7.noarch
python-slip-0.4.0-2.el7.noarch
python-slip-dbus-0.4.0-2.el7.noarch
python-sssdconfig-1.14.0-43.el7_3.11.noarch
python-twisted-core-12.2.0-4.el7.x86_64
python-twisted-web-12.1.0-5.el7_2.x86_64
python-urlgrabber-3.10-8.el7.noarch
python-urllib3-1.10.2-2.katello.el7.noarch
python-werkzeug-0.9.1-2.el7.noarch
python-zope-interface-4.0.5-4.el7.x86_64
pytz-2012d-5.el7.noarch
pyxattr-0.5.1-5.el7.x86_64
qpid-cpp-client-1.35.0-1.el7.x86_64
qpid-cpp-client-devel-1.35.0-1.el7.x86_64
qpid-cpp-server-1.35.0-1.el7.x86_64
qpid-cpp-server-linearstore-1.35.0-1.el7.x86_64
qpid-dispatch-router-0.6.1-4.el7.x86_64
qpid-proton-c-0.14.0-2.el7.x86_64
qpid-qmf-1.35.0-1.el7.x86_64
qpid-tools-1.35.0-1.el7.noarch
qrencode-libs-3.4.1-3.el7.x86_64
quota-4.01-14.el7.x86_64
quota-nls-4.01-14.el7.noarch
rdma-7.3_4.7_rc2-5.el7.noarch
readline-6.2-9.el7.x86_64
Red_Hat_Enterprise_Linux-Release_Notes-7-en-US-7-2.el7.noarch
redhat-logos-70.0.3-6.el7.noarch
redhat-lsb-core-4.1-27.el7.x86_64
redhat-lsb-submod-security-4.1-27.el7.x86_64
redhat-release-server-7.3-7.el7.x86_64
redhat-rpm-config-9.1.0-72.el7.noarch
redhat-support-lib-python-0.9.7-6.el7.noarch
redhat-support-tool-0.9.8-6.el7.noarch
repoview-0.6.6-4.el7.noarch
rhn-check-2.0.2-8.el7.noarch
rhn-client-tools-2.0.2-8.el7.noarch
rhnlib-2.5.65-2.el7.noarch
rhnsd-5.0.13-5.el7.x86_64
rhn-setup-2.0.2-8.el7.noarch
rh-ror41-rubygem-actionmailer-4.1.5-1.el7.centos.noarch
rh-ror41-rubygem-actionpack-4.1.5-2.el7.centos.noarch
rh-ror41-rubygem-actionview-4.1.5-5.el7.noarch
rh-ror41-rubygem-activemodel-4.1.5-2.el7.noarch
rh-ror41-rubygem-activerecord-4.1.5-2.el7.noarch
rh-ror41-rubygem-activesupport-4.1.5-3.el7.noarch
rh-ror41-rubygem-arel-5.0.0-2.el7.centos.noarch
rh-ror41-rubygem-builder-3.2.2-1.el7.centos.noarch
rh-ror41-rubygem-coffee-rails-4.0.1-1.el7.centos.noarch
rh-ror41-rubygem-coffee-script-2.2.0-6.el7.centos.noarch
rh-ror41-rubygem-coffee-script-source-1.6.3-1.el7.centos.noarch
rh-ror41-rubygem-dalli-2.7.2-2.el7.centos.noarch
rh-ror41-rubygem-erubis-2.7.0-8.el7.centos.noarch
rh-ror41-rubygem-execjs-2.2.0-1.el7.centos.noarch
rh-ror41-rubygem-hike-1.2.3-1.el7.centos.noarch
rh-ror41-rubygem-i18n-0.6.11-1.el7.centos.noarch
rh-ror41-rubygem-mail-2.5.4-2.el7.centos.noarch
rh-ror41-rubygem-mime-types-1.25.1-1.el7.centos.noarch
rh-ror41-rubygem-multi_json-1.8.4-2.el7.centos.noarch
rh-ror41-rubygem-polyglot-0.3.4-1.el7.centos.noarch
rh-ror41-rubygem-rack-1.5.2-5.el7.centos.noarch
rh-ror41-rubygem-rack-protection-1.5.0-1.el7.centos.noarch
rh-ror41-rubygem-rack-test-0.6.2-2.el7.centos.noarch
rh-ror41-rubygem-rails-4.1.5-3.el7.centos.noarch
rh-ror41-rubygem-railties-4.1.5-1.el7.centos.noarch
rh-ror41-rubygem-sinatra-1.4.5-1.el7.centos.noarch
rh-ror41-rubygem-sprockets-2.12.3-3.el7.centos.noarch
rh-ror41-rubygem-sprockets-rails-2.2.4-2.el7.centos.noarch
rh-ror41-rubygem-thread_safe-0.3.4-3.el7.centos.noarch
rh-ror41-rubygem-tilt-1.4.1-1.el7.centos.noarch
rh-ror41-rubygem-treetop-1.4.14-1.el7.centos.noarch
rh-ror41-rubygem-tzinfo-1.2.2-1.el7.centos.noarch
rh-ror41-runtime-2.0-6.el7.centos.x86_64
rh-ruby22-ruby-2.2.2-16.el7.x86_64
rh-ruby22-rubygem-bigdecimal-1.2.6-16.el7.x86_64
rh-ruby22-rubygem-bundler-1.7.8-2.sc1.el7.noarch
rh-ruby22-rubygem-io-console-0.4.3-16.el7.x86_64
rh-ruby22-rubygem-json-1.8.1-16.el7.x86_64
rh-ruby22-rubygem-minitest-5.4.3-16.el7.noarch
rh-ruby22-rubygem-net-http-persistent-2.9.4-4.el7.centos.noarch
rh-ruby22-rubygem-psych-2.0.8-16.el7.x86_64
rh-ruby22-rubygem-rake-10.4.2-16.el7.noarch
rh-ruby22-rubygem-rdoc-4.2.0-16.el7.noarch
rh-ruby22-rubygems-2.4.5-16.el7.x86_64
rh-ruby22-rubygem-thor-0.19.1-1.el7.centos.noarch
rh-ruby22-ruby-irb-2.2.2-16.el7.noarch
rh-ruby22-ruby-libs-2.2.2-16.el7.x86_64
rh-ruby22-runtime-2.0-6.sc1.el7.x86_64
rhscl-rh-ror41-epel-7-x86_64-1-2.noarch
rhscl-rh-ruby22-epel-7-x86_64-1-2.noarch
rhscl-v8314-epel-7-x86_64-1-2.noarch
rootfiles-8.1-11.el7.noarch
rpcbind-0.2.0-38.el7.x86_64
rpm-4.11.3-21.el7.x86_64
rpm-build-4.11.3-21.el7.x86_64
rpm-build-libs-4.11.3-21.el7.x86_64
rpmconf-0.3.4-1.el7.noarch
rpm-libs-4.11.3-21.el7.x86_64
rpm-python-4.11.3-21.el7.x86_64
rsync-3.0.9-17.el7.x86_64
rsyslog-7.4.7-16.el7.x86_64
ruby-2.0.0.648-29.el7.x86_64
ruby-augeas-0.5.0-1.el7.x86_64
rubygem-algebrick-0.7.3-4.el7.noarch
rubygem-ansi-1.4.3-2.el7.noarch
rubygem-apipie-bindings-0.0.18-1.el7.noarch
rubygem-apipie-params-0.0.5-1.el7.noarch
rubygem-awesome_print-1.0.2-13.el7.noarch
rubygem-bigdecimal-1.2.0-29.el7.x86_64
rubygem-bundler-1.7.8-3.el7.noarch
rubygem-bundler_ext-0.4.1-1.el7.noarch
rubygem-clamp-1.0.0-5.el7.noarch
rubygem-concurrent-ruby-1.0.0-2.fm1_11.el7.noarch
rubygem-concurrent-ruby-edge-0.2.0-4.fm1_12.el7.noarch
rubygem-daemon_controller-1.1.2-2.el7.noarch
rubygem-dynflow-0.8.15-1.fm1_13.el7.noarch
rubygem-faraday-0.9.1-3.el7.noarch
rubygem-faraday_middleware-0.10.0-1.el7.noarch
rubygem-ffi-1.9.10-2.el7.x86_64
rubygem-gssapi-1.1.2-3.el7.noarch
rubygem-hashie-2.0.5-4.el7.noarch
rubygem-highline-1.6.21-5.el7.noarch
rubygem-infoblox-1.0.0-1.el7.noarch
rubygem-io-console-0.4.2-29.el7.x86_64
rubygem-json-1.7.7-29.el7.x86_64
rubygem-kafo-0.9.8-1.el7.noarch
rubygem-kafo_parsers-0.1.2-1.el7.noarch
rubygem-kafo_wizards-0.0.1-2.el7.noarch
rubygem-little-plugger-1.1.3-21.el7.noarch
rubygem-logging-1.8.2-4.el7.noarch
rubygem-mime-types-1.19-3.el7.noarch
rubygem-multi_json-1.10.1-3.el7.noarch
rubygem-multipart-post-1.2.0-4.el7.noarch
rubygem-net-http-persistent-2.8-5.el7.noarch
rubygem-netrc-0.7.7-7.el7.noarch
rubygem-net-scp-1.2.1-1.el7.noarch
rubygem-net-ssh-2.9.1-1.el7.noarch
rubygem-oauth-0.4.7-8.el7.noarch
rubygem-powerbar-1.0.17-1.el7.noarch
rubygem-psych-2.0.0-29.el7.x86_64
rubygem-rack-1.6.4-2.el7.noarch
rubygem-rack-protection-1.5.3-3.el7.noarch
rubygem-rake-0.9.6-29.el7.noarch
rubygem-rb-inotify-0.9.7-1.el7.noarch
rubygem-rdoc-4.0.0-29.el7.noarch
rubygem-rest-client-1.6.7-4.el7.noarch
rubygem-rkerberos-0.1.3-5.el7.x86_64
rubygem-rubyipmi-0.10.0-2.el7.noarch
rubygems-2.0.14.1-29.el7.noarch
rubygem-sequel-4.20.0-6.el7.noarch
rubygem-sinatra-1.3.5-1.el7.noarch
rubygem-smart_proxy_dhcp_infoblox-0.0.5-1.fm1_13.el7.noarch
rubygem-smart_proxy_dynflow-0.1.5-1.el7.noarch
rubygem-smart_proxy_pulp-1.3.0-1.el7.noarch
rubygem-smart_proxy_remote_execution_ssh-0.1.4-1.el7.noarch
rubygem-sqlite3-1.3.5-4.el7.x86_64
rubygem-thor-0.19.1-1.el7.noarch
rubygem-tilt-1.3.7-2.el7.noarch
ruby-irb-2.0.0.648-29.el7.noarch
ruby-libs-2.0.0.648-29.el7.x86_64
ruby-shadow-2.2.0-2.el7.x86_64
samba-client-libs-4.4.4-12.el7_3.x86_64
samba-common-4.4.4-12.el7_3.noarch
samba-common-libs-4.4.4-12.el7_3.x86_64
samba-common-tools-4.4.4-12.el7_3.x86_64
samba-libs-4.4.4-12.el7_3.x86_64
saslwrapper-0.22-5.el7.x86_64
sclo-ror42-rubygem-actionmailer-4.2.5.1-1.el7.noarch
sclo-ror42-rubygem-actionpack-4.2.5.1-2.el7.noarch
sclo-ror42-rubygem-actionview-4.2.5.1-3.el7.noarch
sclo-ror42-rubygem-activejob-4.2.5.1-1.el7.noarch
sclo-ror42-rubygem-activemodel-4.2.5.1-1.el7.noarch
sclo-ror42-rubygem-activerecord-4.2.5.1-4.el7.noarch
sclo-ror42-rubygem-activesupport-4.2.5.1-1.el7.noarch
sclo-ror42-rubygem-arel-6.0.3-2.el7.noarch
sclo-ror42-rubygem-builder-3.2.2-2.el7.noarch
sclo-ror42-rubygem-coffee-rails-4.1.0-3.el7.noarch
sclo-ror42-rubygem-coffee-script-2.4.1-1.el7.noarch
sclo-ror42-rubygem-coffee-script-source-1.10.0-1.el7.noarch
sclo-ror42-rubygem-concurrent-ruby-1.0.0-2.el7.noarch
sclo-ror42-rubygem-erubis-2.7.0-9.el7.noarch
sclo-ror42-rubygem-execjs-2.2.0-2.el7.noarch
sclo-ror42-rubygem-globalid-0.3.3-3.el7.noarch
sclo-ror42-rubygem-i18n-0.7.0-3.el7.noarch
sclo-ror42-rubygem-loofah-2.0.2-3.el7.noarch
sclo-ror42-rubygem-mail-2.6.1-1.el7.noarch
sclo-ror42-rubygem-mime-types-1.25.1-2.el7.noarch
sclo-ror42-rubygem-multi_json-1.10.1-3.el7.noarch
sclo-ror42-rubygem-nokogiri-1.6.7-0.4.rc3.el7.x86_64
sclo-ror42-rubygem-polyglot-0.3.4-2.el7.noarch
sclo-ror42-rubygem-rack-1.6.2-3.el7.noarch
sclo-ror42-rubygem-rack-protection-1.5.3-4.el7.noarch
sclo-ror42-rubygem-rack-test-0.6.3-3.el7.noarch
sclo-ror42-rubygem-rails-4.2.5.1-1.el7.noarch
sclo-ror42-rubygem-rails-deprecated_sanitizer-1.0.3-5.el7.noarch
sclo-ror42-rubygem-rails-dom-testing-1.0.5-3.el7.noarch
sclo-ror42-rubygem-rails-html-sanitizer-1.0.3-1.el7.noarch
sclo-ror42-rubygem-railties-4.2.5.1-2.el7.noarch
sclo-ror42-rubygem-sinatra-1.4.6-4.el7.noarch
sclo-ror42-rubygem-sprockets-3.5.2-1.el7.noarch
sclo-ror42-rubygem-sprockets-rails-2.3.3-1.el7.noarch
sclo-ror42-rubygem-sqlite3-1.3.10-2.el7.x86_64
sclo-ror42-rubygem-thread_safe-0.3.5-2.el7.noarch
sclo-ror42-rubygem-tilt-1.4.1-2.el7.noarch
sclo-ror42-rubygem-turbolinks-2.5.3-2.el7.noarch
sclo-ror42-rubygem-tzinfo-1.2.2-2.el7.noarch
sclo-ror42-runtime-3.0-2.el7.x86_64
scl-utils-20130529-17.el7_1.x86_64
screen-4.1.0-0.23.20120314git3c2946.el7_2.x86_64
sed-4.2.2-5.el7.x86_64
selinux-policy-3.13.1-102.el7_3.13.noarch
selinux-policy-targeted-3.13.1-102.el7_3.13.noarch
setools-libs-3.3.8-1.1.el7.x86_64
setup-2.8.71-7.el7.noarch
sg3_utils-1.37-9.el7.x86_64
sg3_utils-libs-1.37-9.el7.x86_64
shadow-utils-4.1.5.1-24.el7.x86_64
shared-mime-info-1.1-9.el7.x86_64
sharutils-4.13.3-8.el7.x86_64
shim-0.9-2.el7.x86_64
slang-2.2.4-11.el7.x86_64
snappy-1.1.0-3.el7.x86_64
SOAPpy-0.11.6-17.el7.noarch
spax-1.5.2-13.el7.x86_64
sqlite-3.7.17-8.el7.x86_64
squid-3.5.20-2.el7_3.2.x86_64
squid-migration-script-3.5.20-2.el7_3.2.x86_64
sssd-1.14.0-43.el7_3.11.x86_64
sssd-ad-1.14.0-43.el7_3.11.x86_64
sssd-client-1.14.0-43.el7_3.11.x86_64
sssd-common-1.14.0-43.el7_3.11.x86_64
sssd-common-pac-1.14.0-43.el7_3.11.x86_64
sssd-ipa-1.14.0-43.el7_3.11.x86_64
sssd-krb5-1.14.0-43.el7_3.11.x86_64
sssd-krb5-common-1.14.0-43.el7_3.11.x86_64
sssd-ldap-1.14.0-43.el7_3.11.x86_64
sssd-proxy-1.14.0-43.el7_3.11.x86_64
strace-4.8-11.el7.x86_64
subscription-manager-1.17.15-1.el7.x86_64
sudo-1.8.6p7-21.el7_3.x86_64
syslinux-4.05-13.el7.x86_64
systemd-219-30.el7_3.6.x86_64
systemd-libs-219-30.el7_3.6.x86_64
systemd-sysv-219-30.el7_3.6.x86_64
sysvinit-tools-2.88-14.dsf.el7.x86_64
tar-1.26-31.el7.x86_64
tcpdump-4.5.1-3.el7.x86_64
tcp_wrappers-7.6-77.el7.x86_64
tcp_wrappers-libs-7.6-77.el7.x86_64
teamd-1.25-4.el7.x86_64
telnet-0.17-60.el7.x86_64
tfm-rubygem-activerecord-session_store-0.1.2-2.el7.noarch
tfm-rubygem-addressable-2.3.6-3.el7.noarch
tfm-rubygem-algebrick-0.7.3-4.el7.noarch
tfm-rubygem-ancestry-2.0.0-5.el7.noarch
tfm-rubygem-anemone-0.7.2-14.el7.noarch
tfm-rubygem-angular-rails-templates-0.1.2-5.el7.noarch
tfm-rubygem-apipie-bindings-0.0.18-1.el7.noarch
tfm-rubygem-apipie-params-0.0.5-1.el7.noarch
tfm-rubygem-apipie-rails-0.3.6-1.el7.noarch
tfm-rubygem-audited-4.2.0-1.el7.noarch
tfm-rubygem-audited-activerecord-4.2.0-2.el7.noarch
tfm-rubygem-awesome_print-1.7.0-1.el7.noarch
tfm-rubygem-bastion-3.3.4-1.fm1_13.el7.noarch
tfm-rubygem-bundler_ext-0.4.1-1.el7.noarch
tfm-rubygem-clamp-1.0.0-5.el7.noarch
tfm-rubygem-colorize-0.7.7-4.el7.noarch
tfm-rubygem-concurrent-ruby-1.0.0-2.fm1_11.el7.noarch
tfm-rubygem-concurrent-ruby-edge-0.2.0-4.fm1_12.el7.noarch
tfm-rubygem-css_parser-1.3.7-1.el7.noarch
tfm-rubygem-daemons-1.2.3-3.el7.noarch
tfm-rubygem-deacon-1.0.0-1.el7.noarch
tfm-rubygem-deep_cloneable-2.1.1-4.el7.noarch
tfm-rubygem-deface-1.0.2-3.el7.noarch
tfm-rubygem-diffy-3.0.1-3.el7.noarch
tfm-rubygem-docker-api-1.28.0-2.el7.noarch
tfm-rubygem-domain_name-0.5.20160310-1.el7.noarch
tfm-rubygem-dynflow-0.8.15-1.fm1_13.el7.noarch
tfm-rubygem-excon-0.51.0-1.el7.noarch
tfm-rubygem-facter-2.4.0-3.el7.x86_64
tfm-rubygem-fast_gettext-1.1.0-1.el7.noarch
tfm-rubygem-fog-1.38.0-1.el7.noarch
tfm-rubygem-fog-aws-0.13.0-1.el7.noarch
tfm-rubygem-fog-core-1.42.0-1.el7.noarch
tfm-rubygem-fog-google-0.1.0-2.el7.noarch
tfm-rubygem-fog-json-1.0.2-4.el7.noarch
tfm-rubygem-fog-openstack-0.1.12-1.el7.noarch
tfm-rubygem-fog-rackspace-0.1.1-1.el7.noarch
tfm-rubygem-fog-vsphere-1.0.0-1.el7.noarch
tfm-rubygem-fog-xenserver-0.2.3-1.el7.noarch
tfm-rubygem-fog-xml-0.1.2-4.el7.noarch
tfm-rubygem-foreman_docker-3.0.0-1.fm1_13.el7.noarch
tfm-rubygem-foreman_hooks-0.3.12-1.fm1_13.el7.noarch
tfm-rubygem-foreman_remote_execution-1.2.2-1.fm1_13.el7.noarch
tfm-rubygem-foreman_remote_execution_core-1.0.2-1.fm1_13.el7.noarch
tfm-rubygem-foreman-tasks-0.8.2-1.fm1_13.el7.noarch
tfm-rubygem-foreman-tasks-core-0.1.1-1.fm1_13.el7.noarch
tfm-rubygem-foreman_templates-3.1.0-1.fm1_13.el7.noarch
tfm-rubygem-formatador-0.2.1-9.el7.noarch
tfm-rubygem-friendly_id-5.1.0-3.el7.noarch
tfm-rubygem-gettext_i18n_rails-1.2.1-3.el7.noarch
tfm-rubygem-git-1.2.5-7.el7.noarch
tfm-rubygem-hammer_cli-0.8.0-1.el7.noarch
tfm-rubygem-hammer_cli_foreman-0.8.0-1.el7.noarch
tfm-rubygem-hammer_cli_foreman_bootdisk-0.1.3-5.el7.noarch
tfm-rubygem-hammer_cli_foreman_docker-0.0.4-2.el7.noarch
tfm-rubygem-hammer_cli_foreman_tasks-0.0.10-2.fm1_12.el7.noarch
tfm-rubygem-hammer_cli_import-0.11.3-1.el7.noarch
tfm-rubygem-hammer_cli_katello-0.1.3-1.el7.noarch
tfm-rubygem-hashie-2.0.5-4.el7.noarch
tfm-rubygem-highline-1.6.21-5.el7.noarch
tfm-rubygem-http-cookie-1.0.2-1.el7.noarch
tfm-rubygem-ipaddress-0.8.0-9.el7.noarch
tfm-rubygem-jquery-ui-rails-4.1.2-5.el7.noarch
tfm-rubygem-katello-3.2.1.1-1.el7.noarch
tfm-rubygem-ldap_fluff-0.4.3-1.el7.noarch
tfm-rubygem-little-plugger-1.1.3-21.el7.noarch
tfm-rubygem-locale-2.0.9-11.el7.noarch
tfm-rubygem-logging-1.8.2-4.el7.noarch
tfm-rubygem-net-ldap-0.15.0-1.el7.noarch
tfm-rubygem-netrc-0.7.7-7.el7.noarch
tfm-rubygem-net-scp-1.1.0-6.el7.noarch
tfm-rubygem-net-ssh-3.0.2-2.el7.noarch
tfm-rubygem-oauth-0.4.7-8.el7.noarch
tfm-rubygem-parse-cron-0.1.4-2.fm1_11.el7.noarch
tfm-rubygem-passenger-4.0.18-9.11.el7.x86_64
tfm-rubygem-passenger-native-4.0.18-9.11.el7.x86_64
tfm-rubygem-passenger-native-libs-4.0.18-9.11.el7.x86_64
tfm-rubygem-pg-0.15.1-3.el7.x86_64
tfm-rubygem-powerbar-1.0.17-1.el7.noarch
tfm-rubygem-protected_attributes-1.1.3-3.el7.noarch
tfm-rubygem-qpid_messaging-0.34.1-1.el7.x86_64
tfm-rubygem-rabl-0.12.0-2.el7.noarch
tfm-rubygem-rack-jsonp-1.3.1-5.el7.noarch
tfm-rubygem-rails-i18n-4.0.9-1.el7.noarch
tfm-rubygem-rails-observers-0.1.2-7.el7.noarch
tfm-rubygem-rbvmomi-1.8.2-4.el7.noarch
tfm-rubygem-responders-2.3.0-1.el7.noarch
tfm-rubygem-rest-client-1.8.0-1.el7.noarch
tfm-rubygem-roadie-3.1.1-1.el7.noarch
tfm-rubygem-roadie-rails-1.1.1-1.el7.noarch
tfm-rubygem-robotex-1.0.0-19.el7.noarch
tfm-rubygem-ruby2ruby-2.1.3-4.el7.noarch
tfm-rubygem-ruby_parser-3.6.3-4.el7.noarch
tfm-rubygem-runcible-1.9.0-1.el7.noarch
tfm-rubygem-safemode-1.2.4-2.el7.noarch
tfm-rubygem-scoped_search-3.3.0-1.el7.noarch
tfm-rubygem-secure_headers-1.4.1-4.el7.noarch
tfm-rubygem-sequel-4.20.0-5.el7.noarch
tfm-rubygem-sexp_processor-4.4.4-3.el7.noarch
tfm-rubygem-smart_proxy_dynflow_core-0.1.5-1.fm1_13.el7.noarch
tfm-rubygem-table_print-1.5.1-6.el7.noarch
tfm-rubygem-trollop-2.0-5.el7.noarch
tfm-rubygem-unf-0.1.3-5.el7.noarch
tfm-rubygem-unf_ext-0.0.6-6.el7.x86_64
tfm-rubygem-validates_lengths_from_database-0.5.0-3.el7.noarch
tfm-rubygem-webpack-rails-0.9.8-1.el7.noarch
tfm-rubygem-wicked-1.1.0-4.el7.noarch
tfm-rubygem-will_paginate-3.1.0-2.el7.noarch
tfm-rubygem-x-editable-rails-1.5.5-1.el7.noarch
tfm-runtime-3.2-2.el7.x86_64
tftp-server-5.2-13.el7.x86_64
time-1.7-45.el7.x86_64
tmux-1.8-4.el7.x86_64
tomcat-7.0.69-10.el7.noarch
tomcat-el-2.2-api-7.0.69-10.el7.noarch
tomcat-jsp-2.2-api-7.0.69-10.el7.noarch
tomcat-lib-7.0.69-10.el7.noarch
tomcat-servlet-3.0-api-7.0.69-10.el7.noarch
tree-1.6.0-10.el7.x86_64
trousers-0.3.13-1.el7.x86_64
ttmkfdir-3.0.9-42.el7.x86_64
tuned-2.7.1-3.el7_3.1.noarch
tzdata-2016j-1.el7.noarch
tzdata-java-2016j-1.el7.noarch
unzip-6.0-16.el7.x86_64
usermode-1.111-5.el7.x86_64
ustr-1.0.4-16.el7.x86_64
util-linux-2.23.2-33.el7.x86_64
v8-3.14.5.10-25.el7.x86_64
v8314-runtime-2.1-1.el7.x86_64
vim-common-7.4.160-1.el7_3.1.x86_64
vim-enhanced-7.4.160-1.el7_3.1.x86_64
vim-filesystem-7.4.160-1.el7_3.1.x86_64
vim-minimal-7.4.160-1.el7_3.1.x86_64
virt-what-1.13-8.el7.x86_64
wget-1.14-13.el7.x86_64
which-2.20-7.el7.x86_64
wpa_supplicant-2.0-20.el7.x86_64
xalan-j2-2.7.1-23.el7.noarch
xdg-utils-1.1.0-0.17.20120809git.el7.noarch
xerces-j2-2.11.0-17.el7_0.noarch
xfsprogs-4.5.0-9.el7_3.x86_64
xinetd-2.3.15-13.el7.x86_64
xml-commons-apis-1.4.01-16.el7.noarch
xml-commons-resolver-1.2-15.el7.noarch
xorg-x11-fonts-Type1-7.5-9.el7.noarch
xorg-x11-font-utils-7.5-20.el7.x86_64
xz-5.2.2-1.el7.x86_64
xz-libs-5.2.2-1.el7.x86_64
yaml-cpp-0.5.1-6.el7.x86_64
yum-3.4.3-150.el7.noarch
yum-metadata-parser-1.1.4-10.el7.x86_64
yum-plugin-priorities-1.1.31-40.el7.noarch
yum-rhn-plugin-2.0.1-6.el7.noarch
yum-utils-1.1.31-40.el7.noarch
zip-3.0-11.el7.x86_64
zlib-1.2.7-17.el7.x86_64

The dynflow output of a task:

Started at: 2017-02-06 08:47:54 UTC

Ended at: 2017-02-06 08:48:17 UTC

Real time: 22.87s

Execution time (excluding suspended state): 8.44s

Input:

---
ssh_user: root
effective_user: root
effective_user_method: sudo
ssh_port: 22
hostname: 1.1.2.17
script: "#!/bin/bash\r\nif [ -e /etc/puppetlabs/puppet/puppet.conf ] ; then exit 0;
  fi\r\nif ! yum info puppet-agent; then\r\n  exit 1\r\nfi\r\nyum update -y puppet\r\nmv
  /var/lib/puppet/ssl /etc/puppetlabs/puppet/\r\nsed -i 's#/var/lib/puppet/ssl#/etc/puppetlabs/puppet/ssl#'
  /etc/puppet/puppet.conf.rpmsave\r\nsed -i 's#/var/lib/puppet#/opt/puppetlabs/puppet/cache#'
  /etc/puppet/puppet.conf.rpmsave\r\nsed -i 's#/var/run/puppet#/var/run/puppetlabs#'
  /etc/puppet/puppet.conf.rpmsave\r\nsed -i 's#/var/log/puppet#/var/log/puppetlabs/puppet#'
  /etc/puppet/puppet.conf.rpmsave\r\nmv -f /etc/puppet/puppet.conf.rpmsave /etc/puppetlabs/puppet/puppet.conf\r\n/opt/puppetlabs/bin/puppet
  agent -t --no-noop\r\nrm -rf /etc/puppet\r\nrm -rf /var/lib/puppet" 
connection_options:
  retry_interval: 15
  retry_count: 4
  timeout: 60
proxy_url: https://foreman.tld:9090
proxy_action_name: ForemanRemoteExecutionCore::Actions::RunScript
locale: en
Output:

---
metadata:
  timeout: '2017-02-06 09:48:54 +0100'
proxy_task_id: 365ca5fc-5505-4dce-a7dc-f76b5eaa5502
proxy_output:
  result:
  runner_id: a29c649e-1b9b-4eae-a183-66d096db54ab
  exit_status: 0

His suggested fix seems to work for me:
https://github.com/theforeman/foreman_remote_execution/blob/master/app/lib/actions/remote_execution/run_host_job.rb#L99

to

(delegated_output.fetch('result', []) || []).each do |raw_output|

Actions #6

Updated by Klaas D about 7 years ago

  • Status changed from New to Resolved

I'm unable to reproduce this in foreman 1.14.3 / katello 3.3.1 / tfm-rubygem-foreman_remote_execution-1.2.2-1.fm1_14.el7.noarch. So this seems to be fixed, although I'm not sure which change fixed it :)

Actions

Also available in: Atom PDF