Rex
Rex copied to clipboard
pkg on_change runs even when package state did not change.
Target = centos 7 with all updates installed.
Rexfile:
use strict; use warnings;
use Rex -feature => [qw[1.3]];
user 'root';
task 'ttt' => sub {
pkg 'postgresql-server', ensure => 'present',
on_change => sub { say 'I should only run once!' };
};
Running
rex -H target ttt
multiple times shows that on_change is invoked every time.
Hi @lumiera,
i tried to reproduce this but sadly i can't. Could you please run this task with the debug option rex -d -H target ttt
and post the output?
Thanks, Jan
rex -m -d -H target.local ttt > out.txt 2>&1
Contents of out.txt:
[2017-07-22 21:19:33] DEBUG - This is Rex version: 1.5.0
[2017-07-22 21:19:33] DEBUG - Command Line Parameters
[2017-07-22 21:19:33] DEBUG - m = 1
[2017-07-22 21:19:33] DEBUG - d = 1
[2017-07-22 21:19:33] DEBUG - H = target.local
[2017-07-22 21:19:33] DEBUG - Creating lock-file (Rexfile.lock)
[2017-07-22 21:19:33] DEBUG - Loading Rexfile
[2017-07-22 21:19:33] DEBUG - Activating new template engine.
[2017-07-22 21:19:33] DEBUG - Disabling usage of a tty
[2017-07-22 21:19:33] DEBUG - Activating autodie.
[2017-07-22 21:19:33] DEBUG - Using Net::OpenSSH if present.
[2017-07-22 21:19:33] DEBUG - Add service check.
[2017-07-22 21:19:33] DEBUG - Setting set() to not append data.
[2017-07-22 21:19:33] DEBUG - Registering CMDB as template variables.
[2017-07-22 21:19:33] DEBUG - activating featureset >= 0.51
[2017-07-22 21:19:33] DEBUG - activating featureset >= 0.40
[2017-07-22 21:19:33] DEBUG - activating featureset >= 0.35
[2017-07-22 21:19:33] DEBUG - activating featureset >= 0.31
[2017-07-22 21:19:33] DEBUG - Creating new distribution class of type: Base
[2017-07-22 21:19:33] DEBUG - new distribution class of type Rex::TaskList::Base created.
[2017-07-22 21:19:33] DEBUG - Returning existing distribution class of type: Rex::TaskList::Base
[2017-07-22 21:19:33] DEBUG - Creating task: ttt
[2017-07-22 21:19:33] DEBUG - server: target.local
[2017-07-22 21:19:33] DEBUG - Found Net::OpenSSH and Net::SFTP::Foreign - using it as default
[2017-07-22 21:19:33] DEBUG - Registering task: ttt
[2017-07-22 21:19:33] DEBUG - Initializing Logger from parameters found in Rexfile
[2017-07-22 21:19:33] DEBUG - Returning existing distribution class of type: Rex::TaskList::Base
[2017-07-22 21:19:33] DEBUG - Returning existing distribution class of type: Rex::TaskList::Base
[2017-07-22 21:19:33] INFO - Running task ttt on target.local
[2017-07-22 21:19:33] DEBUG - Rex::Group::Entry::Server (private_key): returning
[2017-07-22 21:19:33] DEBUG - Rex::Group::Entry::Server (public_key): returning
[2017-07-22 21:19:33] DEBUG - $VAR1 = '';
[2017-07-22 21:19:33] DEBUG - Auth-Information inside Task:
[2017-07-22 21:19:33] DEBUG - public_key => [[]]
[2017-07-22 21:19:33] DEBUG - private_key => [[]]
[2017-07-22 21:19:33] DEBUG - user => [[root]]
[2017-07-22 21:19:33] DEBUG - sudo_password => [[**********]]
[2017-07-22 21:19:33] DEBUG - auth_type => [[try]]
[2017-07-22 21:19:33] DEBUG - port => [[]]
[2017-07-22 21:19:33] DEBUG - sudo => [[]]
[2017-07-22 21:19:33] DEBUG - password => [[%s]]
[2017-07-22 21:19:33] DEBUG - Using Net::OpenSSH for connection
[2017-07-22 21:19:33] DEBUG - Using user: root
[2017-07-22 21:19:33] DEBUG - Connecting to target.local:22 (root)
[2017-07-22 21:19:33] DEBUG - get_openssh_opt()
[2017-07-22 21:19:33] DEBUG - $VAR1 = {};
[2017-07-22 21:19:33] DEBUG - OpenSSH: key_auth or not defined: target.local:22 - root
[2017-07-22 21:19:33] DEBUG - OpenSSH options:
[2017-07-22 21:19:33] DEBUG - $VAR1 = [
'target.local',
'user',
'root',
'port',
22,
'master_opts',
[
'-o',
'LogLevel=QUIET',
'-o',
'ConnectTimeout=2'
],
'default_ssh_opts',
$VAR1->[6]
];
[2017-07-22 21:19:33] DEBUG - OpenSSH constructor options:
[2017-07-22 21:19:33] DEBUG - $VAR1 = {};
[2017-07-22 21:19:33] DEBUG - Trying following auth types:
[2017-07-22 21:19:33] DEBUG - $VAR1 = [
'key',
'pass'
];
[2017-07-22 21:19:33] DEBUG - Current Error-Code: 0
[2017-07-22 21:19:33] DEBUG - Connected and authenticated to target.local.
[2017-07-22 21:19:33] DEBUG - Successfully authenticated on target.local.
[2017-07-22 21:19:33] DEBUG - Executing: perl -MFile::Spec -le 'print File::Spec->tmpdir'
[2017-07-22 21:19:33] DEBUG - Detecting shell...
[2017-07-22 21:19:33] DEBUG - Searching for shell: ash
[2017-07-22 21:19:33] DEBUG - Searching for shell: ksh
[2017-07-22 21:19:33] DEBUG - Searching for shell: csh
[2017-07-22 21:19:33] DEBUG - Searching for shell: sh
[2017-07-22 21:19:33] DEBUG - Searching for shell: tcsh
[2017-07-22 21:19:33] DEBUG - Searching for shell: bash
[2017-07-22 21:19:33] DEBUG - Found shell and using: bash
[2017-07-22 21:19:33] DEBUG - Shell/Bash: Got options:
[2017-07-22 21:19:33] DEBUG - $VAR1 = {};
[2017-07-22 21:19:33] DEBUG - SSH/executing: LC_ALL=C ; export LC_ALL; perl -MFile::Spec -le 'print File::Spec->tmpdir'
[2017-07-22 21:19:33] DEBUG - /tmp
[2017-07-22 21:19:33] DEBUG - Executing: which perl
[2017-07-22 21:19:33] DEBUG - Detecting shell...
[2017-07-22 21:19:33] DEBUG - Found shell in cache: bash
[2017-07-22 21:19:33] DEBUG - Shell/Bash: Got options:
[2017-07-22 21:19:33] DEBUG - $VAR1 = {
'fail_ok' => 1,
'valid_retval' => [
0
]
};
[2017-07-22 21:19:33] DEBUG - SSH/executing: LC_ALL=C ; export LC_ALL; PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:/usr/pkg/bin:/usr/pkg/sbin; export PATH; which perl
[2017-07-22 21:19:33] DEBUG - /bin/perl
[2017-07-22 21:19:33] DEBUG - Executing ttt
[2017-07-22 21:19:33] DEBUG - Executing: which lsb_release
[2017-07-22 21:19:33] DEBUG - Detecting shell...
[2017-07-22 21:19:33] DEBUG - Found shell in cache: bash
[2017-07-22 21:19:33] DEBUG - Shell/Bash: Got options:
[2017-07-22 21:19:33] DEBUG - $VAR1 = {
'valid_retval' => [
0
],
'fail_ok' => 1
};
[2017-07-22 21:19:33] DEBUG - SSH/executing: LC_ALL=C ; export LC_ALL; PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:/usr/pkg/bin:/usr/pkg/sbin; export PATH; which lsb_release
[2017-07-22 21:19:33] DEBUG - ========= ERR ============
[2017-07-22 21:19:33] DEBUG - which: no lsb_release in (/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:/usr/pkg/bin:/usr/pkg/sbin)
[2017-07-22 21:19:33] DEBUG - ========= ERR ============
[2017-07-22 21:19:34] DEBUG - Opening file: /etc/system-release for reading.
[2017-07-22 21:19:34] DEBUG - Opening /etc/system-release with mode: <
[2017-07-22 21:19:34] DEBUG - Opening file: /etc/redhat-release for reading.
[2017-07-22 21:19:34] DEBUG - Opening /etc/redhat-release with mode: <
[2017-07-22 21:19:34] DEBUG - Executing: which dmidecode
[2017-07-22 21:19:34] DEBUG - Detecting shell...
[2017-07-22 21:19:34] DEBUG - Found shell in cache: bash
[2017-07-22 21:19:34] DEBUG - Shell/Bash: Got options:
[2017-07-22 21:19:34] DEBUG - $VAR1 = {
'fail_ok' => 1,
'valid_retval' => [
0
]
};
[2017-07-22 21:19:34] DEBUG - SSH/executing: LC_ALL=C ; export LC_ALL; PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:/usr/pkg/bin:/usr/pkg/sbin; export PATH; which dmidecode
[2017-07-22 21:19:34] DEBUG - /sbin/dmidecode
[2017-07-22 21:19:34] DEBUG - Executing: dmidecode
[2017-07-22 21:19:34] DEBUG - Detecting shell...
[2017-07-22 21:19:34] DEBUG - Found shell in cache: bash
[2017-07-22 21:19:34] DEBUG - Shell/Bash: Got options:
[2017-07-22 21:19:34] DEBUG - $VAR1 = {
'valid_retval' => [
0
],
'fail_ok' => 0
};
[2017-07-22 21:19:34] DEBUG - SSH/executing: LC_ALL=C ; export LC_ALL; PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:/usr/pkg/bin:/usr/pkg/sbin; export PATH; dmidecode
[2017-07-22 21:19:34] DEBUG - # dmidecode 3.0
Scanning /dev/mem for entry point.
SMBIOS 2.8 present.
10 structures occupying 441 bytes.
Table at 0x000F6880.
Handle 0x0000, DMI type 0, 24 bytes
BIOS Information
Vendor: SeaBIOS
Version: 1.10.2-1
Release Date: 04/01/2014
Address: 0xE8000
Runtime Size: 96 kB
ROM Size: 64 kB
Characteristics:
BIOS characteristics not supported
Targeted content distribution is supported
BIOS Revision: 0.0
Handle 0x0100, DMI type 1, 27 bytes
System Information
Manufacturer: QEMU
Product Name: Standard PC (i440FX + PIIX, 1996)
Version: pc-i440fx-2.8
Serial Number: Not Specified
UUID: 0ED70321-1031-4D0E-8BCC-C3A88FB12167
Wake-up Type: Power Switch
SKU Number: Not Specified
Family: Not Specified
Handle 0x0300, DMI type 3, 21 bytes
Chassis Information
Manufacturer: QEMU
Type: Other
Lock: Not Present
Version: pc-i440fx-2.8
Serial Number: Not Specified
Asset Tag: Not Specified
Boot-up State: Safe
Power Supply State: Safe
Thermal State: Safe
Security Status: Unknown
OEM Information: 0x00000000
Height: Unspecified
Number Of Power Cords: Unspecified
Contained Elements: 0
Handle 0x0400, DMI type 4, 42 bytes
Processor Information
Socket Designation: CPU 0
Type: Central Processor
Family: Other
Manufacturer: QEMU
ID: A9 06 03 00 FF FB 8B 07
Version: pc-i440fx-2.8
Voltage: Unknown
External Clock: Unknown
Max Speed: 2000 MHz
Current Speed: 2000 MHz
Status: Populated, Enabled
Upgrade: Other
L1 Cache Handle: Not Provided
L2 Cache Handle: Not Provided
L3 Cache Handle: Not Provided
Serial Number: Not Specified
Asset Tag: Not Specified
Part Number: Not Specified
Core Count: 1
Core Enabled: 1
Thread Count: 1
Characteristics: None
Handle 0x0401, DMI type 4, 42 bytes
Processor Information
Socket Designation: CPU 1
Type: Central Processor
Family: Other
Manufacturer: QEMU
ID: A9 06 03 00 FF FB 8B 07
Version: pc-i440fx-2.8
Voltage: Unknown
External Clock: Unknown
Max Speed: 2000 MHz
Current Speed: 2000 MHz
Status: Populated, Enabled
Upgrade: Other
L1 Cache Handle: Not Provided
L2 Cache Handle: Not Provided
L3 Cache Handle: Not Provided
Serial Number: Not Specified
Asset Tag: Not Specified
Part Number: Not Specified
Core Count: 1
Core Enabled: 1
Thread Count: 1
Characteristics: None
Handle 0x1000, DMI type 16, 23 bytes
Physical Memory Array
Location: Other
Use: System Memory
Error Correction Type: Multi-bit ECC
Maximum Capacity: 2 GB
Error Information Handle: Not Provided
Number Of Devices: 1
Handle 0x1100, DMI type 17, 40 bytes
Memory Device
Array Handle: 0x1000
Error Information Handle: Not Provided
Total Width: Unknown
Data Width: Unknown
Size: 2048 MB
Form Factor: DIMM
Set: None
Locator: DIMM 0
Bank Locator: Not Specified
Type: RAM
Type Detail: Other
Speed: Unknown
Manufacturer: QEMU
Serial Number: Not Specified
Asset Tag: Not Specified
Part Number: Not Specified
Rank: Unknown
Configured Clock Speed: Unknown
Minimum Voltage: Unknown
Maximum Voltage: Unknown
Configured Voltage: Unknown
Handle 0x1300, DMI type 19, 31 bytes
Memory Array Mapped Address
Starting Address: 0x00000000000
Ending Address: 0x0007FFFFFFF
Range Size: 2 GB
Physical Array Handle: 0x1000
Partition Width: 1
Handle 0x2000, DMI type 32, 11 bytes
System Boot Information
Status: No errors detected
Handle 0x7F00, DMI type 127, 4 bytes
End Of Table
[2017-07-22 21:19:34] DEBUG - Executing: which lsb_release
[2017-07-22 21:19:34] DEBUG - Detecting shell...
[2017-07-22 21:19:34] DEBUG - Found shell in cache: bash
[2017-07-22 21:19:34] DEBUG - Shell/Bash: Got options:
[2017-07-22 21:19:34] DEBUG - $VAR1 = {
'valid_retval' => [
0
],
'fail_ok' => 1
};
[2017-07-22 21:19:34] DEBUG - SSH/executing: LC_ALL=C ; export LC_ALL; PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:/usr/pkg/bin:/usr/pkg/sbin; export PATH; which lsb_release
[2017-07-22 21:19:34] DEBUG - ========= ERR ============
[2017-07-22 21:19:34] DEBUG - which: no lsb_release in (/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:/usr/pkg/bin:/usr/pkg/sbin)
[2017-07-22 21:19:34] DEBUG - ========= ERR ============
[2017-07-22 21:19:34] DEBUG - Opening file: /etc/system-release for reading.
[2017-07-22 21:19:34] DEBUG - Opening /etc/system-release with mode: <
[2017-07-22 21:19:34] DEBUG - Opening file: /etc/redhat-release for reading.
[2017-07-22 21:19:34] DEBUG - Opening /etc/redhat-release with mode: <
[2017-07-22 21:19:34] DEBUG - Executing: hostname -f 2>/dev/null
[2017-07-22 21:19:34] DEBUG - Detecting shell...
[2017-07-22 21:19:34] DEBUG - Found shell in cache: bash
[2017-07-22 21:19:34] DEBUG - Shell/Bash: Got options:
[2017-07-22 21:19:34] DEBUG - $VAR1 = {
'valid_retval' => [
0
],
'fail_ok' => 0
};
[2017-07-22 21:19:34] DEBUG - SSH/executing: LC_ALL=C ; export LC_ALL; PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:/usr/pkg/bin:/usr/pkg/sbin; export PATH; hostname -f 2>/dev/null
[2017-07-22 21:19:34] DEBUG - target.local
[2017-07-22 21:19:34] DEBUG - Executing: which lsb_release
[2017-07-22 21:19:34] DEBUG - Detecting shell...
[2017-07-22 21:19:34] DEBUG - Found shell in cache: bash
[2017-07-22 21:19:34] DEBUG - Shell/Bash: Got options:
[2017-07-22 21:19:34] DEBUG - $VAR1 = {
'valid_retval' => [
0
],
'fail_ok' => 1
};
[2017-07-22 21:19:34] DEBUG - SSH/executing: LC_ALL=C ; export LC_ALL; PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:/usr/pkg/bin:/usr/pkg/sbin; export PATH; which lsb_release
[2017-07-22 21:19:34] DEBUG - ========= ERR ============
[2017-07-22 21:19:34] DEBUG - which: no lsb_release in (/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:/usr/pkg/bin:/usr/pkg/sbin)
[2017-07-22 21:19:34] DEBUG - ========= ERR ============
[2017-07-22 21:19:34] DEBUG - Opening file: /etc/system-release for reading.
[2017-07-22 21:19:34] DEBUG - Opening /etc/system-release with mode: <
[2017-07-22 21:19:34] DEBUG - Opening file: /etc/redhat-release for reading.
[2017-07-22 21:19:34] DEBUG - Opening /etc/redhat-release with mode: <
[2017-07-22 21:19:34] DEBUG - Executing: which lsb_release
[2017-07-22 21:19:34] DEBUG - Detecting shell...
[2017-07-22 21:19:34] DEBUG - Found shell in cache: bash
[2017-07-22 21:19:34] DEBUG - Shell/Bash: Got options:
[2017-07-22 21:19:34] DEBUG - $VAR1 = {
'fail_ok' => 1,
'valid_retval' => [
0
]
};
[2017-07-22 21:19:34] DEBUG - SSH/executing: LC_ALL=C ; export LC_ALL; PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:/usr/pkg/bin:/usr/pkg/sbin; export PATH; which lsb_release
[2017-07-22 21:19:34] DEBUG - ========= ERR ============
[2017-07-22 21:19:34] DEBUG - which: no lsb_release in (/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:/usr/pkg/bin:/usr/pkg/sbin)
[2017-07-22 21:19:34] DEBUG - ========= ERR ============
[2017-07-22 21:19:34] DEBUG - Opening file: /etc/redhat-release for reading.
[2017-07-22 21:19:34] DEBUG - Opening /etc/redhat-release with mode: <
[2017-07-22 21:19:34] DEBUG - Executing: which lsb_release
[2017-07-22 21:19:34] DEBUG - Detecting shell...
[2017-07-22 21:19:34] DEBUG - Found shell in cache: bash
[2017-07-22 21:19:34] DEBUG - Shell/Bash: Got options:
[2017-07-22 21:19:34] DEBUG - $VAR1 = {
'valid_retval' => [
0
],
'fail_ok' => 1
};
[2017-07-22 21:19:34] DEBUG - SSH/executing: LC_ALL=C ; export LC_ALL; PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:/usr/pkg/bin:/usr/pkg/sbin; export PATH; which lsb_release
[2017-07-22 21:19:34] DEBUG - ========= ERR ============
[2017-07-22 21:19:34] DEBUG - which: no lsb_release in (/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:/usr/pkg/bin:/usr/pkg/sbin)
[2017-07-22 21:19:34] DEBUG - ========= ERR ============
[2017-07-22 21:19:34] DEBUG - Opening file: /etc/system-release for reading.
[2017-07-22 21:19:34] DEBUG - Opening /etc/system-release with mode: <
[2017-07-22 21:19:34] DEBUG - Opening file: /etc/redhat-release for reading.
[2017-07-22 21:19:34] DEBUG - Opening /etc/redhat-release with mode: <
[2017-07-22 21:19:34] DEBUG - Executing: which lsb_release
[2017-07-22 21:19:34] DEBUG - Detecting shell...
[2017-07-22 21:19:34] DEBUG - Found shell in cache: bash
[2017-07-22 21:19:34] DEBUG - Shell/Bash: Got options:
[2017-07-22 21:19:34] DEBUG - $VAR1 = {
'fail_ok' => 1,
'valid_retval' => [
0
]
};
[2017-07-22 21:19:34] DEBUG - SSH/executing: LC_ALL=C ; export LC_ALL; PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:/usr/pkg/bin:/usr/pkg/sbin; export PATH; which lsb_release
[2017-07-22 21:19:34] DEBUG - ========= ERR ============
[2017-07-22 21:19:34] DEBUG - which: no lsb_release in (/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:/usr/pkg/bin:/usr/pkg/sbin)
[2017-07-22 21:19:34] DEBUG - ========= ERR ============
[2017-07-22 21:19:34] DEBUG - Opening file: /etc/redhat-release for reading.
[2017-07-22 21:19:34] DEBUG - Opening /etc/redhat-release with mode: <
[2017-07-22 21:19:34] DEBUG - Executing: uname -s
[2017-07-22 21:19:34] DEBUG - Detecting shell...
[2017-07-22 21:19:34] DEBUG - Found shell in cache: bash
[2017-07-22 21:19:34] DEBUG - Shell/Bash: Got options:
[2017-07-22 21:19:34] DEBUG - $VAR1 = {
'valid_retval' => [
0
],
'fail_ok' => 0
};
[2017-07-22 21:19:34] DEBUG - SSH/executing: LC_ALL=C ; export LC_ALL; PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:/usr/pkg/bin:/usr/pkg/sbin; export PATH; uname -s
[2017-07-22 21:19:34] DEBUG - Linux
[2017-07-22 21:19:34] DEBUG - Using Rex::Pkg::Redhat for package management
[2017-07-22 21:19:34] DEBUG - Executing: rpm -qa --nosignature --nodigest --qf "%{NAME} %|EPOCH?{%{EPOCH}}:{0}| %{VERSION} %{RELEASE} %{ARCH}\n"
[2017-07-22 21:19:34] DEBUG - Detecting shell...
[2017-07-22 21:19:34] DEBUG - Found shell in cache: bash
[2017-07-22 21:19:34] DEBUG - Shell/Bash: Got options:
[2017-07-22 21:19:34] DEBUG - $VAR1 = {
'valid_retval' => [
0
],
'fail_ok' => 0
};
[2017-07-22 21:19:34] DEBUG - SSH/executing: LC_ALL=C ; export LC_ALL; PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:/usr/pkg/bin:/usr/pkg/sbin; export PATH; rpm -qa --nosignature --nodigest --qf "%{NAME} %|EPOCH?{%{EPOCH}}:{0}| %{VERSION} %{RELEASE} %{ARCH}\n"
[2017-07-22 21:19:34] DEBUG - unixODBC 0 2.3.1 11.el7 x86_64
filesystem 0 3.2 21.el7 x86_64
nss-softokn-freebl 0 3.16.2.3 14.4.el7 x86_64
iprutils 0 2.4.13.1 1.el7 x86_64
man-db 0 2.6.3 9.el7 x86_64
zlib 0 1.2.7 17.el7 x86_64
libsysfs 0 2.1.0 16.el7 x86_64
chkconfig 0 1.7.2 1.el7 x86_64
iwl2030-firmware 0 18.168.6.1 49.el7 noarch
libxml2 0 2.9.1 6.el7_2.3 x86_64
iwl6000-firmware 0 9.221.4.1 49.el7 noarch
gawk 0 4.0.2 4.el7 x86_64
iwl105-firmware 0 18.168.6.1 49.el7 noarch
libcap-ng 0 0.7.5 4.el7 x86_64
iwl2000-firmware 0 18.168.6.1 49.el7 noarch
glib2 0 2.46.2 4.el7 x86_64
gpg-pubkey 0 f4a80eb5 53a7ff4b (none)
libcap 0 2.22 8.el7 x86_64
perl-Pod-Perldoc 0 3.20 4.el7 noarch
elfutils-libs 0 0.166 2.el7 x86_64
perl-Pod-Usage 0 1.63 3.el7 noarch
diffutils 0 3.3 4.el7 x86_64
perl-Time-Local 0 1.2300 2.el7 noarch
file-libs 0 5.11 33.el7 x86_64
perl-PathTools 0 3.40 5.el7 x86_64
file 0 5.11 33.el7 x86_64
perl-Pod-Simple 1 3.28 4.el7 noarch
libxslt 0 1.1.28 5.el7 x86_64
perl-threads 0 1.87 4.el7 x86_64
groff-base 0 1.22.2 8.el7 x86_64
vim-filesystem 2 7.4.160 1.el7_3.1 x86_64
libunistring 0 0.9.3 9.el7 x86_64
bash-completion 1 2.1 6.el7 noarch
libtasn1 0 3.8 3.el7 x86_64
libmpc 0 1.0.1 3.el7 x86_64
slang 0 2.2.4 11.el7 x86_64
apr-util 0 1.5.2 6.el7 x86_64
hostname 0 3.13 3.el7 x86_64
patch 0 2.7.1 8.el7 x86_64
boost-thread 0 1.53.0 26.el7 x86_64
less 0 458 9.el7 x86_64
mokutil 0 0.9 2.el7 x86_64
nettle 0 2.7.1 8.el7 x86_64
systemtap-client 0 3.0 7.el7 x86_64
autoconf 0 2.69 11.el7 noarch
libdb-utils 0 5.3.21 19.el7 x86_64
dwz 0 0.11 3.el7 x86_64
make 1 3.82 23.el7 x86_64
rsync 0 3.0.9 17.el7 x86_64
ncurses 0 5.9 13.20130511.el7 x86_64
glibc-headers 0 2.17 157.el7_3.2 x86_64
libpcap 14 1.5.3 8.el7 x86_64
libstdc++-devel 0 4.8.5 11.el7 x86_64
coreutils 0 8.22 18.el7 x86_64
kernel-devel 0 3.10.0 514.21.1.el7 x86_64
perl-Test-Harness 0 3.28 3.el7 noarch
dbus-python 0 1.1.1 9.el7 x86_64
systemtap 0 3.0 7.el7 x86_64
gcc-gfortran 0 4.8.5 11.el7 x86_64
gettext 0 0.18.2.1 4.el7 x86_64
ctags 0 5.8 13.el7 x86_64
python-pyudev 0 0.15 7.el7_2.1 noarch
rcs 0 5.9.0 5.el7 x86_64
python-slip-dbus 0 0.4.0 2.el7 noarch
diffstat 0 1.57 4.el7 x86_64
python-configobj 0 4.7.2 7.el7 noarch
systemd-libs 0 219 30.el7_3.9 x86_64
nss-util 0 3.28.4 1.0.el7_3 x86_64
systemd 0 219 30.el7_3.9 x86_64
binutils 0 2.25.1 22.base.el7 x86_64
policycoreutils 0 2.5 11.el7_3 x86_64
libcurl 0 7.29.0 35.el7.centos x86_64
device-mapper 7 1.02.135 1.el7_3.4 x86_64
openldap 0 2.4.40 13.el7 x86_64
grubby 0 8.28 21.el7_3 x86_64
ca-certificates 0 2017.2.14 70.1.el7_3 noarch
fipscheck-lib 0 1.4.1 5.el7 x86_64
python-perf 0 3.10.0 514.21.1.el7 x86_64
rpm-build-libs 0 4.11.3 21.el7 x86_64
kernel-tools-libs 0 3.10.0 514.21.1.el7 x86_64
yum-plugin-fastestmirror 0 1.1.31 40.el7 noarch
firewalld 0 0.4.3.2 8.1.el7_3.3 noarch
libdaemon 0 0.14 7.el7 x86_64
tuned 0 2.7.1 3.el7_3.2 noarch
libpipeline 0 1.2.3 3.el7 x86_64
openssl 1 1.0.1e 60.el7_3.1 x86_64
libutempter 0 1.1.6 4.el7 x86_64
kernel 0 3.10.0 514.21.1.el7 x86_64
selinux-policy-targeted 0 3.13.1 102.el7_3.16 noarch
hardlink 1 1.0 19.el7 x86_64
microcode_ctl 2 2.1 16.3.el7_3 x86_64
cryptsetup-libs 0 1.7.2 1.el7 x86_64
libnetfilter_conntrack 0 1.0.6 1.el7_3 x86_64
dbus 1 1.6.12 17.el7 x86_64
libjpeg-turbo-devel 0 1.2.90 5.el7 x86_64
iputils 0 20160308 8.el7 x86_64
libICE 0 1.0.9 2.el7 x86_64
os-prober 0 1.58 9.el7 x86_64
libxcb 0 1.11 4.el7 x86_64
crontabs 0 1.11 6.20121102git.el7 noarch
expat-devel 0 2.1.0 10.el7_3 x86_64
plymouth 0 0.8.9 0.26.20140113.el7.centos x86_64
keyutils-libs-devel 0 1.5.8 3.el7 x86_64
dnsmasq 0 2.66 21.el7 x86_64
libkadm5 0 1.14.1 27.el7_3 x86_64
gnutls 0 3.3.24 1.el7 x86_64
openssl-devel 1 1.0.1e 60.el7_3.1 x86_64
fxload 0 2002_04_11 16.el7 x86_64
net-tools 0 2.0 0.17.20131004git.el7 x86_64
kbd-legacy 0 1.15.5 12.el7 noarch
GeoIP-update 0 1.5.0 11.el7 noarch
rsyslog 0 7.4.7 16.el7 x86_64
mod_ssl 1 2.4.6 45.el7.centos.4 x86_64
libtool-ltdl 0 2.4.2 22.el7_3 x86_64
setup 0 2.8.71 7.el7 noarch
kbd-misc 0 1.15.5 12.el7 noarch
ncurses-libs 0 5.9 13.20130511.el7 x86_64
libselinux 0 2.5 6.el7 x86_64
sed 0 4.2.2 5.el7 x86_64
btrfs-progs 0 4.4.1 1.el7 x86_64
popt 0 1.13 16.el7 x86_64
rootfiles 0 8.1 11.el7 noarch
libdb 0 5.3.21 19.el7 x86_64
iwl6000g2a-firmware 0 17.168.5.3 49.el7 noarch
iwl7265-firmware 0 22.0.7.0 49.el7 noarch
dbus-libs 1 1.6.12 17.el7 x86_64
ivtv-firmware 2 20080701 26.el7 noarch
pkgconfig 1 0.27.1 4.el7 x86_64
iwl1000-firmware 1 39.31.5.1 49.el7 noarch
libacl 0 2.2.51 12.el7 x86_64
perl-parent 1 0.225 244.el7 noarch
p11-kit 0 0.20.7 3.el7 x86_64
perl-Pod-Escapes 1 1.04 291.el7 noarch
findutils 1 4.5.11 5.el7 x86_64
perl-Storable 0 2.45 3.el7 x86_64
libidn 0 1.28 4.el7 x86_64
perl-Socket 0 2.010 4.el7 x86_64
libmnl 0 1.0.3 7.el7 x86_64
perl-Scalar-List-Utils 0 1.27 248.el7 x86_64
libcroco 0 0.6.8 5.el7 x86_64
perl-File-Temp 0 0.23.01 3.el7 noarch
e2fsprogs-libs 0 1.42.9 9.el7 x86_64
perl-Filter 0 1.49 3.el7 x86_64
which 0 2.20 7.el7 x86_64
vim-common 2 7.4.160 1.el7_3.1 x86_64
sysvinit-tools 0 2.88 14.dsf.el7 x86_64
glibc-common 0 2.17 157.el7_3.2 x86_64
libnfnetlink 0 1.0.1 4.el7 x86_64
m4 0 1.4.16 10.el7 x86_64
lzo 0 2.06 8.el7 x86_64
avahi-libs 0 0.6.31 17.el7 x86_64
gdbm 0 1.10 8.el7 x86_64
boost-system 0 1.53.0 26.el7 x86_64
gettext-libs 0 0.18.2.1 4.el7 x86_64
libgfortran 0 4.8.5 11.el7 x86_64
ipset 0 6.19 6.el7 x86_64
libdwarf 0 20130207 4.el7 x86_64
acl 0 2.2.51 12.el7 x86_64
libgnome-keyring 0 3.8.0 3.el7 x86_64
xml-common 0 0.6.3 39.el7 noarch
elfutils 0 0.166 2.el7 x86_64
mozjs17 0 17.0.0 19.el7 x86_64
pakchois 0 0.4 10.el7 x86_64
freetype 0 2.4.11 12.el7 x86_64
perl-Git 0 1.8.3.1 6.el7_2.1 noarch
snappy 0 1.1.0 3.el7 x86_64
glibc-devel 0 2.17 157.el7_3.2 x86_64
perl-srpm-macros 0 1 8.el7 noarch
python 0 2.7.5 48.el7 x86_64
systemtap-devel 0 3.0 7.el7 x86_64
python-decorator 0 3.4.0 3.el7 noarch
automake 0 1.13.4 3.el7 noarch
pam 0 1.1.8 18.el7 x86_64
cscope 0 15.8 9.el7 x86_64
subversion 0 1.7.14 10.el7 x86_64
plymouth-core-libs 0 0.8.9 0.26.20140113.el7.centos x86_64
byacc 0 1.9.20130304 3.el7 x86_64
python-slip 0 0.4.0 2.el7 noarch
swig 0 2.0.10 5.el7 x86_64
newt-python 0 0.52.15 4.el7 x86_64
bash 0 4.2.46 21.el7_3 x86_64
yum-metadata-parser 0 1.1.4 10.el7 x86_64
libuuid 0 2.23.2 33.el7_3.2 x86_64
nss 0 3.28.4 1.2.el7_3 x86_64
logrotate 0 3.8.6 12.el7 x86_64
util-linux 0 2.23.2 33.el7_3.2 x86_64
libssh2 0 1.4.3 10.el7_2.1 x86_64
libnl3 0 3.2.28 3.el7_3 x86_64
rpm 0 4.11.3 21.el7 x86_64
kpartx 0 0.4.9 99.el7_3.3 x86_64
dhcp-common 12 4.2.5 47.el7.centos x86_64
openscap 0 1.2.10 3.el7_3 x86_64
python-urlgrabber 0 3.10 8.el7 noarch
openssl-libs 1 1.0.1e 60.el7_3.1 x86_64
gnupg2 0 2.0.22 4.el7 x86_64
expat 0 2.1.0 10.el7_3 x86_64
pygpgme 0 0.3 9.el7 x86_64
bind-license 32 9.9.4 38.el7_3.3 noarch
libndp 0 1.2 7.el7 x86_64
bind-libs-lite 32 9.9.4 38.el7_3.3 x86_64
qrencode-libs 0 3.4.1 3.el7 x86_64
openssh-server 0 6.6.1p1 35.el7_3 x86_64
shadow-utils 2 4.1.5.1 24.el7 x86_64
wpa_supplicant 1 2.0 21.el7_3 x86_64
rdma 0 7.3_4.7_rc2 6.el7_3 noarch
lsscsi 0 0.27 4.el7 x86_64
libnl3-cli 0 3.2.28 3.el7_3 x86_64
nss-tools 0 3.28.4 1.2.el7_3 x86_64
libpciaccess 0 0.13.4 3.el7_3 x86_64
polkit-pkla-compat 0 0.1 4.el7 x86_64
libpng 2 1.5.13 7.el7_2 x86_64
libSM 0 1.2.2 2.el7 x86_64
cronie 0 1.4.11 14.el7_2.1 x86_64
libX11 0 1.6.3 3.el7 x86_64
plymouth-scripts 0 0.8.9 0.26.20140113.el7.centos x86_64
libidn-devel 0 1.28 4.el7 x86_64
pcre-devel 0 8.32 15.el7_2.1 x86_64
trousers 0 0.3.13 1.el7 x86_64
libverto-devel 0 0.2.5 4.el7 x86_64
postgresql-libs 0 9.2.18 1.el7 x86_64
json-c 0 0.11 4.el7_0 x86_64
mailx 0 12.5 12.el7_0 x86_64
kbd 0 1.15.5 12.el7 x86_64
mailcap 0 2.1.41 2.el7 noarch
postgresql-server 0 9.2.18 1.el7 x86_64
kexec-tools 0 2.0.7 50.el7 x86_64
centos-release 0 7 3.1611.el7.centos x86_64
postfix 2 2.10.1 6.el7 x86_64
ncurses-base 0 5.9 13.20130511.el7 noarch
aic94xx-firmware 0 30 6.el7 noarch
libstdc++ 0 4.8.5 11.el7 x86_64
pcre 0 8.32 15.el7_2.1 x86_64
xz-libs 0 5.2.2 1.el7 x86_64
bzip2-libs 0 1.0.6 13.el7 x86_64
iwl6000g2b-firmware 0 17.168.5.2 49.el7 noarch
iwl5000-firmware 0 8.83.5.1_1 49.el7 noarch
libgpg-error 0 1.12 3.el7 x86_64
iwl3160-firmware 0 22.0.7.0 49.el7 noarch
elfutils-libelf 0 0.166 2.el7 x86_64
iwl135-firmware 0 18.168.6.1 49.el7 noarch
libffi 0 3.0.13 18.el7 x86_64
iwl4965-firmware 0 228.61.2.24 49.el7 noarch
libattr 0 2.4.46 12.el7 x86_64
perl-HTTP-Tiny 0 0.033 3.el7 noarch
perl-Encode 0 2.51 7.el7 x86_64
sqlite 0 3.7.17 8.el7 x86_64
perl-Exporter 0 5.68 3.el7 noarch
jansson 0 2.4 6.el7 x86_64
perl-Carp 0 1.26 244.el7 noarch
pciutils-libs 0 3.5.1 1.el7 x86_64
perl-libs 4 5.16.3 291.el7 x86_64
perl-File-Path 0 2.09 2.el7 noarch
cyrus-sasl-lib 0 2.1.26 20.el7_2 x86_64
perl-Getopt-Long 0 2.40 2.el7 noarch
xz 0 5.2.2 1.el7 x86_64
gpm-libs 0 1.20.7 5.el7 x86_64
libedit 0 3.0 12.20121213cvs.el7 x86_64
glibc 0 2.17 157.el7_3.2 x86_64
libquadmath 0 4.8.5 11.el7 x86_64
tcp_wrappers-libs 0 7.6 77.el7 x86_64
zip 0 3.0 11.el7 x86_64
ethtool 2 4.5 3.el7 x86_64
perl-Error 1 0.17020 2.el7 noarch
iproute 0 3.10.0 74.el7 x86_64
cpp 0 4.8.5 11.el7 x86_64
ipset-libs 0 6.19 6.el7 x86_64
dyninst 0 8.2.0 2.el7 x86_64
tar 2 1.26 31.el7 x86_64
perl-TermReadKey 0 2.30 20.el7 x86_64
gsettings-desktop-schemas 0 3.14.2 1.el7 x86_64
bzip2 0 1.0.6 13.el7 x86_64
pinentry 0 0.8.1 17.el7 x86_64
neon 0 0.30.0 3.el7 x86_64
libselinux-utils 0 2.5 6.el7 x86_64
git 0 1.8.3.1 6.el7_2.1 x86_64
libproxy 0 0.4.11 10.el7 x86_64
gcc 0 4.8.5 11.el7 x86_64
libverto 0 0.2.5 4.el7 x86_64
redhat-rpm-config 0 9.1.0 72.el7.centos noarch
python-libs 0 2.7.5 48.el7 x86_64
gettext-common-devel 0 0.18.2.1 4.el7 noarch
cracklib 0 2.9.0 11.el7 x86_64
libtool 0 2.4.2 22.el7_3 x86_64
libpwquality 0 1.2.3 4.el7 x86_64
rpm-build 0 4.11.3 21.el7 x86_64
procps-ng 0 3.3.10 10.el7 x86_64
bison 0 2.7 4.el7 x86_64
centos-logos 0 70.0.6 3.el7.centos noarch
doxygen 1 1.8.5 3.el7 x86_64
libselinux-python 0 2.5 6.el7 x86_64
indent 0 2.2.11 13.el7 x86_64
python-iniparse 0 0.4 9.el7 noarch
audit-libs 0 2.6.5 3.el7_3.1 x86_64
pyxattr 0 0.5.1 5.el7 x86_64
libblkid 0 2.23.2 33.el7_3.2 x86_64
nss-sysinit 0 3.28.4 1.2.el7_3 x86_64
systemd-sysv 0 219 30.el7_3.9 x86_64
mariadb-libs 1 5.5.52 1.el7 x86_64
selinux-policy 0 3.13.1 102.el7_3.16 noarch
rpm-libs 0 4.11.3 21.el7 x86_64
dracut 0 033 463.el7_3.1 x86_64
dhcp-libs 12 4.2.5 47.el7.centos x86_64
openscap-scanner 0 1.2.10 3.el7_3 x86_64
python-pycurl 0 7.19.0 19.el7 x86_64
krb5-libs 0 1.14.1 27.el7_3 x86_64
pth 0 2.0.7 23.el7 x86_64
polkit 0 0.112 12.el7_3 x86_64
gpgme 0 1.3.2 5.el7 x86_64
firewalld-filesystem 0 0.4.3.2 8.1.el7_3.3 noarch
kernel-tools 0 3.10.0 514.21.1.el7 x86_64
openssh-clients 0 6.6.1p1 35.el7_3 x86_64
NetworkManager-libnm 1 1.4.0 20.el7_3 x86_64
dracut-network 0 033 463.el7_3.1 x86_64
libestr 0 0.1.9 2.el7 x86_64
irqbalance 3 1.0.7 6.el7_3.1 x86_64
xfsprogs 0 4.5.0 9.el7_3 x86_64
kmod 0 20 9.el7 x86_64
tzdata 0 2017b 1.el7 noarch
zlib-devel 0 1.2.7 17.el7 x86_64
dhclient 12 4.2.5 47.el7.centos x86_64
libX11-common 0 1.6.3 3.el7 noarch
cronie-anacron 0 1.4.11 14.el7_2.1 x86_64
giflib 0 4.1.6 9.el7 x86_64
libdrm 0 2.4.67 3.el7 x86_64
libzip 0 0.10.1 8.el7 x86_64
grub2-tools 1 2.02 0.44.el7.centos x86_64
libsepol-devel 0 2.5 6.el7 x86_64
ebtables 0 2.0.10 15.el7 x86_64
libcom_err-devel 0 1.42.9 9.el7 x86_64
libsoup 0 2.48.1 6.el7 x86_64
postgresql 0 9.2.18 1.el7 x86_64
alsa-tools-firmware 0 1.1.0 1.el7 x86_64
libevent 0 2.0.21 4.el7 x86_64
kernel 0 3.10.0 514.el7 x86_64
httpd-tools 0 2.4.6 45.el7.centos.4 x86_64
libgcc 0 4.8.5 11.el7 x86_64
grub2 1 2.02 0.44.el7.centos x86_64
sphinx 0 2.2.11 1.rhel7 x86_64
basesystem 0 10.0 7.el7.centos noarch
biosdevname 0 0.7.2 1.el7 x86_64
parted 0 3.1 28.el7 x86_64
libsepol 0 2.5 6.el7 x86_64
authconfig 0 6.2.8 14.el7 x86_64
info 0 5.1 4.el7 x86_64
passwd 0 0.79 4.el7 x86_64
e2fsprogs 0 1.42.9 9.el7 x86_64
libcom_err 0 1.42.9 9.el7 x86_64
iwl6050-firmware 0 41.28.5.1 49.el7 noarch
grep 0 2.20 2.el7 x86_64
iwl5150-firmware 0 8.24.2.2 49.el7 noarch
readline 0 6.2 9.el7 x86_64
iwl3945-firmware 0 15.32.2.9 49.el7 noarch
iwl100-firmware 0 39.31.5.1 49.el7 noarch
shared-mime-info 0 1.1 9.el7 x86_64
iwl7260-firmware 0 22.0.7.0 49.el7 noarch
cpio 0 2.11 24.el7 x86_64
perl-podlators 0 2.5.1 3.el7 noarch
lua 0 5.1.4 15.el7 x86_64
perl-Text-ParseWords 0 3.29 4.el7 noarch
perl-constant 0 1.27 2.el7 noarch
gmp 1 6.0.0 12.el7_1 x86_64
perl-Time-HiRes 4 1.9725 3.el7 x86_64
nss-softokn 0 3.16.2.3 14.4.el7 x86_64
perl-macros 4 5.16.3 291.el7 x86_64
libassuan 0 2.1.0 3.el7 x86_64
perl-threads-shared 0 1.43 6.el7 x86_64
kmod-libs 0 20 9.el7 x86_64
perl 4 5.16.3 291.el7 x86_64
libgomp 0 4.8.5 11.el7 x86_64
vim-enhanced 2 7.4.160 1.el7_3.1 x86_64
p11-kit-trust 0 0.20.7 3.el7 x86_64
mpfr 0 3.1.1 4.el7 x86_64
newt 0 0.52.15 4.el7 x86_64
apr 0 1.4.8 3.el7 x86_64
keyutils-libs 0 1.5.8 3.el7 x86_64
unzip 0 6.0 16.el7 x86_64
iptables 0 1.4.21 17.el7 x86_64
perl-Thread-Queue 0 3.02 2.el7 noarch
libteam 0 1.25 4.el7 x86_64
perl-XML-Parser 0 2.41 10.el7 x86_64
dbus-glib 0 0.100 7.el7 x86_64
systemtap-runtime 0 3.0 7.el7 x86_64
gobject-introspection 0 1.42.0 1.el7 x86_64
perl-Data-Dumper 0 2.145 3.el7 x86_64
libss 0 1.42.9 9.el7 x86_64
gdb 0 7.6.1 94.el7 x86_64
GeoIP 0 1.5.0 11.el7 x86_64
subversion-libs 0 1.7.14 10.el7 x86_64
libmodman 0 2.0.1 8.el7 x86_64
kernel-headers 0 3.10.0 514.21.1.el7 x86_64
numactl-libs 0 2.0.9 6.el7_2 x86_64
libquadmath-devel 0 4.8.5 11.el7 x86_64
emacs-filesystem 1 24.3 19.el7_3 noarch
gzip 0 1.5 8.el7 x86_64
gettext-devel 0 0.18.2.1 4.el7 x86_64
cracklib-dicts 0 2.9.0 11.el7 x86_64
intltool 0 0.50.2 6.el7 noarch
gcc-c++ 0 4.8.5 11.el7 x86_64
pygobject3-base 0 3.14.0 3.el7 x86_64
flex 0 2.5.37 3.el7 x86_64
rpm-sign 0 4.11.3 21.el7 x86_64
patchutils 0 0.3.3 4.el7 x86_64
pyliblzma 0 0.5.3 11.el7 x86_64
libgcrypt 0 1.5.3 13.el7_3.1 x86_64
nspr 0 4.13.1 1.0.el7_3 x86_64
libmount 0 2.23.2 33.el7_3.2 x86_64
alsa-lib 0 1.1.1 1.el7 x86_64
libsemanage 0 2.5 5.1.el7_3 x86_64
curl 0 7.29.0 35.el7.centos x86_64
device-mapper-libs 7 1.02.135 1.el7_3.4 x86_64
libuser 0 0.60 7.el7_1 x86_64
initscripts 0 9.49.37 1.el7_3.1 x86_64
libgudev1 0 219 30.el7_3.9 x86_64
fipscheck 0 1.4.1 5.el7 x86_64
openssh 0 6.6.1p1 35.el7_3 x86_64
rpm-python 0 4.11.3 21.el7 x86_64
vim-minimal 2 7.4.160 1.el7_3.1 x86_64
yum 0 3.4.3 150.el7.centos noarch
python-firewall 0 0.4.3.2 8.1.el7_3.3 noarch
teamd 0 1.25 4.el7 x86_64
sudo 0 1.8.6p7 22.el7_3 x86_64
ustr 0 1.0.4 16.el7 x86_64
audit 0 2.6.5 3.el7_3.1 x86_64
scap-security-guide 0 0.1.30 5.el7.centos noarch
virt-what 0 1.13 8.el7 x86_64
dracut-config-rescue 0 033 463.el7_3.1 x86_64
chrony 0 2.1.1 4.el7.centos x86_64
dmidecode 1 3.0 2.1.el7_3 x86_64
libjpeg-turbo 0 1.2.90 5.el7 x86_64
libpng-devel 2 1.5.13 7.el7_2 x86_64
hwdata 0 0.252 8.4.el7 x86_64
libXau 0 1.0.8 2.1.el7 x86_64
giflib-devel 0 4.1.6 9.el7 x86_64
pciutils 0 3.5.1 1.el7 x86_64
libzip-devel 0 0.10.1 8.el7 x86_64
ppp 0 2.4.5 33.el7 x86_64
libselinux-devel 0 2.5 6.el7 x86_64
glib-networking 0 2.42.0 1.el7 x86_64
krb5-devel 0 1.14.1 27.el7_3 x86_64
alsa-firmware 0 1.0.28 2.el7 noarch
postgresql-devel 0 9.2.18 1.el7 x86_64
linux-firmware 0 20160830 49.git7534e19.el7 noarch
memcached 0 1.4.15 10.el7_3.1 x86_64
httpd 0 2.4.6 45.el7.centos.4 x86_64
[2017-07-22 21:19:34] DEBUG - Using Rex::Pkg::Redhat for package management
[2017-07-22 21:19:34] DEBUG - Checking if postgresql-server is installed
[2017-07-22 21:19:34] DEBUG - Executing: rpm -qa --nosignature --nodigest --qf "%{NAME} %|EPOCH?{%{EPOCH}}:{0}| %{VERSION} %{RELEASE} %{ARCH}\n"
[2017-07-22 21:19:34] DEBUG - Detecting shell...
[2017-07-22 21:19:34] DEBUG - Found shell in cache: bash
[2017-07-22 21:19:34] DEBUG - Shell/Bash: Got options:
[2017-07-22 21:19:34] DEBUG - $VAR1 = {
'valid_retval' => [
0
],
'fail_ok' => 0
};
[2017-07-22 21:19:34] DEBUG - SSH/executing: LC_ALL=C ; export LC_ALL; PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:/usr/pkg/bin:/usr/pkg/sbin; export PATH; rpm -qa --nosignature --nodigest --qf "%{NAME} %|EPOCH?{%{EPOCH}}:{0}| %{VERSION} %{RELEASE} %{ARCH}\n"
[2017-07-22 21:19:34] DEBUG - unixODBC 0 2.3.1 11.el7 x86_64
filesystem 0 3.2 21.el7 x86_64
nss-softokn-freebl 0 3.16.2.3 14.4.el7 x86_64
iprutils 0 2.4.13.1 1.el7 x86_64
man-db 0 2.6.3 9.el7 x86_64
zlib 0 1.2.7 17.el7 x86_64
libsysfs 0 2.1.0 16.el7 x86_64
chkconfig 0 1.7.2 1.el7 x86_64
iwl2030-firmware 0 18.168.6.1 49.el7 noarch
libxml2 0 2.9.1 6.el7_2.3 x86_64
iwl6000-firmware 0 9.221.4.1 49.el7 noarch
gawk 0 4.0.2 4.el7 x86_64
iwl105-firmware 0 18.168.6.1 49.el7 noarch
libcap-ng 0 0.7.5 4.el7 x86_64
iwl2000-firmware 0 18.168.6.1 49.el7 noarch
glib2 0 2.46.2 4.el7 x86_64
gpg-pubkey 0 f4a80eb5 53a7ff4b (none)
libcap 0 2.22 8.el7 x86_64
perl-Pod-Perldoc 0 3.20 4.el7 noarch
elfutils-libs 0 0.166 2.el7 x86_64
perl-Pod-Usage 0 1.63 3.el7 noarch
diffutils 0 3.3 4.el7 x86_64
perl-Time-Local 0 1.2300 2.el7 noarch
file-libs 0 5.11 33.el7 x86_64
perl-PathTools 0 3.40 5.el7 x86_64
file 0 5.11 33.el7 x86_64
perl-Pod-Simple 1 3.28 4.el7 noarch
libxslt 0 1.1.28 5.el7 x86_64
perl-threads 0 1.87 4.el7 x86_64
groff-base 0 1.22.2 8.el7 x86_64
vim-filesystem 2 7.4.160 1.el7_3.1 x86_64
libunistring 0 0.9.3 9.el7 x86_64
bash-completion 1 2.1 6.el7 noarch
libtasn1 0 3.8 3.el7 x86_64
libmpc 0 1.0.1 3.el7 x86_64
slang 0 2.2.4 11.el7 x86_64
apr-util 0 1.5.2 6.el7 x86_64
hostname 0 3.13 3.el7 x86_64
patch 0 2.7.1 8.el7 x86_64
boost-thread 0 1.53.0 26.el7 x86_64
less 0 458 9.el7 x86_64
mokutil 0 0.9 2.el7 x86_64
nettle 0 2.7.1 8.el7 x86_64
systemtap-client 0 3.0 7.el7 x86_64
autoconf 0 2.69 11.el7 noarch
libdb-utils 0 5.3.21 19.el7 x86_64
dwz 0 0.11 3.el7 x86_64
make 1 3.82 23.el7 x86_64
rsync 0 3.0.9 17.el7 x86_64
ncurses 0 5.9 13.20130511.el7 x86_64
glibc-headers 0 2.17 157.el7_3.2 x86_64
libpcap 14 1.5.3 8.el7 x86_64
libstdc++-devel 0 4.8.5 11.el7 x86_64
coreutils 0 8.22 18.el7 x86_64
kernel-devel 0 3.10.0 514.21.1.el7 x86_64
perl-Test-Harness 0 3.28 3.el7 noarch
dbus-python 0 1.1.1 9.el7 x86_64
systemtap 0 3.0 7.el7 x86_64
gcc-gfortran 0 4.8.5 11.el7 x86_64
gettext 0 0.18.2.1 4.el7 x86_64
ctags 0 5.8 13.el7 x86_64
python-pyudev 0 0.15 7.el7_2.1 noarch
rcs 0 5.9.0 5.el7 x86_64
python-slip-dbus 0 0.4.0 2.el7 noarch
diffstat 0 1.57 4.el7 x86_64
python-configobj 0 4.7.2 7.el7 noarch
systemd-libs 0 219 30.el7_3.9 x86_64
nss-util 0 3.28.4 1.0.el7_3 x86_64
systemd 0 219 30.el7_3.9 x86_64
binutils 0 2.25.1 22.base.el7 x86_64
policycoreutils 0 2.5 11.el7_3 x86_64
libcurl 0 7.29.0 35.el7.centos x86_64
device-mapper 7 1.02.135 1.el7_3.4 x86_64
openldap 0 2.4.40 13.el7 x86_64
grubby 0 8.28 21.el7_3 x86_64
ca-certificates 0 2017.2.14 70.1.el7_3 noarch
fipscheck-lib 0 1.4.1 5.el7 x86_64
python-perf 0 3.10.0 514.21.1.el7 x86_64
rpm-build-libs 0 4.11.3 21.el7 x86_64
kernel-tools-libs 0 3.10.0 514.21.1.el7 x86_64
yum-plugin-fastestmirror 0 1.1.31 40.el7 noarch
firewalld 0 0.4.3.2 8.1.el7_3.3 noarch
libdaemon 0 0.14 7.el7 x86_64
tuned 0 2.7.1 3.el7_3.2 noarch
libpipeline 0 1.2.3 3.el7 x86_64
openssl 1 1.0.1e 60.el7_3.1 x86_64
libutempter 0 1.1.6 4.el7 x86_64
kernel 0 3.10.0 514.21.1.el7 x86_64
selinux-policy-targeted 0 3.13.1 102.el7_3.16 noarch
hardlink 1 1.0 19.el7 x86_64
microcode_ctl 2 2.1 16.3.el7_3 x86_64
cryptsetup-libs 0 1.7.2 1.el7 x86_64
libnetfilter_conntrack 0 1.0.6 1.el7_3 x86_64
dbus 1 1.6.12 17.el7 x86_64
libjpeg-turbo-devel 0 1.2.90 5.el7 x86_64
iputils 0 20160308 8.el7 x86_64
libICE 0 1.0.9 2.el7 x86_64
os-prober 0 1.58 9.el7 x86_64
libxcb 0 1.11 4.el7 x86_64
crontabs 0 1.11 6.20121102git.el7 noarch
expat-devel 0 2.1.0 10.el7_3 x86_64
plymouth 0 0.8.9 0.26.20140113.el7.centos x86_64
keyutils-libs-devel 0 1.5.8 3.el7 x86_64
dnsmasq 0 2.66 21.el7 x86_64
libkadm5 0 1.14.1 27.el7_3 x86_64
gnutls 0 3.3.24 1.el7 x86_64
openssl-devel 1 1.0.1e 60.el7_3.1 x86_64
fxload 0 2002_04_11 16.el7 x86_64
net-tools 0 2.0 0.17.20131004git.el7 x86_64
kbd-legacy 0 1.15.5 12.el7 noarch
GeoIP-update 0 1.5.0 11.el7 noarch
rsyslog 0 7.4.7 16.el7 x86_64
mod_ssl 1 2.4.6 45.el7.centos.4 x86_64
libtool-ltdl 0 2.4.2 22.el7_3 x86_64
setup 0 2.8.71 7.el7 noarch
kbd-misc 0 1.15.5 12.el7 noarch
ncurses-libs 0 5.9 13.20130511.el7 x86_64
libselinux 0 2.5 6.el7 x86_64
sed 0 4.2.2 5.el7 x86_64
btrfs-progs 0 4.4.1 1.el7 x86_64
popt 0 1.13 16.el7 x86_64
rootfiles 0 8.1 11.el7 noarch
libdb 0 5.3.21 19.el7 x86_64
iwl6000g2a-firmware 0 17.168.5.3 49.el7 noarch
iwl7265-firmware 0 22.0.7.0 49.el7 noarch
dbus-libs 1 1.6.12 17.el7 x86_64
ivtv-firmware 2 20080701 26.el7 noarch
pkgconfig 1 0.27.1 4.el7 x86_64
iwl1000-firmware 1 39.31.5.1 49.el7 noarch
libacl 0 2.2.51 12.el7 x86_64
perl-parent 1 0.225 244.el7 noarch
p11-kit 0 0.20.7 3.el7 x86_64
perl-Pod-Escapes 1 1.04 291.el7 noarch
findutils 1 4.5.11 5.el7 x86_64
perl-Storable 0 2.45 3.el7 x86_64
libidn 0 1.28 4.el7 x86_64
perl-Socket 0 2.010 4.el7 x86_64
libmnl 0 1.0.3 7.el7 x86_64
perl-Scalar-List-Utils 0 1.27 248.el7 x86_64
libcroco 0 0.6.8 5.el7 x86_64
perl-File-Temp 0 0.23.01 3.el7 noarch
e2fsprogs-libs 0 1.42.9 9.el7 x86_64
perl-Filter 0 1.49 3.el7 x86_64
which 0 2.20 7.el7 x86_64
vim-common 2 7.4.160 1.el7_3.1 x86_64
sysvinit-tools 0 2.88 14.dsf.el7 x86_64
glibc-common 0 2.17 157.el7_3.2 x86_64
libnfnetlink 0 1.0.1 4.el7 x86_64
m4 0 1.4.16 10.el7 x86_64
lzo 0 2.06 8.el7 x86_64
avahi-libs 0 0.6.31 17.el7 x86_64
gdbm 0 1.10 8.el7 x86_64
boost-system 0 1.53.0 26.el7 x86_64
gettext-libs 0 0.18.2.1 4.el7 x86_64
libgfortran 0 4.8.5 11.el7 x86_64
ipset 0 6.19 6.el7 x86_64
libdwarf 0 20130207 4.el7 x86_64
acl 0 2.2.51 12.el7 x86_64
libgnome-keyring 0 3.8.0 3.el7 x86_64
xml-common 0 0.6.3 39.el7 noarch
elfutils 0 0.166 2.el7 x86_64
mozjs17 0 17.0.0 19.el7 x86_64
pakchois 0 0.4 10.el7 x86_64
freetype 0 2.4.11 12.el7 x86_64
perl-Git 0 1.8.3.1 6.el7_2.1 noarch
snappy 0 1.1.0 3.el7 x86_64
glibc-devel 0 2.17 157.el7_3.2 x86_64
perl-srpm-macros 0 1 8.el7 noarch
python 0 2.7.5 48.el7 x86_64
systemtap-devel 0 3.0 7.el7 x86_64
python-decorator 0 3.4.0 3.el7 noarch
automake 0 1.13.4 3.el7 noarch
pam 0 1.1.8 18.el7 x86_64
cscope 0 15.8 9.el7 x86_64
subversion 0 1.7.14 10.el7 x86_64
plymouth-core-libs 0 0.8.9 0.26.20140113.el7.centos x86_64
byacc 0 1.9.20130304 3.el7 x86_64
python-slip 0 0.4.0 2.el7 noarch
swig 0 2.0.10 5.el7 x86_64
newt-python 0 0.52.15 4.el7 x86_64
bash 0 4.2.46 21.el7_3 x86_64
yum-metadata-parser 0 1.1.4 10.el7 x86_64
libuuid 0 2.23.2 33.el7_3.2 x86_64
nss 0 3.28.4 1.2.el7_3 x86_64
logrotate 0 3.8.6 12.el7 x86_64
util-linux 0 2.23.2 33.el7_3.2 x86_64
libssh2 0 1.4.3 10.el7_2.1 x86_64
libnl3 0 3.2.28 3.el7_3 x86_64
rpm 0 4.11.3 21.el7 x86_64
kpartx 0 0.4.9 99.el7_3.3 x86_64
dhcp-common 12 4.2.5 47.el7.centos x86_64
openscap 0 1.2.10 3.el7_3 x86_64
python-urlgrabber 0 3.10 8.el7 noarch
openssl-libs 1 1.0.1e 60.el7_3.1 x86_64
gnupg2 0 2.0.22 4.el7 x86_64
expat 0 2.1.0 10.el7_3 x86_64
pygpgme 0 0.3 9.el7 x86_64
bind-license 32 9.9.4 38.el7_3.3 noarch
libndp 0 1.2 7.el7 x86_64
bind-libs-lite 32 9.9.4 38.el7_3.3 x86_64
qrencode-libs 0 3.4.1 3.el7 x86_64
openssh-server 0 6.6.1p1 35.el7_3 x86_64
shadow-utils 2 4.1.5.1 24.el7 x86_64
wpa_supplicant 1 2.0 21.el7_3 x86_64
rdma 0 7.3_4.7_rc2 6.el7_3 noarch
lsscsi 0 0.27 4.el7 x86_64
libnl3-cli 0 3.2.28 3.el7_3 x86_64
nss-tools 0 3.28.4 1.2.el7_3 x86_64
libpciaccess 0 0.13.4 3.el7_3 x86_64
polkit-pkla-compat 0 0.1 4.el7 x86_64
libpng 2 1.5.13 7.el7_2 x86_64
libSM 0 1.2.2 2.el7 x86_64
cronie 0 1.4.11 14.el7_2.1 x86_64
libX11 0 1.6.3 3.el7 x86_64
plymouth-scripts 0 0.8.9 0.26.20140113.el7.centos x86_64
libidn-devel 0 1.28 4.el7 x86_64
pcre-devel 0 8.32 15.el7_2.1 x86_64
trousers 0 0.3.13 1.el7 x86_64
libverto-devel 0 0.2.5 4.el7 x86_64
postgresql-libs 0 9.2.18 1.el7 x86_64
json-c 0 0.11 4.el7_0 x86_64
mailx 0 12.5 12.el7_0 x86_64
kbd 0 1.15.5 12.el7 x86_64
mailcap 0 2.1.41 2.el7 noarch
postgresql-server 0 9.2.18 1.el7 x86_64
kexec-tools 0 2.0.7 50.el7 x86_64
centos-release 0 7 3.1611.el7.centos x86_64
postfix 2 2.10.1 6.el7 x86_64
ncurses-base 0 5.9 13.20130511.el7 noarch
aic94xx-firmware 0 30 6.el7 noarch
libstdc++ 0 4.8.5 11.el7 x86_64
pcre 0 8.32 15.el7_2.1 x86_64
xz-libs 0 5.2.2 1.el7 x86_64
bzip2-libs 0 1.0.6 13.el7 x86_64
iwl6000g2b-firmware 0 17.168.5.2 49.el7 noarch
iwl5000-firmware 0 8.83.5.1_1 49.el7 noarch
libgpg-error 0 1.12 3.el7 x86_64
iwl3160-firmware 0 22.0.7.0 49.el7 noarch
elfutils-libelf 0 0.166 2.el7 x86_64
iwl135-firmware 0 18.168.6.1 49.el7 noarch
libffi 0 3.0.13 18.el7 x86_64
iwl4965-firmware 0 228.61.2.24 49.el7 noarch
libattr 0 2.4.46 12.el7 x86_64
perl-HTTP-Tiny 0 0.033 3.el7 noarch
perl-Encode 0 2.51 7.el7 x86_64
sqlite 0 3.7.17 8.el7 x86_64
perl-Exporter 0 5.68 3.el7 noarch
jansson 0 2.4 6.el7 x86_64
perl-Carp 0 1.26 244.el7 noarch
pciutils-libs 0 3.5.1 1.el7 x86_64
perl-libs 4 5.16.3 291.el7 x86_64
perl-File-Path 0 2.09 2.el7 noarch
cyrus-sasl-lib 0 2.1.26 20.el7_2 x86_64
perl-Getopt-Long 0 2.40 2.el7 noarch
xz 0 5.2.2 1.el7 x86_64
gpm-libs 0 1.20.7 5.el7 x86_64
libedit 0 3.0 12.20121213cvs.el7 x86_64
glibc 0 2.17 157.el7_3.2 x86_64
libquadmath 0 4.8.5 11.el7 x86_64
tcp_wrappers-libs 0 7.6 77.el7 x86_64
zip 0 3.0 11.el7 x86_64
ethtool 2 4.5 3.el7 x86_64
perl-Error 1 0.17020 2.el7 noarch
iproute 0 3.10.0 74.el7 x86_64
cpp 0 4.8.5 11.el7 x86_64
ipset-libs 0 6.19 6.el7 x86_64
dyninst 0 8.2.0 2.el7 x86_64
tar 2 1.26 31.el7 x86_64
perl-TermReadKey 0 2.30 20.el7 x86_64
gsettings-desktop-schemas 0 3.14.2 1.el7 x86_64
bzip2 0 1.0.6 13.el7 x86_64
pinentry 0 0.8.1 17.el7 x86_64
neon 0 0.30.0 3.el7 x86_64
libselinux-utils 0 2.5 6.el7 x86_64
git 0 1.8.3.1 6.el7_2.1 x86_64
libproxy 0 0.4.11 10.el7 x86_64
gcc 0 4.8.5 11.el7 x86_64
libverto 0 0.2.5 4.el7 x86_64
redhat-rpm-config 0 9.1.0 72.el7.centos noarch
python-libs 0 2.7.5 48.el7 x86_64
gettext-common-devel 0 0.18.2.1 4.el7 noarch
cracklib 0 2.9.0 11.el7 x86_64
libtool 0 2.4.2 22.el7_3 x86_64
libpwquality 0 1.2.3 4.el7 x86_64
rpm-build 0 4.11.3 21.el7 x86_64
procps-ng 0 3.3.10 10.el7 x86_64
bison 0 2.7 4.el7 x86_64
centos-logos 0 70.0.6 3.el7.centos noarch
doxygen 1 1.8.5 3.el7 x86_64
libselinux-python 0 2.5 6.el7 x86_64
indent 0 2.2.11 13.el7 x86_64
python-iniparse 0 0.4 9.el7 noarch
audit-libs 0 2.6.5 3.el7_3.1 x86_64
pyxattr 0 0.5.1 5.el7 x86_64
libblkid 0 2.23.2 33.el7_3.2 x86_64
nss-sysinit 0 3.28.4 1.2.el7_3 x86_64
systemd-sysv 0 219 30.el7_3.9 x86_64
mariadb-libs 1 5.5.52 1.el7 x86_64
selinux-policy 0 3.13.1 102.el7_3.16 noarch
rpm-libs 0 4.11.3 21.el7 x86_64
dracut 0 033 463.el7_3.1 x86_64
dhcp-libs 12 4.2.5 47.el7.centos x86_64
openscap-scanner 0 1.2.10 3.el7_3 x86_64
python-pycurl 0 7.19.0 19.el7 x86_64
krb5-libs 0 1.14.1 27.el7_3 x86_64
pth 0 2.0.7 23.el7 x86_64
polkit 0 0.112 12.el7_3 x86_64
gpgme 0 1.3.2 5.el7 x86_64
firewalld-filesystem 0 0.4.3.2 8.1.el7_3.3 noarch
kernel-tools 0 3.10.0 514.21.1.el7 x86_64
openssh-clients 0 6.6.1p1 35.el7_3 x86_64
NetworkManager-libnm 1 1.4.0 20.el7_3 x86_64
dracut-network 0 033 463.el7_3.1 x86_64
libestr 0 0.1.9 2.el7 x86_64
irqbalance 3 1.0.7 6.el7_3.1 x86_64
xfsprogs 0 4.5.0 9.el7_3 x86_64
kmod 0 20 9.el7 x86_64
tzdata 0 2017b 1.el7 noarch
zlib-devel 0 1.2.7 17.el7 x86_64
dhclient 12 4.2.5 47.el7.centos x86_64
libX11-common 0 1.6.3 3.el7 noarch
cronie-anacron 0 1.4.11 14.el7_2.1 x86_64
giflib 0 4.1.6 9.el7 x86_64
libdrm 0 2.4.67 3.el7 x86_64
libzip 0 0.10.1 8.el7 x86_64
grub2-tools 1 2.02 0.44.el7.centos x86_64
libsepol-devel 0 2.5 6.el7 x86_64
ebtables 0 2.0.10 15.el7 x86_64
libcom_err-devel 0 1.42.9 9.el7 x86_64
libsoup 0 2.48.1 6.el7 x86_64
postgresql 0 9.2.18 1.el7 x86_64
alsa-tools-firmware 0 1.1.0 1.el7 x86_64
libevent 0 2.0.21 4.el7 x86_64
kernel 0 3.10.0 514.el7 x86_64
httpd-tools 0 2.4.6 45.el7.centos.4 x86_64
libgcc 0 4.8.5 11.el7 x86_64
grub2 1 2.02 0.44.el7.centos x86_64
sphinx 0 2.2.11 1.rhel7 x86_64
basesystem 0 10.0 7.el7.centos noarch
biosdevname 0 0.7.2 1.el7 x86_64
parted 0 3.1 28.el7 x86_64
libsepol 0 2.5 6.el7 x86_64
authconfig 0 6.2.8 14.el7 x86_64
info 0 5.1 4.el7 x86_64
passwd 0 0.79 4.el7 x86_64
e2fsprogs 0 1.42.9 9.el7 x86_64
libcom_err 0 1.42.9 9.el7 x86_64
iwl6050-firmware 0 41.28.5.1 49.el7 noarch
grep 0 2.20 2.el7 x86_64
iwl5150-firmware 0 8.24.2.2 49.el7 noarch
readline 0 6.2 9.el7 x86_64
iwl3945-firmware 0 15.32.2.9 49.el7 noarch
iwl100-firmware 0 39.31.5.1 49.el7 noarch
shared-mime-info 0 1.1 9.el7 x86_64
iwl7260-firmware 0 22.0.7.0 49.el7 noarch
cpio 0 2.11 24.el7 x86_64
perl-podlators 0 2.5.1 3.el7 noarch
lua 0 5.1.4 15.el7 x86_64
perl-Text-ParseWords 0 3.29 4.el7 noarch
perl-constant 0 1.27 2.el7 noarch
gmp 1 6.0.0 12.el7_1 x86_64
perl-Time-HiRes 4 1.9725 3.el7 x86_64
nss-softokn 0 3.16.2.3 14.4.el7 x86_64
perl-macros 4 5.16.3 291.el7 x86_64
libassuan 0 2.1.0 3.el7 x86_64
perl-threads-shared 0 1.43 6.el7 x86_64
kmod-libs 0 20 9.el7 x86_64
perl 4 5.16.3 291.el7 x86_64
libgomp 0 4.8.5 11.el7 x86_64
vim-enhanced 2 7.4.160 1.el7_3.1 x86_64
p11-kit-trust 0 0.20.7 3.el7 x86_64
mpfr 0 3.1.1 4.el7 x86_64
newt 0 0.52.15 4.el7 x86_64
apr 0 1.4.8 3.el7 x86_64
keyutils-libs 0 1.5.8 3.el7 x86_64
unzip 0 6.0 16.el7 x86_64
iptables 0 1.4.21 17.el7 x86_64
perl-Thread-Queue 0 3.02 2.el7 noarch
libteam 0 1.25 4.el7 x86_64
perl-XML-Parser 0 2.41 10.el7 x86_64
dbus-glib 0 0.100 7.el7 x86_64
systemtap-runtime 0 3.0 7.el7 x86_64
gobject-introspection 0 1.42.0 1.el7 x86_64
perl-Data-Dumper 0 2.145 3.el7 x86_64
libss 0 1.42.9 9.el7 x86_64
gdb 0 7.6.1 94.el7 x86_64
GeoIP 0 1.5.0 11.el7 x86_64
subversion-libs 0 1.7.14 10.el7 x86_64
libmodman 0 2.0.1 8.el7 x86_64
kernel-headers 0 3.10.0 514.21.1.el7 x86_64
numactl-libs 0 2.0.9 6.el7_2 x86_64
libquadmath-devel 0 4.8.5 11.el7 x86_64
emacs-filesystem 1 24.3 19.el7_3 noarch
gzip 0 1.5 8.el7 x86_64
gettext-devel 0 0.18.2.1 4.el7 x86_64
cracklib-dicts 0 2.9.0 11.el7 x86_64
intltool 0 0.50.2 6.el7 noarch
gcc-c++ 0 4.8.5 11.el7 x86_64
pygobject3-base 0 3.14.0 3.el7 x86_64
flex 0 2.5.37 3.el7 x86_64
rpm-sign 0 4.11.3 21.el7 x86_64
patchutils 0 0.3.3 4.el7 x86_64
pyliblzma 0 0.5.3 11.el7 x86_64
libgcrypt 0 1.5.3 13.el7_3.1 x86_64
nspr 0 4.13.1 1.0.el7_3 x86_64
libmount 0 2.23.2 33.el7_3.2 x86_64
alsa-lib 0 1.1.1 1.el7 x86_64
libsemanage 0 2.5 5.1.el7_3 x86_64
curl 0 7.29.0 35.el7.centos x86_64
device-mapper-libs 7 1.02.135 1.el7_3.4 x86_64
libuser 0 0.60 7.el7_1 x86_64
initscripts 0 9.49.37 1.el7_3.1 x86_64
libgudev1 0 219 30.el7_3.9 x86_64
fipscheck 0 1.4.1 5.el7 x86_64
openssh 0 6.6.1p1 35.el7_3 x86_64
rpm-python 0 4.11.3 21.el7 x86_64
vim-minimal 2 7.4.160 1.el7_3.1 x86_64
yum 0 3.4.3 150.el7.centos noarch
python-firewall 0 0.4.3.2 8.1.el7_3.3 noarch
teamd 0 1.25 4.el7 x86_64
sudo 0 1.8.6p7 22.el7_3 x86_64
ustr 0 1.0.4 16.el7 x86_64
audit 0 2.6.5 3.el7_3.1 x86_64
scap-security-guide 0 0.1.30 5.el7.centos noarch
virt-what 0 1.13 8.el7 x86_64
dracut-config-rescue 0 033 463.el7_3.1 x86_64
chrony 0 2.1.1 4.el7.centos x86_64
dmidecode 1 3.0 2.1.el7_3 x86_64
libjpeg-turbo 0 1.2.90 5.el7 x86_64
libpng-devel 2 1.5.13 7.el7_2 x86_64
hwdata 0 0.252 8.4.el7 x86_64
libXau 0 1.0.8 2.1.el7 x86_64
giflib-devel 0 4.1.6 9.el7 x86_64
pciutils 0 3.5.1 1.el7 x86_64
libzip-devel 0 0.10.1 8.el7 x86_64
ppp 0 2.4.5 33.el7 x86_64
libselinux-devel 0 2.5 6.el7 x86_64
glib-networking 0 2.42.0 1.el7 x86_64
krb5-devel 0 1.14.1 27.el7_3 x86_64
alsa-firmware 0 1.0.28 2.el7 noarch
postgresql-devel 0 9.2.18 1.el7 x86_64
linux-firmware 0 20160830 49.git7534e19.el7 noarch
memcached 0 1.4.15 10.el7_3.1 x86_64
httpd 0 2.4.6 45.el7.centos.4 x86_64
[2017-07-22 21:19:34] DEBUG - postgresql-server is installed.
[2017-07-22 21:19:34] DEBUG - Executing: rpm -qa --nosignature --nodigest --qf "%{NAME} %|EPOCH?{%{EPOCH}}:{0}| %{VERSION} %{RELEASE} %{ARCH}\n"
[2017-07-22 21:19:34] DEBUG - Detecting shell...
[2017-07-22 21:19:34] DEBUG - Found shell in cache: bash
[2017-07-22 21:19:34] DEBUG - Shell/Bash: Got options:
[2017-07-22 21:19:34] DEBUG - $VAR1 = {
'fail_ok' => 0,
'valid_retval' => [
0
]
};
[2017-07-22 21:19:34] DEBUG - SSH/executing: LC_ALL=C ; export LC_ALL; PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:/usr/pkg/bin:/usr/pkg/sbin; export PATH; rpm -qa --nosignature --nodigest --qf "%{NAME} %|EPOCH?{%{EPOCH}}:{0}| %{VERSION} %{RELEASE} %{ARCH}\n"
[2017-07-22 21:19:34] DEBUG - unixODBC 0 2.3.1 11.el7 x86_64
filesystem 0 3.2 21.el7 x86_64
nss-softokn-freebl 0 3.16.2.3 14.4.el7 x86_64
iprutils 0 2.4.13.1 1.el7 x86_64
man-db 0 2.6.3 9.el7 x86_64
zlib 0 1.2.7 17.el7 x86_64
libsysfs 0 2.1.0 16.el7 x86_64
chkconfig 0 1.7.2 1.el7 x86_64
iwl2030-firmware 0 18.168.6.1 49.el7 noarch
libxml2 0 2.9.1 6.el7_2.3 x86_64
iwl6000-firmware 0 9.221.4.1 49.el7 noarch
gawk 0 4.0.2 4.el7 x86_64
iwl105-firmware 0 18.168.6.1 49.el7 noarch
libcap-ng 0 0.7.5 4.el7 x86_64
iwl2000-firmware 0 18.168.6.1 49.el7 noarch
glib2 0 2.46.2 4.el7 x86_64
gpg-pubkey 0 f4a80eb5 53a7ff4b (none)
libcap 0 2.22 8.el7 x86_64
perl-Pod-Perldoc 0 3.20 4.el7 noarch
elfutils-libs 0 0.166 2.el7 x86_64
perl-Pod-Usage 0 1.63 3.el7 noarch
diffutils 0 3.3 4.el7 x86_64
perl-Time-Local 0 1.2300 2.el7 noarch
file-libs 0 5.11 33.el7 x86_64
perl-PathTools 0 3.40 5.el7 x86_64
file 0 5.11 33.el7 x86_64
perl-Pod-Simple 1 3.28 4.el7 noarch
libxslt 0 1.1.28 5.el7 x86_64
perl-threads 0 1.87 4.el7 x86_64
groff-base 0 1.22.2 8.el7 x86_64
vim-filesystem 2 7.4.160 1.el7_3.1 x86_64
libunistring 0 0.9.3 9.el7 x86_64
bash-completion 1 2.1 6.el7 noarch
libtasn1 0 3.8 3.el7 x86_64
libmpc 0 1.0.1 3.el7 x86_64
slang 0 2.2.4 11.el7 x86_64
apr-util 0 1.5.2 6.el7 x86_64
hostname 0 3.13 3.el7 x86_64
patch 0 2.7.1 8.el7 x86_64
boost-thread 0 1.53.0 26.el7 x86_64
less 0 458 9.el7 x86_64
mokutil 0 0.9 2.el7 x86_64
nettle 0 2.7.1 8.el7 x86_64
systemtap-client 0 3.0 7.el7 x86_64
autoconf 0 2.69 11.el7 noarch
libdb-utils 0 5.3.21 19.el7 x86_64
dwz 0 0.11 3.el7 x86_64
make 1 3.82 23.el7 x86_64
rsync 0 3.0.9 17.el7 x86_64
ncurses 0 5.9 13.20130511.el7 x86_64
glibc-headers 0 2.17 157.el7_3.2 x86_64
libpcap 14 1.5.3 8.el7 x86_64
libstdc++-devel 0 4.8.5 11.el7 x86_64
coreutils 0 8.22 18.el7 x86_64
kernel-devel 0 3.10.0 514.21.1.el7 x86_64
perl-Test-Harness 0 3.28 3.el7 noarch
dbus-python 0 1.1.1 9.el7 x86_64
systemtap 0 3.0 7.el7 x86_64
gcc-gfortran 0 4.8.5 11.el7 x86_64
gettext 0 0.18.2.1 4.el7 x86_64
ctags 0 5.8 13.el7 x86_64
python-pyudev 0 0.15 7.el7_2.1 noarch
rcs 0 5.9.0 5.el7 x86_64
python-slip-dbus 0 0.4.0 2.el7 noarch
diffstat 0 1.57 4.el7 x86_64
python-configobj 0 4.7.2 7.el7 noarch
systemd-libs 0 219 30.el7_3.9 x86_64
nss-util 0 3.28.4 1.0.el7_3 x86_64
systemd 0 219 30.el7_3.9 x86_64
binutils 0 2.25.1 22.base.el7 x86_64
policycoreutils 0 2.5 11.el7_3 x86_64
libcurl 0 7.29.0 35.el7.centos x86_64
device-mapper 7 1.02.135 1.el7_3.4 x86_64
openldap 0 2.4.40 13.el7 x86_64
grubby 0 8.28 21.el7_3 x86_64
ca-certificates 0 2017.2.14 70.1.el7_3 noarch
fipscheck-lib 0 1.4.1 5.el7 x86_64
python-perf 0 3.10.0 514.21.1.el7 x86_64
rpm-build-libs 0 4.11.3 21.el7 x86_64
kernel-tools-libs 0 3.10.0 514.21.1.el7 x86_64
yum-plugin-fastestmirror 0 1.1.31 40.el7 noarch
firewalld 0 0.4.3.2 8.1.el7_3.3 noarch
libdaemon 0 0.14 7.el7 x86_64
tuned 0 2.7.1 3.el7_3.2 noarch
libpipeline 0 1.2.3 3.el7 x86_64
openssl 1 1.0.1e 60.el7_3.1 x86_64
libutempter 0 1.1.6 4.el7 x86_64
kernel 0 3.10.0 514.21.1.el7 x86_64
selinux-policy-targeted 0 3.13.1 102.el7_3.16 noarch
hardlink 1 1.0 19.el7 x86_64
microcode_ctl 2 2.1 16.3.el7_3 x86_64
cryptsetup-libs 0 1.7.2 1.el7 x86_64
libnetfilter_conntrack 0 1.0.6 1.el7_3 x86_64
dbus 1 1.6.12 17.el7 x86_64
libjpeg-turbo-devel 0 1.2.90 5.el7 x86_64
iputils 0 20160308 8.el7 x86_64
libICE 0 1.0.9 2.el7 x86_64
os-prober 0 1.58 9.el7 x86_64
libxcb 0 1.11 4.el7 x86_64
crontabs 0 1.11 6.20121102git.el7 noarch
expat-devel 0 2.1.0 10.el7_3 x86_64
plymouth 0 0.8.9 0.26.20140113.el7.centos x86_64
keyutils-libs-devel 0 1.5.8 3.el7 x86_64
dnsmasq 0 2.66 21.el7 x86_64
libkadm5 0 1.14.1 27.el7_3 x86_64
gnutls 0 3.3.24 1.el7 x86_64
openssl-devel 1 1.0.1e 60.el7_3.1 x86_64
fxload 0 2002_04_11 16.el7 x86_64
net-tools 0 2.0 0.17.20131004git.el7 x86_64
kbd-legacy 0 1.15.5 12.el7 noarch
GeoIP-update 0 1.5.0 11.el7 noarch
rsyslog 0 7.4.7 16.el7 x86_64
mod_ssl 1 2.4.6 45.el7.centos.4 x86_64
libtool-ltdl 0 2.4.2 22.el7_3 x86_64
setup 0 2.8.71 7.el7 noarch
kbd-misc 0 1.15.5 12.el7 noarch
ncurses-libs 0 5.9 13.20130511.el7 x86_64
libselinux 0 2.5 6.el7 x86_64
sed 0 4.2.2 5.el7 x86_64
btrfs-progs 0 4.4.1 1.el7 x86_64
popt 0 1.13 16.el7 x86_64
rootfiles 0 8.1 11.el7 noarch
libdb 0 5.3.21 19.el7 x86_64
iwl6000g2a-firmware 0 17.168.5.3 49.el7 noarch
iwl7265-firmware 0 22.0.7.0 49.el7 noarch
dbus-libs 1 1.6.12 17.el7 x86_64
ivtv-firmware 2 20080701 26.el7 noarch
pkgconfig 1 0.27.1 4.el7 x86_64
iwl1000-firmware 1 39.31.5.1 49.el7 noarch
libacl 0 2.2.51 12.el7 x86_64
perl-parent 1 0.225 244.el7 noarch
p11-kit 0 0.20.7 3.el7 x86_64
perl-Pod-Escapes 1 1.04 291.el7 noarch
findutils 1 4.5.11 5.el7 x86_64
perl-Storable 0 2.45 3.el7 x86_64
libidn 0 1.28 4.el7 x86_64
perl-Socket 0 2.010 4.el7 x86_64
libmnl 0 1.0.3 7.el7 x86_64
perl-Scalar-List-Utils 0 1.27 248.el7 x86_64
libcroco 0 0.6.8 5.el7 x86_64
perl-File-Temp 0 0.23.01 3.el7 noarch
e2fsprogs-libs 0 1.42.9 9.el7 x86_64
perl-Filter 0 1.49 3.el7 x86_64
which 0 2.20 7.el7 x86_64
vim-common 2 7.4.160 1.el7_3.1 x86_64
sysvinit-tools 0 2.88 14.dsf.el7 x86_64
glibc-common 0 2.17 157.el7_3.2 x86_64
libnfnetlink 0 1.0.1 4.el7 x86_64
m4 0 1.4.16 10.el7 x86_64
lzo 0 2.06 8.el7 x86_64
avahi-libs 0 0.6.31 17.el7 x86_64
gdbm 0 1.10 8.el7 x86_64
boost-system 0 1.53.0 26.el7 x86_64
gettext-libs 0 0.18.2.1 4.el7 x86_64
libgfortran 0 4.8.5 11.el7 x86_64
ipset 0 6.19 6.el7 x86_64
libdwarf 0 20130207 4.el7 x86_64
acl 0 2.2.51 12.el7 x86_64
libgnome-keyring 0 3.8.0 3.el7 x86_64
xml-common 0 0.6.3 39.el7 noarch
elfutils 0 0.166 2.el7 x86_64
mozjs17 0 17.0.0 19.el7 x86_64
pakchois 0 0.4 10.el7 x86_64
freetype 0 2.4.11 12.el7 x86_64
perl-Git 0 1.8.3.1 6.el7_2.1 noarch
snappy 0 1.1.0 3.el7 x86_64
glibc-devel 0 2.17 157.el7_3.2 x86_64
perl-srpm-macros 0 1 8.el7 noarch
python 0 2.7.5 48.el7 x86_64
systemtap-devel 0 3.0 7.el7 x86_64
python-decorator 0 3.4.0 3.el7 noarch
automake 0 1.13.4 3.el7 noarch
pam 0 1.1.8 18.el7 x86_64
cscope 0 15.8 9.el7 x86_64
subversion 0 1.7.14 10.el7 x86_64
plymouth-core-libs 0 0.8.9 0.26.20140113.el7.centos x86_64
byacc 0 1.9.20130304 3.el7 x86_64
python-slip 0 0.4.0 2.el7 noarch
swig 0 2.0.10 5.el7 x86_64
newt-python 0 0.52.15 4.el7 x86_64
bash 0 4.2.46 21.el7_3 x86_64
yum-metadata-parser 0 1.1.4 10.el7 x86_64
libuuid 0 2.23.2 33.el7_3.2 x86_64
nss 0 3.28.4 1.2.el7_3 x86_64
logrotate 0 3.8.6 12.el7 x86_64
util-linux 0 2.23.2 33.el7_3.2 x86_64
libssh2 0 1.4.3 10.el7_2.1 x86_64
libnl3 0 3.2.28 3.el7_3 x86_64
rpm 0 4.11.3 21.el7 x86_64
kpartx 0 0.4.9 99.el7_3.3 x86_64
dhcp-common 12 4.2.5 47.el7.centos x86_64
openscap 0 1.2.10 3.el7_3 x86_64
python-urlgrabber 0 3.10 8.el7 noarch
openssl-libs 1 1.0.1e 60.el7_3.1 x86_64
gnupg2 0 2.0.22 4.el7 x86_64
expat 0 2.1.0 10.el7_3 x86_64
pygpgme 0 0.3 9.el7 x86_64
bind-license 32 9.9.4 38.el7_3.3 noarch
libndp 0 1.2 7.el7 x86_64
bind-libs-lite 32 9.9.4 38.el7_3.3 x86_64
qrencode-libs 0 3.4.1 3.el7 x86_64
openssh-server 0 6.6.1p1 35.el7_3 x86_64
shadow-utils 2 4.1.5.1 24.el7 x86_64
wpa_supplicant 1 2.0 21.el7_3 x86_64
rdma 0 7.3_4.7_rc2 6.el7_3 noarch
lsscsi 0 0.27 4.el7 x86_64
libnl3-cli 0 3.2.28 3.el7_3 x86_64
nss-tools 0 3.28.4 1.2.el7_3 x86_64
libpciaccess 0 0.13.4 3.el7_3 x86_64
polkit-pkla-compat 0 0.1 4.el7 x86_64
libpng 2 1.5.13 7.el7_2 x86_64
libSM 0 1.2.2 2.el7 x86_64
cronie 0 1.4.11 14.el7_2.1 x86_64
libX11 0 1.6.3 3.el7 x86_64
plymouth-scripts 0 0.8.9 0.26.20140113.el7.centos x86_64
libidn-devel 0 1.28 4.el7 x86_64
pcre-devel 0 8.32 15.el7_2.1 x86_64
trousers 0 0.3.13 1.el7 x86_64
libverto-devel 0 0.2.5 4.el7 x86_64
postgresql-libs 0 9.2.18 1.el7 x86_64
json-c 0 0.11 4.el7_0 x86_64
mailx 0 12.5 12.el7_0 x86_64
kbd 0 1.15.5 12.el7 x86_64
mailcap 0 2.1.41 2.el7 noarch
postgresql-server 0 9.2.18 1.el7 x86_64
kexec-tools 0 2.0.7 50.el7 x86_64
centos-release 0 7 3.1611.el7.centos x86_64
postfix 2 2.10.1 6.el7 x86_64
ncurses-base 0 5.9 13.20130511.el7 noarch
aic94xx-firmware 0 30 6.el7 noarch
libstdc++ 0 4.8.5 11.el7 x86_64
pcre 0 8.32 15.el7_2.1 x86_64
xz-libs 0 5.2.2 1.el7 x86_64
bzip2-libs 0 1.0.6 13.el7 x86_64
iwl6000g2b-firmware 0 17.168.5.2 49.el7 noarch
iwl5000-firmware 0 8.83.5.1_1 49.el7 noarch
libgpg-error 0 1.12 3.el7 x86_64
iwl3160-firmware 0 22.0.7.0 49.el7 noarch
elfutils-libelf 0 0.166 2.el7 x86_64
iwl135-firmware 0 18.168.6.1 49.el7 noarch
libffi 0 3.0.13 18.el7 x86_64
iwl4965-firmware 0 228.61.2.24 49.el7 noarch
libattr 0 2.4.46 12.el7 x86_64
perl-HTTP-Tiny 0 0.033 3.el7 noarch
perl-Encode 0 2.51 7.el7 x86_64
sqlite 0 3.7.17 8.el7 x86_64
perl-Exporter 0 5.68 3.el7 noarch
jansson 0 2.4 6.el7 x86_64
perl-Carp 0 1.26 244.el7 noarch
pciutils-libs 0 3.5.1 1.el7 x86_64
perl-libs 4 5.16.3 291.el7 x86_64
perl-File-Path 0 2.09 2.el7 noarch
cyrus-sasl-lib 0 2.1.26 20.el7_2 x86_64
perl-Getopt-Long 0 2.40 2.el7 noarch
xz 0 5.2.2 1.el7 x86_64
gpm-libs 0 1.20.7 5.el7 x86_64
libedit 0 3.0 12.20121213cvs.el7 x86_64
glibc 0 2.17 157.el7_3.2 x86_64
libquadmath 0 4.8.5 11.el7 x86_64
tcp_wrappers-libs 0 7.6 77.el7 x86_64
zip 0 3.0 11.el7 x86_64
ethtool 2 4.5 3.el7 x86_64
perl-Error 1 0.17020 2.el7 noarch
iproute 0 3.10.0 74.el7 x86_64
cpp 0 4.8.5 11.el7 x86_64
ipset-libs 0 6.19 6.el7 x86_64
dyninst 0 8.2.0 2.el7 x86_64
tar 2 1.26 31.el7 x86_64
perl-TermReadKey 0 2.30 20.el7 x86_64
gsettings-desktop-schemas 0 3.14.2 1.el7 x86_64
bzip2 0 1.0.6 13.el7 x86_64
pinentry 0 0.8.1 17.el7 x86_64
neon 0 0.30.0 3.el7 x86_64
libselinux-utils 0 2.5 6.el7 x86_64
git 0 1.8.3.1 6.el7_2.1 x86_64
libproxy 0 0.4.11 10.el7 x86_64
gcc 0 4.8.5 11.el7 x86_64
libverto 0 0.2.5 4.el7 x86_64
redhat-rpm-config 0 9.1.0 72.el7.centos noarch
python-libs 0 2.7.5 48.el7 x86_64
gettext-common-devel 0 0.18.2.1 4.el7 noarch
cracklib 0 2.9.0 11.el7 x86_64
libtool 0 2.4.2 22.el7_3 x86_64
libpwquality 0 1.2.3 4.el7 x86_64
rpm-build 0 4.11.3 21.el7 x86_64
procps-ng 0 3.3.10 10.el7 x86_64
bison 0 2.7 4.el7 x86_64
centos-logos 0 70.0.6 3.el7.centos noarch
doxygen 1 1.8.5 3.el7 x86_64
libselinux-python 0 2.5 6.el7 x86_64
indent 0 2.2.11 13.el7 x86_64
python-iniparse 0 0.4 9.el7 noarch
audit-libs 0 2.6.5 3.el7_3.1 x86_64
pyxattr 0 0.5.1 5.el7 x86_64
libblkid 0 2.23.2 33.el7_3.2 x86_64
nss-sysinit 0 3.28.4 1.2.el7_3 x86_64
systemd-sysv 0 219 30.el7_3.9 x86_64
mariadb-libs 1 5.5.52 1.el7 x86_64
selinux-policy 0 3.13.1 102.el7_3.16 noarch
rpm-libs 0 4.11.3 21.el7 x86_64
dracut 0 033 463.el7_3.1 x86_64
dhcp-libs 12 4.2.5 47.el7.centos x86_64
openscap-scanner 0 1.2.10 3.el7_3 x86_64
python-pycurl 0 7.19.0 19.el7 x86_64
krb5-libs 0 1.14.1 27.el7_3 x86_64
pth 0 2.0.7 23.el7 x86_64
polkit 0 0.112 12.el7_3 x86_64
gpgme 0 1.3.2 5.el7 x86_64
firewalld-filesystem 0 0.4.3.2 8.1.el7_3.3 noarch
kernel-tools 0 3.10.0 514.21.1.el7 x86_64
openssh-clients 0 6.6.1p1 35.el7_3 x86_64
NetworkManager-libnm 1 1.4.0 20.el7_3 x86_64
dracut-network 0 033 463.el7_3.1 x86_64
libestr 0 0.1.9 2.el7 x86_64
irqbalance 3 1.0.7 6.el7_3.1 x86_64
xfsprogs 0 4.5.0 9.el7_3 x86_64
kmod 0 20 9.el7 x86_64
tzdata 0 2017b 1.el7 noarch
zlib-devel 0 1.2.7 17.el7 x86_64
dhclient 12 4.2.5 47.el7.centos x86_64
libX11-common 0 1.6.3 3.el7 noarch
cronie-anacron 0 1.4.11 14.el7_2.1 x86_64
giflib 0 4.1.6 9.el7 x86_64
libdrm 0 2.4.67 3.el7 x86_64
libzip 0 0.10.1 8.el7 x86_64
grub2-tools 1 2.02 0.44.el7.centos x86_64
libsepol-devel 0 2.5 6.el7 x86_64
ebtables 0 2.0.10 15.el7 x86_64
libcom_err-devel 0 1.42.9 9.el7 x86_64
libsoup 0 2.48.1 6.el7 x86_64
postgresql 0 9.2.18 1.el7 x86_64
alsa-tools-firmware 0 1.1.0 1.el7 x86_64
libevent 0 2.0.21 4.el7 x86_64
kernel 0 3.10.0 514.el7 x86_64
httpd-tools 0 2.4.6 45.el7.centos.4 x86_64
libgcc 0 4.8.5 11.el7 x86_64
grub2 1 2.02 0.44.el7.centos x86_64
sphinx 0 2.2.11 1.rhel7 x86_64
basesystem 0 10.0 7.el7.centos noarch
biosdevname 0 0.7.2 1.el7 x86_64
parted 0 3.1 28.el7 x86_64
libsepol 0 2.5 6.el7 x86_64
authconfig 0 6.2.8 14.el7 x86_64
info 0 5.1 4.el7 x86_64
passwd 0 0.79 4.el7 x86_64
e2fsprogs 0 1.42.9 9.el7 x86_64
libcom_err 0 1.42.9 9.el7 x86_64
iwl6050-firmware 0 41.28.5.1 49.el7 noarch
grep 0 2.20 2.el7 x86_64
iwl5150-firmware 0 8.24.2.2 49.el7 noarch
readline 0 6.2 9.el7 x86_64
iwl3945-firmware 0 15.32.2.9 49.el7 noarch
iwl100-firmware 0 39.31.5.1 49.el7 noarch
shared-mime-info 0 1.1 9.el7 x86_64
iwl7260-firmware 0 22.0.7.0 49.el7 noarch
cpio 0 2.11 24.el7 x86_64
perl-podlators 0 2.5.1 3.el7 noarch
lua 0 5.1.4 15.el7 x86_64
perl-Text-ParseWords 0 3.29 4.el7 noarch
perl-constant 0 1.27 2.el7 noarch
gmp 1 6.0.0 12.el7_1 x86_64
perl-Time-HiRes 4 1.9725 3.el7 x86_64
nss-softokn 0 3.16.2.3 14.4.el7 x86_64
perl-macros 4 5.16.3 291.el7 x86_64
libassuan 0 2.1.0 3.el7 x86_64
perl-threads-shared 0 1.43 6.el7 x86_64
kmod-libs 0 20 9.el7 x86_64
perl 4 5.16.3 291.el7 x86_64
libgomp 0 4.8.5 11.el7 x86_64
vim-enhanced 2 7.4.160 1.el7_3.1 x86_64
p11-kit-trust 0 0.20.7 3.el7 x86_64
mpfr 0 3.1.1 4.el7 x86_64
newt 0 0.52.15 4.el7 x86_64
apr 0 1.4.8 3.el7 x86_64
keyutils-libs 0 1.5.8 3.el7 x86_64
unzip 0 6.0 16.el7 x86_64
iptables 0 1.4.21 17.el7 x86_64
perl-Thread-Queue 0 3.02 2.el7 noarch
libteam 0 1.25 4.el7 x86_64
perl-XML-Parser 0 2.41 10.el7 x86_64
dbus-glib 0 0.100 7.el7 x86_64
systemtap-runtime 0 3.0 7.el7 x86_64
gobject-introspection 0 1.42.0 1.el7 x86_64
perl-Data-Dumper 0 2.145 3.el7 x86_64
libss 0 1.42.9 9.el7 x86_64
gdb 0 7.6.1 94.el7 x86_64
GeoIP 0 1.5.0 11.el7 x86_64
subversion-libs 0 1.7.14 10.el7 x86_64
libmodman 0 2.0.1 8.el7 x86_64
kernel-headers 0 3.10.0 514.21.1.el7 x86_64
numactl-libs 0 2.0.9 6.el7_2 x86_64
libquadmath-devel 0 4.8.5 11.el7 x86_64
emacs-filesystem 1 24.3 19.el7_3 noarch
gzip 0 1.5 8.el7 x86_64
gettext-devel 0 0.18.2.1 4.el7 x86_64
cracklib-dicts 0 2.9.0 11.el7 x86_64
intltool 0 0.50.2 6.el7 noarch
gcc-c++ 0 4.8.5 11.el7 x86_64
pygobject3-base 0 3.14.0 3.el7 x86_64
flex 0 2.5.37 3.el7 x86_64
rpm-sign 0 4.11.3 21.el7 x86_64
patchutils 0 0.3.3 4.el7 x86_64
pyliblzma 0 0.5.3 11.el7 x86_64
libgcrypt 0 1.5.3 13.el7_3.1 x86_64
nspr 0 4.13.1 1.0.el7_3 x86_64
libmount 0 2.23.2 33.el7_3.2 x86_64
alsa-lib 0 1.1.1 1.el7 x86_64
libsemanage 0 2.5 5.1.el7_3 x86_64
curl 0 7.29.0 35.el7.centos x86_64
device-mapper-libs 7 1.02.135 1.el7_3.4 x86_64
libuser 0 0.60 7.el7_1 x86_64
initscripts 0 9.49.37 1.el7_3.1 x86_64
libgudev1 0 219 30.el7_3.9 x86_64
fipscheck 0 1.4.1 5.el7 x86_64
openssh 0 6.6.1p1 35.el7_3 x86_64
rpm-python 0 4.11.3 21.el7 x86_64
vim-minimal 2 7.4.160 1.el7_3.1 x86_64
yum 0 3.4.3 150.el7.centos noarch
python-firewall 0 0.4.3.2 8.1.el7_3.3 noarch
teamd 0 1.25 4.el7 x86_64
sudo 0 1.8.6p7 22.el7_3 x86_64
ustr 0 1.0.4 16.el7 x86_64
audit 0 2.6.5 3.el7_3.1 x86_64
scap-security-guide 0 0.1.30 5.el7.centos noarch
virt-what 0 1.13 8.el7 x86_64
dracut-config-rescue 0 033 463.el7_3.1 x86_64
chrony 0 2.1.1 4.el7.centos x86_64
dmidecode 1 3.0 2.1.el7_3 x86_64
libjpeg-turbo 0 1.2.90 5.el7 x86_64
libpng-devel 2 1.5.13 7.el7_2 x86_64
hwdata 0 0.252 8.4.el7 x86_64
libXau 0 1.0.8 2.1.el7 x86_64
giflib-devel 0 4.1.6 9.el7 x86_64
pciutils 0 3.5.1 1.el7 x86_64
libzip-devel 0 0.10.1 8.el7 x86_64
ppp 0 2.4.5 33.el7 x86_64
libselinux-devel 0 2.5 6.el7 x86_64
glib-networking 0 2.42.0 1.el7 x86_64
krb5-devel 0 1.14.1 27.el7_3 x86_64
alsa-firmware 0 1.0.28 2.el7 noarch
postgresql-devel 0 9.2.18 1.el7 x86_64
linux-firmware 0 20160830 49.git7534e19.el7 noarch
memcached 0 1.4.15 10.el7_3.1 x86_64
httpd 0 2.4.6 45.el7.centos.4 x86_64
I should only run once!
[2017-07-22 21:19:34] DEBUG - Running postponed notifications.
[2017-07-22 21:19:34] DEBUG - Connections in queue: 1
[2017-07-22 21:19:34] DEBUG - Destroying all cached os information
[2017-07-22 21:19:34] DEBUG - Waiting for children to finish
[2017-07-22 21:19:34] DEBUG - Need to reinitialize connections.
[2017-07-22 21:19:34] DEBUG - Returning existing distribution class of type: Rex::TaskList::Base
[2017-07-22 21:19:34] INFO - All tasks successful on all hosts
[2017-07-22 21:19:34] DEBUG - Removing lockfile
[2017-07-22 21:19:34] DEBUG - Executing: LC_ALL=C /bin/sh -c '[ -L "Rexfile.lock" ]'
[2017-07-22 21:19:34] DEBUG - Returning existing distribution class of type: Rex::TaskList::Base
interesstingly the output of the rpm command before and after the installation is the same.
Could you please run the following code and post the output (without -d
)
use strict; use warnings;
use Rex -feature => [qw[1.3]];
use Data::Dumper;
user 'root';
task 'ttt' => sub {
pkg 'postgresql-server', ensure => 'present',
on_change => sub {
print Dumper \@_;
};
};
The output is:
$VAR1 = [
'postgresql-server',
'on_change',
sub { "DUMMY" },
'ensure',
'present'
];
and on some invocations the order is different:
$VAR1 = [
'postgresql-server',
'ensure',
'present',
'on_change',
sub { "DUMMY" }
];
@lumiera: thanks for this report, and for your patience!
TL;DR
This happens when packages for multiple architectures are present on a CentOS 7 system. Rex doesn't take package architecture into account when doing package identity checks for the purposes of detecting modifications in the list of installed packages before and after the operation.
A similar issue was reported for Debian(-like systems) on #748 and fixed on #755 for Rex-1.3.3.
Longer version
In Rex-1.5.0, the on_change
hook of pkg
is only called when all of this is true:
- the
on_change
option exists - it is a subroutine reference
- there are modified packages based on comparing list of packages before and after the operation
The comparison is done in Rex::Pkg::Base::diff_package_list(). It is possible to override with a CentOS-specific version in Rex::Pkg::RedHat, similarly how the Debian-specific version is handled in Rex::Pkg::Debian::diff_package_list().
Even better approach
It might be better to rely on diff_package_list
in the Base class more, and introduce some kind of package identity checker methods in the specialized classes to reduce code duplication. I'm thinking of something like a __packages_are_identical( $old_pkg, $new_pkg )
, which is also directly testable, but there might be a better name for it.
Related tests in t/package.t
may be extended or even overhauled to test for differences between package managers.