Use case and assistance

426 views
Skip to first unread message

jkinning

unread,
Feb 22, 2017, 12:28:09 PM2/22/17
to stacki
I have been reviewing Stacki for a little while now and trying to decide if it makes sense or not. I am thinking it does but I guess looking for some confirmation from others who are successfully using Stacki. I currently have about 150 PCs, Dell OptiPlex 3010, deployed running SUSE Linux Enterprise Desktop (SLED) 11sp4. This OS is no longer supported so I have been looking at deploying CentOS 7. I was looking at Foreman and Cobbler but in a way Stacki probably makes the most sense. I only want these specific PCs to get updated and not the other PCs that are used by our Clerical staff and Sales Agents. I do have MAC addresses so the spreadsheet concept is ideal and since a lot of these Offices have limited bandwidth the peer-to-peer stuff makes Stacki more enticing. I have  PXE server setup and have been testing deployments with PXE and kickstart but not really sure that is the greatest option. I just feel it would be more work than just getting something with Stacki going. To perform a bare metal installation of CentOS 7 on these Dell PCs, no user intervention as these PCs currently running SLED are headless and tucked away in the Office wiring closet, I am thinking this is the most efficient method. Thoughts? I probably wouldn't leverage any of the other cool features that Stacki could provide. Not sure though.

Anyways, one issue I have been dealing with is on these PCs I am running Squid for WCCP caching and we use IBM BigFix for Management. I cannot figure out how to add the BigFix RPM's or even a simple script I have to install and configure the BigFix client nor my other script that configures the networking and sets up squid. My current kickstart script is just installing @base, @core, and vim. During my initial installation with Stacki I noticed that my installation is much smaller, really good thing, versus the 1.4GB install by my kickstart file and PXE. 

I don't want to create extra work for myself but on the same token I don't want to use a tool that was designed for something completely different. These will not be clustered but all standalone machines. I am basically dazed and confused and probably just over analyzing my situation. I mean with Stacki I wouldn't need to worry about DHCP or PXE and easily specify what machines need to be re-imaged. Easier to install but having a bit of trouble leveraging and understanding carts or boxes or whatever I need to use to deploy my custom scripts and packages to all these machines than Foreman or Cobbler. At least for my use case I believe.

In short, I guess I am looking for an example of how to add scripts and packages to my Stacki base server so when I bring up other machines and they get images per my spreadsheet specs, disk and such, they are all the same and running Squid with my configuration and running our IBM BigFix agent. Oh yeah, is there an easy way to patch or update all of the backend nodes from the frontend? If not that isn't a big deal as I can accomplish that from BigFix.

Thanks!

Joe Kaiser

unread,
Feb 22, 2017, 3:47:22 PM2/22/17
to sta...@googlegroups.com
Hi!

I will respond in-line. Please note, I'm biased. I work here for StackIQ, in particular on the open source side. 

On Wed, Feb 22, 2017 at 10:28 AM, jkinning <jkinn...@gmail.com> wrote:
I have been reviewing Stacki for a little while now and trying to decide if it makes sense or not. I am thinking it does but I guess looking for some confirmation from others who are successfully using Stacki. I currently have about 150 PCs, Dell OptiPlex 3010, deployed running SUSE Linux Enterprise Desktop (SLED) 11sp4. This OS is no longer supported so I have been looking at deploying CentOS 7. I was looking at Foreman and Cobbler but in a way Stacki probably makes the most sense. I only want these specific PCs to get updated and not the other PCs that are used by our Clerical staff and Sales Agents. I do have MAC addresses so the spreadsheet concept is ideal and since a lot of these Offices have limited bandwidth the peer-to-peer stuff makes Stacki more enticing. I have  PXE server setup and have been testing deployments with PXE and kickstart but not really sure that is the greatest option. I just feel it would be more work than just getting something with Stacki going. To perform a bare metal installation of CentOS 7 on these Dell PCs, no user intervention as these PCs currently running SLED are headless and tucked away in the Office wiring closet, I am thinking this is the most efficient method. Thoughts? I probably wouldn't leverage any of the other cool features that Stacki could provide. Not sure though.


Yes, it's useful, you would want to try it with one first. How old are the OptiPlexes? 

We also don't do brown field, so if you're looking to keep what is running on them just the way it is, we won't really be of help here. You have to reinstall them to get control of them with stacki.

We are also much faster and less complex, I think, than Foreman or Cobbler.

In terms of the other cool features: you'll likely want to run the same command on some of them or all of them and the "stack run host" command is a parallel ssh tool that can do that. You're likely to use that. 
 
Anyways, one issue I have been dealing with is on these PCs I am running Squid for WCCP caching and we use IBM BigFix for Management. I cannot figure out how to add the BigFix RPM's or even a simple script I have to install and configure the BigFix client nor my other script that configures the networking and sets up squid.

You would create a cart. I frequently due a "stack add cart site-custom" to create a customization cart for my particular lab. This is the easiest way to do something like this. Pallets are a little out of the norm and you shouldn't be concerned with them at this point.

So in the /export/stack/cart/site-custom there is a "nodes" directory and an "RPMS" directory. If you have RPMS for Bigfix, add them to the  /export/stack/cart/site-custom/RPMS directory. The cart will be added to the /etc/yum.repos.d/stacki.repo file and those RPMS will be available to backend nodes, both during install and after install with a "yum install" command.

For the scripts, there is a file in /export/stack/carts/site-custom/ called cart-site-custom.xml that you can add kickstart to, which means, packages and post scripts, which means also files, so your WCCP and IBM BigFix scripts.

To install packages you would put this in that file:

<package>Bigfix rpm name</package>

To install a file:

<post>
<file name="/root/bin/myscript.sh" perms="0755">
#!/bin/bash

this is my script.
it's an awesome script
</file>

/root/bin/myscript.sh

</post>

Do that for your Bigfix script and your WCCP script. Make sure you wrap <file> tags in <post> tags. 

 
My current kickstart script is just installing @base, @core, and vim. During my initial installation with Stacki I noticed that my installation is much smaller, really good thing, versus the 1.4GB install by my kickstart file and PXE. 


Yes, that's likely. I'm not sure what to do about that. Packages get installed for services that are written in kickstart xml files and those get joined/compiled together to create the actual script file. You can get it down by removing packages with:

<package disable="1">packageIdon'twantname</package>

and put that in your cart xml file. But I'm not sure you want that. 

You can also cut down the size of the partitions with a different partitioning scheme with a partition spreadsheet. We have a set of defaults for partitions that are:

/ 16G
/var 16G
/swap 1024

and a /state/partition1 that's consists of whatever else is on the disk.

You may not want that.
 
I don't want to create extra work for myself but on the same token I don't want to use a tool that was designed for something completely different. These will not be clustered but all standalone machines. I am basically dazed and confused and probably just over analyzing my situation. I mean with Stacki I wouldn't need to worry about DHCP or PXE and easily specify what machines need to be re-imaged. Easier to install but having a bit of trouble leveraging and understanding carts or boxes or whatever I need to use to deploy my custom scripts and packages to all these machines than Foreman or Cobbler. At least for my use case I believe.

In short, I guess I am looking for an example of how to add scripts and packages to my Stacki base server so when I bring up other machines and they get images per my spreadsheet specs, disk and such, they are all the same and running Squid with my configuration and running our IBM BigFix agent.

That's a cluster, even if they don't work together like one. 
 
Oh yeah, is there an easy way to patch or update all of the backend nodes from the frontend? If not that isn't a big deal as I can accomplish that from BigFix.

If you put the RPMS on the frontend. You can create a pallet of a repository or even a directory with all the rpms in it with "stack create mirror" and then add that as a pallet. Now you can run a "yum update -y" with "stack run host command="yum update -y" on your backend nodes and they'll updated.

Or you can just run the BigFix script you already use. it's up to you. 

I'm doing a webinar on Stacki basics in a few weeks. We'll make sure we post it to this list.  I would recommend attending and seeing it live to see if you want to go down this path. 

Thanks,

Joe

jkinning

unread,
Feb 23, 2017, 6:01:58 PM2/23/17
to stacki
Excellent! I'll give this a go tomorrow, wanted to do some more testing today but got caught up with other issues.

Thanks for the information.

jkinning

unread,
Feb 24, 2017, 9:34:56 AM2/24/17
to stacki
Ok, I am a bit lost. I ran the command stack add cart site-custom and after doing so I see the directories graph, nodes, and RPMS but no cart-site-custom.xml.  The script I have for the BIgFix install is running wget commands to pull down the rpms from a webserver and then running. There is a "config" file which I also wget from the webserver and then place it in the correct directory. Then restart the besclient, systemctl restart besclient. Then there is also a dhcp_setup_network.pl script that looks at the current IP address and then assigns location and static IP address information. If I place these files on the frontend under /root/scripts and then create the /export/stack/carts/site-custom.xml file and include this content, below, will that do the trick?

<post>
<file name="/root/script/dhcp_setup_network.pl" perms="0755">
<file name="/root/script/bigfixinstall.sh" perms="0755">
</post>

Or do I need to paste out the script file in the post section with the file tags?

I also forgot to answer a few of the other questions. These are about 3 year old Desktops but we still have about 50 of them still in boxes so having them fail isn't really a big deal. Especially, if once I get this working I can just send out hardware after adding the new MAC address to the spreadsheet and load it into Stacki. It will simplify that management. Plus, I have to do all this on the cheap so re-using hardware and leveraging the open source version of Stacki is the way I plan on going. I do plan on wiping the disks and using the spreadsheet method to create just a biosboot, 2GB swap, and the rest will be the OS and data single partition.


On Wednesday, 22 February 2017 12:28:09 UTC-5, jkinning wrote:

Joe Kaiser

unread,
Feb 24, 2017, 11:11:21 AM2/24/17
to sta...@googlegroups.com
On Fri, Feb 24, 2017 at 7:34 AM, jkinning <jkinn...@gmail.com> wrote:
Ok, I am a bit lost. I ran the command stack add cart site-custom and after doing so I see the directories graph, nodes, and RPMS but no cart-site-custom.xml.  

Okay, that's weird. Which version are you on? 

Do an "ls /export/stack/custom/nodes"

 
The script I have for the BIgFix install is running wget commands to pull down the rpms from a webserver and then running. There is a "config" file which I also wget from the webserver and then place it in the correct directory. Then restart the besclient, systemctl restart besclient. Then there is also a dhcp_setup_network.pl script that looks at the current IP address and then assigns location and static IP address information. If I place these files on the frontend under /root/scripts and then create the /export/stack/carts/site-custom.xml file and include this content, below, will that do the trick?


It won't work if you put them in /root/scripts because /root isn't exposed by the webserver that runs on the frontend. 

You could put them in:

/export/stack/myscripts

And then do this in the xml file:

<post>
wget -q -nc -r --no-parent -nd -P /root/scripts --reject='index.html*' http://&Kickstart_PrivateAddress;/install/myscripts

chmod 755 /root/scripts/*

/root/script/bigfixinstall.sh
</post>

 
<post>
<file name="/root/script/dhcp_setup_network.pl" perms="0755">
<file name="/root/script/bigfixinstall.sh" perms="0755">
</post>


Or do I need to paste out the script file in the post section with the file tags?


Yes,  if you're going to use the <file></file> tags. the actual content of the script has to be contained within them.
 

There is another way to do this. You can create an RPM of the /root/scripts directory and install the package during the install. This has the advantage that the RPM will be shared via the peer to peer file sharing, which doesn't happen with a wget get call. 

If you want to try that do something like this:

On the frontend:

# mkdir /root/scripts
# cp allmyscripts /root/scripts

% to see package create args
# stack create package

% create rpm
# stack create package name=bigfix-scripts prefix=/root dir=/root/scripts release=1.0 version=1.0

The rpm is created in the directory where you ran the command

% verify

# rpm -qpl bigfix-scripts-1.0-1.0.x86_64.rpm

/root/scripts/addapp.sh
/root/scripts/fefix.sh
/root/scripts/fixfw.sh
/root/scripts/stack-post.sh
/root/scripts/stack-pre.sh

Should show the files and the correct directory structure.

% Add to the cart:

# mv bigfix-scripts-1.0-1.0.x86_64.rpm /export/stack/carts/site-custom/RPMS/

% Install it on installing nodes:

# cd /export/stack/carts/site-custom/cart-site-custom.xml

Before any post tags, and not contained within post tags, add a package tag:

<package>bigfix-scripts</package>

% compile cart because, you know, neuroses:

# stack compile cart site-custom

If you do a: 

# yum list bigfix-scripts

You should see it in the yum listing.

% Verify kickstart

# stack list host profile backend-0-0 | less

and look for "bigfix-scripts" in the RPM listing. 

 
I also forgot to answer a few of the other questions. These are about 3 year old Desktops but we still have about 50 of them still in boxes so having them fail isn't really a big deal. Especially, if once I get this working I can just send out hardware after adding the new MAC address to the spreadsheet and load it into Stacki. It will simplify that management. Plus, I have to do all this on the cheap so re-using hardware and leveraging the open source version of Stacki is the way I plan on going. I do plan on wiping the disks and using the spreadsheet method to create just a biosboot, 2GB swap, and the rest will be the OS and data single partition.


Sounds like a plan. 

Thanks,

Joe

jkinning

unread,
Feb 24, 2017, 2:24:33 PM2/24/17
to stacki
I am running 3.2-7 of Stacki and there is not an xml file in either directory you referenced.

Since I am in a Virtualbox test environment if I reference wget using the http://front-end-ip/myscripts/scripts would the backend be able to see these files? On the frontend it is in the /exports/stack/myscripts.

I'll try the rpm thing. Only issue is there are two IBM BigFix rpms but I also need to deploy the config. So usually I just wget the rpm files and install then place the config if the correct directory and start the services. Not really an RPM packager. :) Also, mainly dealt with SUSE but CentOS doesn't appear to be that much different which is good.


On Wednesday, 22 February 2017 12:28:09 UTC-5, jkinning wrote:

Joe Kaiser

unread,
Feb 24, 2017, 2:27:28 PM2/24/17
to sta...@googlegroups.com
Something didn't go right during the cart creation then, because there should be a file there.

Show me an:

# ls /export/stack/carts/

and then do ls's of every sub-directory under carts.

If you drop the BigFix rpms in the RPMS directory under the cart, you should be able to call them for installation with <package> tags. But lets clarify what's happening with that cart because something is not right. 

Thanks,

Joe


--
You received this message because you are subscribed to the Google Groups "stacki" group.
To unsubscribe from this group and stop receiving emails from it, send an email to stacki+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

jkinning

unread,
Feb 24, 2017, 3:55:16 PM2/24/17
to stacki
Sorry, it's Friday and the sun is shining.

[root@vmjkcentstackifl1t myscripts]# ls /export/stack/carts/
site-custom
[root@vmjkcentstackifl1t myscripts]# ls /export/stack/carts/site-custom/
graph  nodes  RPMS
[root@vmjkcentstackifl1t myscripts]# ls /export/stack/carts/site-custom/graph/
cart-site-custom.xml
[root@vmjkcentstackifl1t myscripts]# ls /export/stack/carts/site-custom/nodes/
cart-site-custom-backend.xml
[root@vmjkcentstackifl1t myscripts]# ls /export/stack/carts/site-custom/RPMS/

The file is under the nodes directory. Doh!
To unsubscribe from this group and stop receiving emails from it, send an email to stacki+un...@googlegroups.com.

jkinning

unread,
Feb 27, 2017, 3:29:00 PM2/27/17
to stacki
I think part of my problem is I am testing this all in VMs running on my local host in VirtualBox. Is it possible to copy files from the frontend to the backend and specify this in the xml file?

In the xml file I have placed the two BigFix rpms inside the <package> definitions.
<package>BESAgent-9.5.3.211-rhe5.x86_64.rpm</package>
<package>BESAgent-9.5.3.211-rhe5.x86_64.rpm</package>

I have in /export/stack/myscripts the following:
actionsite.afxm which needs to go into a directory /var/opt/BESClient, needs to be created and then added.
dhcp_setup_network.pl along with my hostnames.txt file.

If I need to run the dhcp_setup_network.pl do I need to copy the contents from the file and add it to the file definition?
<post>
<file name="/export/stack/myscripts/dhcp_setup_network.pl" perms="0755">
#!/bin/bash

copy and past contents from /export/stack/myscripts/dhcp_setup_network.pl file?
</file>

/export/stack/myscripts/dhcp_setup_network.pl

</post>

<post>
<file name="/export/stack/myscripts/actionsite.sh" perms="0755">
#!/bin/bash
mkdir -P /var/opt/BESClient
mv "export/stack/myscripts/actionsite.afxm" "/var/opt/BESClient"
</file>

/export/stack/myscripts/actionsite.sh

</post>

This still isn't working. I haven't tried to create the RPM with all this stuff and deploy that way I was thinking that was a bit more complicated for me considering I haven't packaged anything to create an RPM before. 

Basically, I have the dhcp_setup_network.pl that runs and obtains IP address and hostname from the hostname.txt file. The BigFix agent and relay installs are from the RPM but I need to include the afxm file (license file) so it will register correctly.



On Wednesday, 22 February 2017 12:28:09 UTC-5, jkinning wrote:

Joe Kaiser

unread,
Feb 27, 2017, 3:53:21 PM2/27/17
to sta...@googlegroups.com
On Mon, Feb 27, 2017 at 1:29 PM, jkinning <jkinn...@gmail.com> wrote:
I think part of my problem is I am testing this all in VMs running on my local host in VirtualBox. Is it possible to copy files from the frontend to the backend and specify this in the xml file?


Yes, drop them in something like /export/stack/myscripts directory

and get them like this and then run them:

<post>
wget --no-check-certificate https://&Kickstart_PrivateAddress;/install/myscripts/<filename>
wget --no-check-certificate https://&Kickstart_PrivateAddress;/install/myscripts/<anotherfilename>

./filename
./anotherfilename
</post>

In the xml file I have placed the two BigFix rpms inside the <package> definitions.
<package>BESAgent-9.5.3.211-rhe5.x86_64.rpm</package>
<package>BESAgent-9.5.3.211-rhe5.x86_64.rpm</package>

This should just be the name that the RPM has in its info, so likely:

<package>BESAgent</package>

but you have this twice. Are there two?
 

I have in /export/stack/myscripts the following:
actionsite.afxm which needs to go into a directory /var/opt/BESClient, needs to be created and then added.
dhcp_setup_network.pl along with my hostnames.txt file.

If I need to run the dhcp_setup_network.pl do I need to copy the contents from the file and add it to the file definition?

No, as long as the dhcp_setup_network.pl is on the node you just run it in the post tags:

<post>
 /path/dhcp_setup_network.pl <args>

 
<post>

This path should be the final path where this script will live. It is not a call to the path on the frontend.

 
<file name="/export/stack/myscripts/dhcp_setup_network.pl" perms="0755">

The contents of dhcp_setup_network.pl goes between these two tags. Unless you're just pulling them with wget as above.
 
</file>



 
/export/stack/myscripts/dhcp_setup_network.pl

</post>


This:  
<post>
<file name="/export/stack/myscripts/actionsite.sh" perms="0755">
#!/bin/bash
mkdir -P /var/opt/BESClient
mv "export/stack/myscripts/actionsite.afxm" "/var/opt/BESClient"
</file>

/export/stack/myscripts/actionsite.sh

</post>


Should be like this:

<post>

<file name="/var/opt/BESClient" perms="0755">
the actual actionsite.axfm code
</file>

/var/opt/BESClient
</post>

The <file></file> tags is actual script content, nothing is run. If you want it to run, call the script from outside the file tags. The <file></file> tags contain the contents of the script on the node that's installing. 

 
This still isn't working. I haven't tried to create the RPM with all this stuff and deploy that way I was thinking that was a bit more complicated for me considering I haven't packaged anything to create an RPM before. 

Basically, I have the dhcp_setup_network.pl that runs and obtains IP address and hostname from the hostname.txt file. The BigFix agent and relay installs are from the RPM but I need to include the afxm file (license file) so it will register correctly.



Send me the contents of dhcp_setup_network.pl and an example hostnames.txt file and I can work up an example.

Thanks,

Joe


jkinning

unread,
Feb 27, 2017, 3:59:09 PM2/27/17
to stacki
Attached are the dhcp_setup_network.pl and hostnames.txt.

The hostnames.txt may change depending on how Offices are stood up and removed depending on sales efforts.

wget --no-check-certificate https://&Kickstart_PrivateAddress;/install/myscripts/<filename> the &Kickstart_PrivateAddress is my frontend IP address or hostname correct? 



On Wednesday, 22 February 2017 12:28:09 UTC-5, jkinning wrote:
dhcp_setup_network.pl
hostnames.txt

Joe Kaiser

unread,
Feb 27, 2017, 4:31:06 PM2/27/17
to sta...@googlegroups.com
On Mon, Feb 27, 2017 at 1:59 PM, jkinning <jkinn...@gmail.com> wrote:
Attached are the dhcp_setup_network.pl and hostnames.txt.

The hostnames.txt may change depending on how Offices are stood up and removed depending on sales efforts.

wget --no-check-certificate https://&Kickstart_PrivateAddress;/install/myscripts/<filename> the &Kickstart_PrivateAddress is my frontend IP address or hostname correct? 


This construct: &Kickstart_PrivateAddress; 

is an xml entity. The kickstart generator knows to look up the value of the Kickstart_PrivateAddress in the database and fill it in. So you don't have to put anything in there. 

What paths do you normally set for dhcp_setup_network.pl and hostnames.txt.
 
Thanks,

Joe
--
You received this message because you are subscribed to the Google Groups "stacki" group.
To unsubscribe from this group and stop receiving emails from it, send an email to stacki+unsubscribe@googlegroups.com.

Joe Kaiser

unread,
Feb 27, 2017, 5:00:07 PM2/27/17
to sta...@googlegroups.com
You're looking at something like this. Please note the name in the file tags should have the full path  of where you put the hostnames and the dhcp_setup_network.pl files. 

You'll also notice the pl file has this construct between the file tags:

<![[CDATA

actual text of the pl file

]]>


This prevents the xml parser from parsing special characters like < >, &&. 

Thanks,

Joe
example.xml

Joe Kaiser

unread,
Feb 28, 2017, 12:33:16 PM2/28/17
to sta...@googlegroups.com
Hi!

If after this it's still not working. I would be happy to pop up and webex and we can share your screen (assuming your company allows that) and I'll walk you through it.

Thanks,

Joe

jkinning

unread,
Feb 28, 2017, 1:12:53 PM2/28/17
to stacki
WOW! That would be super. I placed everything in place and ran this on the frontend:
stack set host boot test-server attr=nukedisks value=true
stack set host boot test-server action=install

rebooted my backend and selected the lan boot. After the backend came up I still don't see the BigFix Client and can't tell if the dhcp_network_setup.pl script ran. I also realize I need to include the squid package as well. I looked at the log files under /root on the backend and nothing appears to have written to the stack-post.log.

I am free until 3pm EST today if that works for you.
 
Thanks,

Joe
To unsubscribe from this group and stop receiving emails from it, send an email to stacki+un...@googlegroups.com.

Joe Kaiser

unread,
Feb 28, 2017, 1:16:27 PM2/28/17
to sta...@googlegroups.com
What would be a good time then? I have a meeting at 3pm MST and then I'm gone after that. I'm available until then.

Thanks,

Joe

To unsubscribe from this group and stop receiving emails from it, send an email to stacki+unsubscribe@googlegroups.com.

jkinning

unread,
Feb 28, 2017, 1:21:27 PM2/28/17
to stacki
I'm good now if you are. I am available until 3pm EST.

Joe Kaiser

unread,
Feb 28, 2017, 1:30:30 PM2/28/17
to sta...@googlegroups.com
Invitation sent, please note audio is on a conference bridge.

Thanks,

Joe


To unsubscribe from this group and stop receiving emails from it, send an email to stacki+unsubscribe@googlegroups.com.
Message has been deleted

jkinning

unread,
Mar 2, 2017, 9:21:25 AM3/2/17
to stacki
Running into an issue with getting squid installed. I am thinking it might be easier to just add the CentOS 7.2 media, not sure if I can use the 7.3 media, and create a pallet to get squid installed. I added the squid package to the RPMS directory under the /exports/stack/carts/site-custom/RPMS and added <package>squid</package> but that didn't work. So I used the same method you helped with for the BigFix rpm and that got it down to the backend but then ran into the dependencies issue.
warning: squid-3.5.20-2.el7.x86_64.rpm: Header V3 RSA/SHA256 Signature, key ID f4a80eb5: NOKEY
error: Failed dependencies:
        libecap.so.3()(64bit) is needed by squid-7:3.5.20-2.el7.x86_64
        libltdl.so.7()(64bit) is needed by squid-7:3.5.20-2.el7.x86_64
        perl(DBI) is needed by squid-7:3.5.20-2.el7.x86_64
        perl(Data::Dumper) is needed by squid-7:3.5.20-2.el7.x86_64
        perl(Digest::MD5) is needed by squid-7:3.5.20-2.el7.x86_64
        squid-migration-script is needed by squid-7:3.5.20-2.el7.x86_64

What fun! :) I try to move forward with creating a pallet using the 7.3 media but that returns these errors. I have the CentOS-7-x86_64-DVD-1611.iso sitting in the /export directory.

[root@vmjkcentstackifl1t export]# stack add pallet CentOS-7-x86_64-DVD-1611.iso
Copying "BaseOS" (7,x86_64) pallet ...
rsync: writefd_unbuffered failed to write 4 bytes to socket [sender]: Broken pipe (32)
rsync: connection unexpectedly closed (25373 bytes received so far) [sender]
rsync error: error in rsync protocol data stream (code 12) at io.c(605) [sender=3.0.9]
[root@vmjkcentstackifl1t export]# stack list pallet
NAME    VERSION RELEASE ARCH   OS     BOXES
os:     7.2     7.x     x86_64 redhat default
stacki: 3.2     7.x     x86_64 redhat default
BaseOS: 7       ------- x86_64 redhat -------

[root@vmjkcentstackifl1t export]# stack add pallet CentOS-7-x86_64-DVD-1611.iso
Copying "BaseOS" (7,x86_64) pallet ...
rsync: writefd_unbuffered failed to write 4 bytes to socket [sender]: Broken pipe (32)
rsync: connection unexpectedly closed (41 bytes received so far) [sender]
rsync error: error in rsync protocol data stream (code 12) at io.c(605) [sender=3.0.9]

[root@vmjkcentstackifl1t export]# pwd
/export

Joe Kaiser

unread,
Mar 2, 2017, 3:22:22 PM3/2/17
to sta...@googlegroups.com
So, if you use the full CentOS iso you have to enable that one:

# stack enable pallet BaseOS

and disable the "os" pallet

# stack disable pallet os

If squid is in the base CentOS pallet, you shouldn't have to put any RPMS into your RPMS directory of the cart. Just add a <package>squid</package> tag to the cart-site-custom-backend.xml file. 

Dependencies should get resolved. 

The rsync is weird. We may have to fix the fact that 7.3 isos are not recognized correctly, but that's a simple fix. 

Thanks,

Joe

--

jkinning

unread,
Mar 2, 2017, 3:29:49 PM3/2/17
to stacki
Ok, so those errors don't mean much?

[root@vmjkcentstackifl1t export]# stack list pallet
NAME    VERSION RELEASE ARCH   OS     BOXES
os:     7.2     7.x     x86_64 redhat -------
stacki: 3.2     7.x     x86_64 redhat default
BaseOS: 7       ------- x86_64 redhat default


The wiki also says to run yum -y install genisoimage. Do I need to do that or should I be good to install the backend again and see if the <package>squid</package> gets installed?
To unsubscribe from this group and stop receiving emails from it, send an email to stacki+un...@googlegroups.com.

Joe Kaiser

unread,
Mar 2, 2017, 3:33:01 PM3/2/17
to sta...@googlegroups.com
after you enable it, and remove the squid rpm from the cart, do a "yum list squid" and see if it gets listed. Then try an install and see what happens.

To unsubscribe from this group and stop receiving emails from it, send an email to stacki+unsubscribe@googlegroups.com.

jkinning

unread,
Mar 2, 2017, 3:43:38 PM3/2/17
to stacki
[root@vmjkcentstackifl1t export]# rm stack/carts/site-custom/RPMS/BES
BESAgent-9.5.3.211-rhe5.x86_64.rpm  BESRelay-9.5.3.211-rhe5.x86_64.rpm
[root@vmjkcentstackifl1t export]# yum list squid
Trying other mirror.
To address this issue please refer to the below knowledge base article


If above article doesn't help to resolve this issue please create a bug on https://bugs.centos.org/



 One of the configured repositories failed (BaseOS 7),
 and yum doesn't have enough cached data to continue. At this point the only
 safe thing yum can do is fail. There are a few ways to work "fix" this:

     1. Contact the upstream for the repository and get them to fix the problem.

     2. Reconfigure the baseurl/etc. for the repository, to point to a working
        upstream. This is most often useful if you are using a newer
        distribution release than is supported by the repository (and the
        packages for the previous distribution release still work).

     3. Disable the repository, so yum won't use it by default. Yum will then
        just ignore the repository until you permanently enable it again or use
        --enablerepo for temporary usage:

            yum-config-manager --disable BaseOS-7

     4. Configure the failing repository to be skipped, if it is unavailable.
        Note that yum will try to contact the repo. when it runs most commands,
        so will have to try and fail each time (and thus. yum will be be much
        slower). If it is a very temporary problem though, this is often a nice
        compromise:

            yum-config-manager --save --setopt=BaseOS-7.skip_if_unavailable=true

failure: repodata/repomd.xml from BaseOS-7: [Errno 256] No more mirrors to try.

I don't think the stack add pallet command completed successfully when I ran that against the ISO. I looked under 
[root@vmjkcentstackifl1t export]# ll stack/pallets/BaseOS/7/redhat/x86_64/Packages/
total 1789656
-rw-rw-r-- 1 root root  1772792 Nov 20 12:04 389-ds-base-1.3.5.10-11.el7.x86_64.rpm
-rw-rw-r-- 1 root root   679884 Nov 20 12:04 389-ds-base-libs-1.3.5.10-11.el7.x86_64.rpm
-rw-rw-r-- 1 root root    77832 Nov 25  2015 abattis-cantarell-fonts-0.0.16-3.el7.noarch.rpm
-rw-rw-r-- 1 root root   545524 Dec  2 10:45 abrt-2.1.11-45.el7.centos.x86_64.rpm
-rw-rw-r-- 1 root root   195488 Dec  2 10:45 abrt-addon-ccpp-2.1.11-45.el7.centos.x86_64.rpm
-rw-rw-r-- 1 root root   106828 Dec  2 10:45 abrt-addon-kerneloops-2.1.11-45.el7.centos.x86_64.rpm
-rw-rw-r-- 1 root root    97084 Dec  2 10:45 abrt-addon-pstoreoops-2.1.11-45.el7.centos.x86_64.rpm
-rw-rw-r-- 1 root root   102928 Dec  2 10:45 abrt-addon-python-2.1.11-45.el7.centos.x86_64.rpm
-rw-rw-r-- 1 root root   107388 Dec  2 10:46 abrt-addon-vmcore-2.1.11-45.el7.centos.x86_64.rpm
-rw-rw-r-- 1 root root    97724 Dec  2 10:46 abrt-addon-xorg-2.1.11-45.el7.centos.x86_64.rpm
-rw-rw-r-- 1 root root    87952 Dec  2 10:46 abrt-cli-2.1.11-45.el7.centos.x86_64.rpm
-rw-rw-r-- 1 root root    89160 Dec  2 10:46 abrt-console-notification-2.1.11-45.el7.centos.x86_64.rpm
-rw-rw-r-- 1 root root   122504 Dec  2 10:46 abrt-dbus-2.1.11-45.el7.centos.x86_64.rpm
-rw-rw-r-- 1 root root    88020 Dec  2 10:46 abrt-desktop-2.1.11-45.el7.centos.x86_64.rpm
-rw-rw-r-- 1 root root   193116 Dec  2 10:46 abrt-gui-2.1.11-45.el7.centos.x86_64.rpm
-rw-rw-r-- 1 root root    95668 Dec  2 10:46 abrt-gui-libs-2.1.11-45.el7.centos.x86_64.rpm
-rw-rw-r-- 1 root root    34500 Nov 25  2015 abrt-java-connector-1.0.6-9.el7.x86_64.rpm
-rw-rw-r-- 1 root root   109964 Dec  2 10:47 abrt-libs-2.1.11-45.el7.centos.x86_64.rpm
-rw-rw-r-- 1 root root   110104 Dec  2 10:47 abrt-python-2.1.11-45.el7.centos.x86_64.rpm
-rw-rw-r-- 1 root root   123664 Dec  2 10:47 abrt-retrace-client-2.1.11-45.el7.centos.x86_64.rpm
-rw-rw-r-- 1 root root   100396 Dec  2 10:47 abrt-tui-2.1.11-45.el7.centos.x86_64.rpm
-rw-rw-r-- 1 root root    91604 Nov 20 12:04 accountsservice-0.6.35-12.el7.x86_64.rpm
-rw-rw-r-- 1 root root    78620 Nov 20 12:05 accountsservice-libs-0.6.35-12.el7.x86_64.rpm
-rw-rw-r-- 1 root root    82864 Jul  3  2014 acl-2.2.51-12.el7.x86_64.rpm
-rw-rw-r-- 1 root root    69332 Nov 25  2015 acpid-2.0.19-6.el7.x86_64.rpm
-rw-rw-r-- 1 root root   105336 Nov 20 12:05 adcli-0.8.1-3.el7.x86_64.rpm
-rw-rw-r-- 1 root root   130648 Nov 25  2015 adwaita-cursor-theme-3.14.1-1.el7.noarch.rpm
-rw-rw-r-- 1 root root    83372 Nov 25  2015 adwaita-gtk2-theme-3.14.2.2-2.el7.x86_64.rpm
-rw-rw-r-- 1 root root 11851396 Nov 25  2015 adwaita-icon-theme-3.14.1-1.el7.noarch.rpm
-rw-rw-r-- 1 root root   148020 Jul  3  2014 agg-2.5-18.el7.x86_64.rpm
-rw-rw-r-- 1 root root    23548 Jul  3  2014 aic94xx-firmware-30-6.el7.noarch.rpm
-rw-rw-r-- 1 root root   133112 Nov 20 12:05 aide-0.15.1-11.el7.x86_64.rpm
-rw-rw-r-- 1 root root   742196 Jul  3  2014 akonadi-1.9.2-4.el7.x86_64.rpm
-rw-rw-r-- 1 root root    15872 Jul  3  2014 akonadi-mysql-1.9.2-4.el7.x86_64.rpm
-rw-rw-r-- 1 root root   133360 Jul  3  2014 alacarte-3.7.90-8.el7.noarch.rpm
-rw-rw-r-- 1 root root  2409676 Mar 14  2015 alsa-firmware-1.0.28-2.el7.noarch.rpm
-rw-rw-r-- 1 root root   425260 Nov 20 12:05 alsa-lib-1.1.1-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root   966576 Nov 20 12:06 alsa-lib-devel-1.1.1-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root    42044 Nov 20 12:06 alsa-plugins-pulseaudio-1.1.1-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root    36160 Nov 20 12:07 alsa-tools-firmware-1.1.0-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root  1085140 Nov 20 12:07 alsa-utils-1.1.1-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root   128152 Nov 20 12:07 amanda-3.3.3-17.el7.x86_64.rpm
-rw-rw-r-- 1 root root   137000 Nov 20 12:07 amanda-client-3.3.3-17.el7.x86_64.rpm
-rw-rw-r-- 1 root root  1327584 Nov 20 12:07 amanda-libs-3.3.3-17.el7.x86_64.rpm
-rw-rw-r-- 1 root root   264872 Nov 20 12:07 amanda-server-3.3.3-17.el7.x86_64.rpm
-rw-rw-r-- 1 root root   184404 Nov 30 08:00 anaconda-21.48.22.93-1.el7.centos.0.1.x86_64.rpm
-rw-rw-r-- 1 root root  1651388 Nov 30 08:00 anaconda-core-21.48.22.93-1.el7.centos.0.1.x86_64.rpm
-rw-rw-r-- 1 root root   490256 Nov 30 08:01 anaconda-gui-21.48.22.93-1.el7.centos.0.1.x86_64.rpm
-rw-rw-r-- 1 root root   272660 Nov 30 08:01 anaconda-tui-21.48.22.93-1.el7.centos.0.1.x86_64.rpm
-rw-rw-r-- 1 root root   204364 Nov 30 08:01 anaconda-widgets-21.48.22.93-1.el7.centos.0.1.x86_64.rpm
-rw-rw-r-- 1 root root  2030780 Jul  3  2014 ant-1.9.2-9.el7.noarch.rpm
-rw-rw-r-- 1 root root   365776 Jul  3  2014 antlr-tool-2.7.7-30.el7.noarch.rpm
-rw-rw-r-- 1 root root    51704 Jul  3  2014 apache-commons-cli-1.2-13.el7.noarch.rpm
-rw-rw-r-- 1 root root   228420 Jul  3  2014 apache-commons-codec-1.8-7.el7.noarch.rpm
-rw-rw-r-- 1 root root   520772 Dec  1  2015 apache-commons-collections-3.2.1-22.el7_2.noarch.rpm
-rw-rw-r-- 1 root root    55304 Jul  3  2014 apache-commons-daemon-1.0.13-6.el7.x86_64.rpm
-rw-rw-r-- 1 root root   171076 Jul  3  2014 apache-commons-dbcp-1.4-17.el7.noarch.rpm
-rw-rw-r-- 1 root root   193572 Jul  3  2014 apache-commons-io-2.4-12.el7.noarch.rpm
-rw-rw-r-- 1 root root   283084 Jul  3  2014 apache-commons-lang-2.6-15.el7.noarch.rpm
-rw-rw-r-- 1 root root    79496 Jul  3  2014 apache-commons-logging-1.1.2-7.el7.noarch.rpm
-rw-rw-r-- 1 root root   115944 Jul  3  2014 apache-commons-pool-1.6-9.el7.noarch.rpm
-rw-rw-r-- 1 root root  5807436 Nov 25  2015 appstream-data-7-6.el7.noarch.rpm
-rw-rw-r-- 1 root root   105572 Jul  3  2014 apr-1.4.8-3.el7.x86_64.rpm
-rw-rw-r-- 1 root root   192428 Jul  3  2014 apr-devel-1.4.8-3.el7.x86_64.rpm
-rw-rw-r-- 1 root root    94132 Jul  3  2014 apr-util-1.5.2-6.el7.x86_64.rpm
-rw-rw-r-- 1 root root    78072 Jul  3  2014 apr-util-devel-1.5.2-6.el7.x86_64.rpm
-rw-rw-r-- 1 root root    71908 Jul  3  2014 args4j-2.0.16-13.el7.noarch.rpm
-rw-rw-r-- 1 root root   283576 Jul  3  2014 ark-4.10.5-4.el7.x86_64.rpm
-rw-rw-r-- 1 root root   110784 Jul  3  2014 ark-libs-4.10.5-4.el7.x86_64.rpm
-rw-rw-r-- 1 root root    47828 Nov 20 12:07 arptables-0.0.4-8.el7.x86_64.rpm
-rw-rw-r-- 1 root root   195860 Nov 20 12:07 arpwatch-2.1a15-33.el7.x86_64.rpm
-rw-rw-r-- 1 root root    51824 Nov 20 12:07 at-3.1.13-22.el7.x86_64.rpm
-rw-rw-r-- 1 root root   257180 Nov 25  2015 atk-2.14.0-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root   183728 Nov 25  2015 atk-devel-2.14.0-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root    78372 Jul  3  2014 atkmm-2.22.7-3.el7.x86_64.rpm
-rw-rw-r-- 1 root root  4703380 Nov 25  2015 atlas-3.10.1-10.el7.x86_64.rpm
-rw-rw-r-- 1 root root    80992 Nov 20 12:08 at-spi2-atk-2.14.1-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root    12208 Nov 20 12:08 at-spi2-atk-devel-2.14.1-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root   159176 Nov 20 12:08 at-spi2-core-2.14.1-2.el7.x86_64.rpm
-rw-rw-r-- 1 root root   142676 Nov 20 12:08 at-spi2-core-devel-2.14.1-2.el7.x86_64.rpm
-rw-rw-r-- 1 root root   238092 Nov 25  2015 attica-0.4.2-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root    29296 Nov 25  2015 attica-devel-0.4.2-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root    67184 Jul  3  2014 attr-2.4.46-12.el7.x86_64.rpm
-rw-rw-r-- 1 root root    49544 Nov 20 12:08 audispd-plugins-2.6.5-3.el7.x86_64.rpm
-rw-rw-r-- 1 root root   238224 Nov 20 12:08 audit-2.6.5-3.el7.x86_64.rpm
-rw-rw-r-- 1 root root    86796 Nov 20 12:08 audit-libs-2.6.5-3.el7.x86_64.rpm
-rw-rw-r-- 1 root root    72900 Nov 20 12:08 audit-libs-devel-2.6.5-3.el7.x86_64.rpm
-rw-rw-r-- 1 root root    71824 Nov 20 12:09 audit-libs-python-2.6.5-3.el7.x86_64.rpm
-rw-rw-r-- 1 root root   363056 Nov 25  2015 augeas-libs-1.4.0-2.el7.x86_64.rpm
-rw-rw-r-- 1 root root   429080 Nov 20 12:09 authconfig-6.2.8-14.el7.x86_64.rpm
-rw-rw-r-- 1 root root   110200 Nov 20 12:09 authconfig-gtk-6.2.8-14.el7.x86_64.rpm
-rw-rw-r-- 1 root root    49368 Nov 25  2015 authd-1.4.3-42.el7.x86_64.rpm
-rw-rw-r-- 1 root root   717912 Jul  3  2014 autoconf-2.69-11.el7.noarch.rpm
-rw-rw-r-- 1 root root   142532 Nov 20 12:09 autocorr-af-5.0.6.2-3.el7.noarch.rpm
-rw-rw-r-- 1 root root   150548 Nov 20 12:09 autocorr-bg-5.0.6.2-3.el7.noarch.rpm
-rw-rw-r-- 1 root root   151088 Nov 20 12:09 autocorr-ca-5.0.6.2-3.el7.noarch.rpm
-rw-rw-r-- 1 root root   153992 Nov 20 12:09 autocorr-cs-5.0.6.2-3.el7.noarch.rpm
-rw-rw-r-- 1 root root   154464 Nov 20 12:09 autocorr-da-5.0.6.2-3.el7.noarch.rpm
-rw-rw-r-- 1 root root   152052 Nov 20 12:09 autocorr-de-5.0.6.2-3.el7.noarch.rpm
-rw-rw-r-- 1 root root   181428 Nov 20 12:09 autocorr-en-5.0.6.2-3.el7.noarch.rpm
-rw-rw-r-- 1 root root   152932 Nov 20 12:09 autocorr-es-5.0.6.2-3.el7.noarch.rpm
-rw-rw-r-- 1 root root   195500 Nov 20 12:09 autocorr-fa-5.0.6.2-3.el7.noarch.rpm
-rw-rw-r-- 1 root root   148868 Nov 20 12:10 autocorr-fi-5.0.6.2-3.el7.noarch.rpm
-rw-rw-r-- 1 root root   152432 Nov 20 12:10 autocorr-fr-5.0.6.2-3.el7.noarch.rpm
-rw-rw-r-- 1 root root   151632 Nov 20 12:10 autocorr-ga-5.0.6.2-3.el7.noarch.rpm
-rw-rw-r-- 1 root root   149900 Nov 20 12:10 autocorr-hr-5.0.6.2-3.el7.noarch.rpm
-rw-rw-r-- 1 root root   158660 Nov 20 12:10 autocorr-hu-5.0.6.2-3.el7.noarch.rpm
-rw-rw-r-- 1 root root   138500 Nov 20 12:10 autocorr-is-5.0.6.2-3.el7.noarch.rpm
-rw-rw-r-- 1 root root   149580 Nov 20 12:10 autocorr-it-5.0.6.2-3.el7.noarch.rpm
-rw-rw-r-- 1 root root   145100 Nov 20 12:10 autocorr-ja-5.0.6.2-3.el7.noarch.rpm
-rw-rw-r-- 1 root root   145916 Nov 20 12:10 autocorr-ko-5.0.6.2-3.el7.noarch.rpm
-rw-rw-r-- 1 root root   142784 Nov 20 12:10 autocorr-lb-5.0.6.2-3.el7.noarch.rpm
-rw-rw-r-- 1 root root   142868 Nov 20 12:10 autocorr-lt-5.0.6.2-3.el7.noarch.rpm
-rw-rw-r-- 1 root root   141852 Nov 20 12:10 autocorr-mn-5.0.6.2-3.el7.noarch.rpm
-rw-rw-r-- 1 root root   161388 Nov 20 12:10 autocorr-nl-5.0.6.2-3.el7.noarch.rpm
-rw-rw-r-- 1 root root   156336 Nov 20 12:10 autocorr-pl-5.0.6.2-3.el7.noarch.rpm
-rw-rw-r-- 1 root root   181728 Nov 20 12:11 autocorr-pt-5.0.6.2-3.el7.noarch.rpm
-rw-rw-r-- 1 root root   216880 Nov 20 12:11 autocorr-ro-5.0.6.2-3.el7.noarch.rpm
-rw-rw-r-- 1 root root   146376 Nov 20 12:11 autocorr-ru-5.0.6.2-3.el7.noarch.rpm
-rw-rw-r-- 1 root root   146268 Nov 20 12:11 autocorr-sk-5.0.6.2-3.el7.noarch.rpm
-rw-rw-r-- 1 root root   152628 Nov 20 12:11 autocorr-sl-5.0.6.2-3.el7.noarch.rpm
-rw-rw-r-- 1 root root   140224 Nov 20 12:11 autocorr-sr-5.0.6.2-3.el7.noarch.rpm
-rw-rw-r-- 1 root root   143144 Nov 20 12:11 autocorr-sv-5.0.6.2-3.el7.noarch.rpm
-rw-rw-r-- 1 root root   150044 Nov 20 12:11 autocorr-tr-5.0.6.2-3.el7.noarch.rpm
-rw-rw-r-- 1 root root   147172 Nov 20 12:11 autocorr-vi-5.0.6.2-3.el7.noarch.rpm
-rw-rw-r-- 1 root root   162084 Nov 20 12:11 autocorr-zh-5.0.6.2-3.el7.noarch.rpm
-rw-rw-r-- 1 root root   800356 Nov 20 12:11 autofs-5.0.7-56.el7.x86_64.rpm
-rw-rw-r-- 1 root root    67624 Jul  3  2014 autogen-libopts-5.18-5.el7.x86_64.rpm
-rw-rw-r-- 1 root root   695620 Jul  3  2014 automake-1.13.4-3.el7.noarch.rpm
-rw-rw-r-- 1 root root    34468 Jul  3  2014 automoc-1.0-0.20.rc3.el7.x86_64.rpm
-rw-rw-r-- 1 root root   269588 Nov 20 12:11 avahi-0.6.31-17.el7.x86_64.rpm
-rw-rw-r-- 1 root root    40284 Nov 20 12:11 avahi-autoipd-0.6.31-17.el7.x86_64.rpm
-rw-rw-r-- 1 root root    25264 Nov 20 12:12 avahi-glib-0.6.31-17.el7.x86_64.rpm
-rw-rw-r-- 1 root root    35300 Nov 20 12:13 avahi-gobject-0.6.31-17.el7.x86_64.rpm
-rw-rw-r-- 1 root root    62640 Nov 20 12:13 avahi-libs-0.6.31-17.el7.x86_64.rpm
-rw-rw-r-- 1 root root    37660 Nov 20 12:14 avahi-ui-gtk3-0.6.31-17.el7.x86_64.rpm
-rw-rw-r-- 1 root root    89628 Jul  3  2014 avalon-framework-4.3-10.el7.noarch.rpm
-rw-rw-r-- 1 root root    89268 Jul  3  2014 avalon-logkit-2.1-14.el7.noarch.rpm
-rw-rw-r-- 1 root root    14984 Jul  3  2014 babel-0.9.6-8.el7.noarch.rpm
-rw-rw-r-- 1 root root   120628 Jul  3  2014 babl-0.1.10-9.el7.x86_64.rpm
-rw-rw-r-- 1 root root   103600 Nov 25  2015 bacula-client-5.2.13-23.1.el7.x86_64.rpm
-rw-rw-r-- 1 root root    99552 Nov 25  2015 bacula-common-5.2.13-23.1.el7.x86_64.rpm
-rw-rw-r-- 1 root root   218912 Nov 25  2015 bacula-libs-5.2.13-23.1.el7.x86_64.rpm
-rw-rw-r-- 1 root root   364604 Nov 25  2015 baobab-3.14.1-5.el7.x86_64.rpm
-rw-rw-r-- 1 root root     5124 Jul  3  2014 basesystem-10.0-7.el7.centos.noarch.rpm
-rw-rw-r-- 1 root root  1034692 Aug  2  2016 bash-4.2.46-20.el7_2.x86_64.rpm
-rw-rw-r-- 1 root root    87272 Jul  3  2014 bash-completion-2.1-6.el7.noarch.rpm
-rw-rw-r-- 1 root root   117272 Jul  3  2014 bc-1.06.95-13.el7.x86_64.rpm
-rw-rw-r-- 1 root root   480304 Jul  3  2014 bcel-5.2-18.el7.noarch.rpm
-rw-rw-r-- 1 root root   180532 Jul  3  2014 bea-stax-1.2.0-9.el7.noarch.rpm
-rw-rw-r-- 1 root root    31920 Jul  3  2014 bea-stax-api-1.2.0-9.el7.noarch.rpm
-rw-rw-r-- 1 root root  1862640 Nov 20 12:14 bind-9.9.4-37.el7.x86_64.rpm
-rw-rw-r-- 1 root root    86224 Nov 20 12:14 bind-chroot-9.9.4-37.el7.x86_64.rpm
-rw-rw-r-- 1 root root   122784 Nov 20 12:14 bind-dyndb-ldap-10.0-5.el7.x86_64.rpm
-rw-rw-r-- 1 root root  1047096 Nov 20 12:14 bind-libs-9.9.4-37.el7.x86_64.rpm
-rw-rw-r-- 1 root root   746304 Nov 20 12:15 bind-libs-lite-9.9.4-37.el7.x86_64.rpm
-rw-rw-r-- 1 root root    84452 Nov 20 12:15 bind-license-9.9.4-37.el7.noarch.rpm
-rw-rw-r-- 1 root root   302360 Nov 20 12:15 bind-pkcs11-9.9.4-37.el7.x86_64.rpm
-rw-rw-r-- 1 root root  1199108 Nov 20 12:15 bind-pkcs11-libs-9.9.4-37.el7.x86_64.rpm
-rw-rw-r-- 1 root root   200380 Nov 20 12:15 bind-pkcs11-utils-9.9.4-37.el7.x86_64.rpm
-rw-rw-r-- 1 root root   206012 Nov 20 12:15 bind-utils-9.9.4-37.el7.x86_64.rpm
-rw-rw-r-- 1 root root  5664740 Nov 20 12:16 binutils-2.25.1-22.base.el7.x86_64.rpm
-rw-rw-r-- 1 root root   863800 Nov 20 16:31 binutils-devel-2.25.1-22.base.el7.x86_64.rpm
-rw-rw-r-- 1 root root    38972 Nov 20 12:16 biosdevname-0.7.2-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root   591868 Jul  3  2014 bison-2.7-4.el7.x86_64.rpm
-rw-rw-r-- 1 root root    77740 Jul  3  2014 bitmap-fixed-fonts-0.3-21.el7.noarch.rpm
-rw-rw-r-- 1 root root   229820 Jul  3  2014 bitmap-lucida-typewriter-fonts-0.3-21.el7.noarch.rpm
-rw-rw-r-- 1 root root   408168 Nov 25  2015 blas-3.4.2-5.el7.x86_64.rpm
-rw-rw-r-- 1 root root   137080 Nov 20 12:16 blktrace-1.0.5-8.el7.x86_64.rpm
-rw-rw-r-- 1 root root  2858456 Jul  3  2014 bltk-1.1.0-9.el7.x86_64.rpm
-rw-rw-r-- 1 root root   387428 Nov 25  2015 bluedevil-2.1-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root  1252236 Nov 20 12:16 bluez-5.41-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root    80656 Nov 20 12:16 bluez-libs-5.41-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root    33964 Nov 20 12:17 boost-1.53.0-26.el7.x86_64.rpm
-rw-rw-r-- 1 root root    35948 Nov 20 12:17 boost-atomic-1.53.0-26.el7.x86_64.rpm
-rw-rw-r-- 1 root root    45248 Nov 20 12:17 boost-chrono-1.53.0-26.el7.x86_64.rpm
-rw-rw-r-- 1 root root    37144 Nov 20 12:17 boost-context-1.53.0-26.el7.x86_64.rpm
-rw-rw-r-- 1 root root    52784 Nov 20 12:17 boost-date-time-1.53.0-26.el7.x86_64.rpm
-rw-rw-r-- 1 root root  7292680 Nov 20 12:17 boost-devel-1.53.0-26.el7.x86_64.rpm
-rw-rw-r-- 1 root root    69504 Nov 20 12:18 boost-filesystem-1.53.0-26.el7.x86_64.rpm
-rw-rw-r-- 1 root root   138976 Nov 20 12:18 boost-graph-1.53.0-26.el7.x86_64.rpm
-rw-rw-r-- 1 root root    62352 Nov 20 12:18 boost-iostreams-1.53.0-26.el7.x86_64.rpm
-rw-rw-r-- 1 root root   256888 Nov 20 12:19 boost-locale-1.53.0-26.el7.x86_64.rpm
-rw-rw-r-- 1 root root   342184 Nov 20 12:19 boost-math-1.53.0-26.el7.x86_64.rpm
-rw-rw-r-- 1 root root   159380 Nov 20 12:20 boost-program-options-1.53.0-26.el7.x86_64.rpm
-rw-rw-r-- 1 root root   131812 Nov 20 12:20 boost-python-1.53.0-26.el7.x86_64.rpm
-rw-rw-r-- 1 root root    39956 Nov 20 12:20 boost-random-1.53.0-26.el7.x86_64.rpm
-rw-rw-r-- 1 root root   307328 Nov 20 12:20 boost-regex-1.53.0-26.el7.x86_64.rpm
-rw-rw-r-- 1 root root   173008 Nov 20 12:20 boost-serialization-1.53.0-26.el7.x86_64.rpm
-rw-rw-r-- 1 root root    61704 Nov 20 12:20 boost-signals-1.53.0-26.el7.x86_64.rpm
-rw-rw-r-- 1 root root    40436 Nov 20 12:21 boost-system-1.53.0-26.el7.x86_64.rpm
-rw-rw-r-- 1 root root   228496 Nov 20 12:21 boost-test-1.53.0-26.el7.x86_64.rpm
-rw-rw-r-- 1 root root    58632 Nov 20 12:21 boost-thread-1.53.0-26.el7.x86_64.rpm
-rw-rw-r-- 1 root root    43488 Nov 20 12:21 boost-timer-1.53.0-26.el7.x86_64.rpm
-rw-rw-r-- 1 root root   214628 Nov 20 12:21 boost-wave-1.53.0-26.el7.x86_64.rpm
-rw-rw-r-- 1 root root     6744 Nov 20 12:21 booth-arbitrator-1.0-6.ef769ef.git.el7.noarch.rpm
-rw-rw-r-- 1 root root    90116 Nov 20 12:21 booth-core-1.0-6.ef769ef.git.el7.x86_64.rpm
-rw-rw-r-- 1 root root    13032 Nov 20 12:21 booth-site-1.0-6.ef769ef.git.el7.noarch.rpm
-rw-rw-r-- 1 root root    26824 Jul  3  2014 bpg-chveulebrivi-fonts-3.002-3.el7.noarch.rpm
-rw-rw-r-- 1 root root    28784 Jul  3  2014 bpg-courier-fonts-4.002-3.el7.noarch.rpm
-rw-rw-r-- 1 root root    18128 Jul  3  2014 bpg-fonts-common-20120413-3.el7.noarch.rpm
-rw-rw-r-- 1 root root    26240 Jul  3  2014 bpg-glaho-fonts-9.000-3.el7.noarch.rpm
-rw-rw-r-- 1 root root  2634596 Nov 25  2015 brasero-3.12.1-2.el7.x86_64.rpm
-rw-rw-r-- 1 root root   341368 Nov 25  2015 brasero-libs-3.12.1-2.el7.x86_64.rpm
-rw-rw-r-- 1 root root    30896 Nov 25  2015 brasero-nautilus-3.12.1-2.el7.x86_64.rpm
-rw-rw-r-- 1 root root    32480 Jul  3  2014 bridge-utils-1.5-9.el7.x86_64.rpm
-rw-rw-r-- 1 root root   116692 Nov 20 12:22 brlapi-0.6.0-13.el7.x86_64.rpm
-rw-rw-r-- 1 root root   955224 Nov 20 12:22 brltty-4.5-13.el7.x86_64.rpm
-rw-rw-r-- 1 root root   618636 Nov 20 12:22 btrfs-progs-4.4.1-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root    66292 Jul  3  2014 byacc-1.9.20130304-3.el7.x86_64.rpm
-rw-rw-r-- 1 root root    53120 Nov 25  2015 bzip2-1.0.6-13.el7.x86_64.rpm
-rw-rw-r-- 1 root root   223224 Nov 25  2015 bzip2-devel-1.0.6-13.el7.x86_64.rpm
-rw-rw-r-- 1 root root    40740 Nov 25  2015 bzip2-libs-1.0.6-13.el7.x86_64.rpm
-rw-rw-r-- 1 root root  6366300 Jul  3  2014 bzr-2.5.1-14.el7.x86_64.rpm
-rw-rw-r-- 1 root root   438816 Nov 20 12:23 ca-certificates-2015.2.6-73.el7.noarch.rpm
-rw-rw-r-- 1 root root    38268 Nov 20 12:23 cachefilesd-0.10.9-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root   727824 Nov 25  2015 cairo-1.14.2-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root   357128 Nov 25  2015 cairo-devel-1.14.2-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root    25336 Nov 25  2015 cairo-gobject-1.14.2-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root    18460 Nov 25  2015 cairo-gobject-devel-1.14.2-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root    58516 Jul  3  2014 cairomm-1.10.0-8.el7.x86_64.rpm
-rw-rw-r-- 1 root root    36824 Jul  3  2014 cal10n-0.7.7-4.el7.noarch.rpm
-rw-rw-r-- 1 root root    79768 Jul  3  2014 c-ares-1.10.0-3.el7.x86_64.rpm
-rw-rw-r-- 1 root root    73836 Jul  3  2014 c-ares-devel-1.10.0-3.el7.x86_64.rpm
-rw-rw-r-- 1 root root   153828 Nov 25  2015 caribou-0.4.16-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root    20908 Nov 25  2015 caribou-gtk2-module-0.4.16-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root    20768 Nov 25  2015 caribou-gtk3-module-0.4.16-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root    55996 Jul  3  2014 cdparanoia-10.2-17.el7.x86_64.rpm
-rw-rw-r-- 1 root root    57436 Jul  3  2014 cdparanoia-libs-10.2-17.el7.x86_64.rpm
-rw-rw-r-- 1 root root   327704 Jul  3  2014 cdrdao-1.2.3-20.el7.x86_64.rpm
-rw-rw-r-- 1 root root    54476 Jul  3  2014 celt051-0.5.1.3-8.el7.x86_64.rpm
-rw-rw-r-- 1 root root     4400 Jul  3  2014 centos-bookmarks-7-1.el7.noarch.rpm
-rw-rw-r-- 1 root root    93872 Jul  3  2014 centos-indexhtml-7-9.el7.centos.noarch.rpm
-rw-rw-r-- 1 root root 22354804 Sep 30  2015 centos-logos-70.0.6-3.el7.centos.noarch.rpm
-rw-rw-r-- 1 root root    23604 Nov 29 13:57 centos-release-7-3.1611.el7.centos.x86_64.rpm
-rw-rw-r-- 1 root root   612460 Nov 20 12:23 certmonger-0.78.4-3.el7.x86_64.rpm
-rw-rw-r-- 1 root root    25644 Nov 20 12:23 cgdcbxd-1.0.2-7.el7.x86_64.rpm
-rw-rw-r-- 1 root root   104092 Jul  3  2014 check-0.9.9-5.el7.x86_64.rpm
-rw-rw-r-- 1 root root    27840 Jul  3  2014 check-devel-0.9.9-5.el7.x86_64.rpm
-rw-rw-r-- 1 root root   296980 Nov 20 12:23 checkpolicy-2.5-4.el7.x86_64.rpm
-rw-rw-r-- 1 root root   158520 Nov 25  2015 cheese-3.14.2-5.el7.x86_64.rpm
-rw-rw-r-- 1 root root  1106984 Nov 25  2015 cheese-libs-3.14.2-5.el7.x86_64.rpm
-rw-rw-r-- 1 root root   178940 Nov 20 12:23 chkconfig-1.7.2-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root   287396 Nov 20 12:23 chrony-2.1.1-3.el7.centos.x86_64.rpm
-rw-rw-r-- 1 root root    24116 Jul  3  2014 chrpath-0.13-14.el7.x86_64.rpm
-rw-rw-r-- 1 root root    86136 Nov 20 12:23 cifs-utils-6.2-9.el7.x86_64.rpm
-rw-rw-r-- 1 root root  1147548 Jul  3  2014 cim-schema-2.33.0-6.el7.noarch.rpm
-rw-rw-r-- 1 root root  9141456 Jul  3  2014 cjkuni-ukai-fonts-0.2.20080216.1-51.el7.noarch.rpm
-rw-rw-r-- 1 root root  8626660 Jul  3  2014 cjkuni-uming-fonts-0.2.20080216.1-53.el7.noarch.rpm
-rw-rw-r-- 1 root root    91384 Jul  3  2014 clucene-contribs-lib-2.3.3.4-11.el7.x86_64.rpm
-rw-rw-r-- 1 root root   541032 Jul  3  2014 clucene-core-2.3.3.4-11.el7.x86_64.rpm
-rw-rw-r-- 1 root root  1047320 Nov 20 12:24 clutter-1.20.0-10.el7.x86_64.rpm
-rw-rw-r-- 1 root root    62140 Nov 25  2015 clutter-gst2-2.0.12-2.el7.x86_64.rpm
-rw-rw-r-- 1 root root    42432 Nov 25  2015 clutter-gtk-1.4.4-7.el7.x86_64.rpm
-rw-rw-r-- 1 root root  7392732 Nov 20 12:24 cmake-2.8.12.2-2.el7.x86_64.rpm
-rw-rw-r-- 1 root root   199728 Nov 20 12:24 cmirror-2.02.166-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root   121928 Jul  3  2014 cmpi-bindings-pywbem-0.9.5-6.el7.x86_64.rpm
-rw-rw-r-- 1 root root   168188 Jul  3  2014 codemodel-2.6-9.el7.noarch.rpm
-rw-rw-r-- 1 root root   436292 Nov 20 12:24 cogl-1.18.2-12.el7.x86_64.rpm
-rw-rw-r-- 1 root root   430860 Nov 25  2015 colord-1.2.7-2.el7.x86_64.rpm
-rw-rw-r-- 1 root root    21416 Nov 25  2015 colord-gtk-0.1.25-4.el7.x86_64.rpm
-rw-rw-r-- 1 root root   134460 Jul  3  2014 colord-kde-0.3.0-3.el7.x86_64.rpm
-rw-rw-r-- 1 root root   178568 Nov 25  2015 colord-libs-1.2.7-2.el7.x86_64.rpm
-rw-rw-r-- 1 root root     5404 Jul  3  2014 color-filesystem-1-13.el7.noarch.rpm
-rw-rw-r-- 1 root root   112460 Nov 25  2015 compat-dapl-1.2.19-4.el7.x86_64.rpm
-rw-rw-r-- 1 root root   814224 Sep 11  2014 compat-db47-4.7.25-28.el7.x86_64.rpm
-rw-rw-r-- 1 root root    49188 Sep 11  2014 compat-db-headers-4.7.25-28.el7.noarch.rpm
-rw-rw-r-- 1 root root 10527688 Jul  3  2014 compat-gcc-44-4.4.7-8.el7.x86_64.rpm
-rw-rw-r-- 1 root root  6636656 Jul  3  2014 compat-gcc-44-c++-4.4.7-8.el7.x86_64.rpm
-rw-rw-r-- 1 root root  1307484 Jul  3  2014 compat-glibc-2.12-4.el7.centos.x86_64.rpm
-rw-rw-r-- 1 root root   462552 Jul  3  2014 compat-glibc-headers-2.12-4.el7.centos.x86_64.rpm
-rw-rw-r-- 1 root root    19112 Jul  3  2014 compat-libcap1-1.10-7.el7.x86_64.rpm
-rw-rw-r-- 1 root root   288292 Nov 25  2015 compat-libcogl12-1.14.0-3.el7.x86_64.rpm
-rw-rw-r-- 1 root root    27936 Nov 25  2015 compat-libcogl-pango12-1.14.0-3.el7.x86_64.rpm
-rw-rw-r-- 1 root root    98240 Nov 25  2015 compat-libcolord1-1.0.4-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root   158684 Jul  3  2014 compat-libf2c-34-3.4.6-32.el7.x86_64.rpm
-rw-rw-r-- 1 root root   145864 Jul  3  2014 compat-libgfortran-41-4.1.2-44.el7.x86_64.rpm
-rw-rw-r-- 1 root root   114644 Nov 25  2015 compat-libpackagekit-glib2-16-0.8.9-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root   137760 Jul  3  2014 compat-libtiff3-3.9.4-11.el7.x86_64.rpm
-rw-rw-r-- 1 root root   178152 Jul  3  2014 compat-openldap-2.3.43-5.el7.x86_64.rpm
-rw-rw-r-- 1 root root   739516 Nov 25  2015 compat-poppler022-0.22.5-4.el7.x86_64.rpm
-rw-rw-r-- 1 root root    89164 Nov 25  2015 compat-poppler022-glib-0.22.5-4.el7.x86_64.rpm
-rw-rw-r-- 1 root root   153652 Nov 25  2015 compat-poppler022-qt-0.22.5-4.el7.x86_64.rpm
-rw-rw-r-- 1 root root    54620 Jul  3  2014 comps-extras-7-2.el7.noarch.rpm
-rw-rw-r-- 1 root root   147392 Nov 20 12:25 conman-0.2.7-15.el7.x86_64.rpm
-rw-rw-r-- 1 root root  4415552 Nov 20 12:25 control-center-3.14.5-19.el7.x86_64.rpm
-rw-rw-r-- 1 root root    19640 Nov 20 12:25 control-center-filesystem-3.14.5-19.el7.x86_64.rpm
-rw-rw-r-- 1 root root   116124 Nov 20 12:26 coolkey-1.1.0-35.el7.x86_64.rpm
-rw-rw-r-- 1 root root    14344 Nov 20 12:26 copy-jdk-configs-1.2-1.el7.noarch.rpm
-rw-rw-r-- 1 root root  3412144 Nov 20 12:26 coreutils-8.22-18.el7.x86_64.rpm
-rw-rw-r-- 1 root root   217668 Nov 20 12:26 corosync-2.4.0-4.el7.x86_64.rpm
-rw-rw-r-- 1 root root   128228 Nov 20 12:26 corosynclib-2.4.0-4.el7.x86_64.rpm
-rw-rw-r-- 1 root root   215008 Nov 25  2015 cpio-2.11-24.el7.x86_64.rpm
-rw-rw-r-- 1 root root  6225248 Nov 20 12:27 cpp-4.8.5-11.el7.x86_64.rpm
-rw-rw-r-- 1 root root    81964 Jul  3  2014 cracklib-2.9.0-11.el7.x86_64.rpm
-rw-rw-r-- 1 root root  3751124 Jul  3  2014 cracklib-dicts-2.9.0-11.el7.x86_64.rpm
-rw-rw-r-- 1 root root  2715596 Nov 20 12:27 crash-7.1.5-2.el7.x86_64.rpm
-rw-rw-r-- 1 root root    41752 Mar 14  2015 crash-gcore-command-1.3.1-0.el7.x86_64.rpm
-rw-rw-r-- 1 root root    18768 Nov 20 12:27 crash-ptdump-command-1.0.3-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root    29044 Nov 20 12:27 crash-trace-command-2.0-10.el7.x86_64.rpm
-rw-rw-r-- 1 root root    38916 Nov 20 12:27 crda-3.13_2016.02.08-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root    94660 Nov 20 12:27 createrepo-0.9.9-26.el7.noarch.rpm
-rw-rw-r-- 1 root root    92348 Mar 31  2016 cronie-1.4.11-14.el7_2.1.x86_64.rpm
-rw-rw-r-- 1 root root    35452 Mar 31  2016 cronie-anacron-1.4.11-14.el7_2.1.x86_64.rpm
-rw-rw-r-- 1 root root    13176 Jul  3  2014 crontabs-1.11-6.20121102git.el7.noarch.rpm
-rw-rw-r-- 1 root root    80164 Jul  3  2014 crypto-utils-2.4.1-42.el7.x86_64.rpm
-rw-rw-r-- 1 root root   127112 Nov 20 12:27 cryptsetup-1.7.2-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root   221172 Nov 20 12:28 cryptsetup-libs-1.7.2-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root    35200 Nov 20 12:28 cryptsetup-python-1.7.2-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root    49144 Nov 20 12:28 cryptsetup-reencrypt-1.7.2-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root   207780 Nov 20 12:28 cscope-15.8-9.el7.x86_64.rpm
-rw-rw-r-- 1 root root   158884 Jul  3  2014 ctags-5.8-13.el7.x86_64.rpm
-rw-rw-r-- 1 root root    15796 Jul  3  2014 ctags-etags-5.8-13.el7.x86_64.rpm
-rw-rw-r-- 1 root root   570456 Nov 20 12:28 ctdb-4.4.4-9.el7.x86_64.rpm
-rw-rw-r-- 1 root root   130232 Jul  3  2014 culmus-aharoni-clm-fonts-0.130-3.el7.noarch.rpm
-rw-rw-r-- 1 root root    25392 Jul  3  2014 culmus-caladings-clm-fonts-0.130-3.el7.noarch.rpm
-rw-rw-r-- 1 root root   199256 Jul  3  2014 culmus-david-clm-fonts-0.130-3.el7.noarch.rpm
-rw-rw-r-- 1 root root    78920 Jul  3  2014 culmus-drugulin-clm-fonts-0.130-3.el7.noarch.rpm
-rw-rw-r-- 1 root root    53540 Jul  3  2014 culmus-ellinia-clm-fonts-0.130-3.el7.noarch.rpm
-rw-rw-r-- 1 root root    18636 Jul  3  2014 culmus-fonts-common-0.130-3.el7.noarch.rpm
-rw-rw-r-- 1 root root   276832 Jul  3  2014 culmus-frank-ruehl-clm-fonts-0.130-3.el7.noarch.rpm
-rw-rw-r-- 1 root root    72672 Jul  3  2014 culmus-hadasim-clm-fonts-0.130-3.el7.noarch.rpm
-rw-rw-r-- 1 root root   102900 Jul  3  2014 culmus-keteryg-fonts-0.130-3.el7.noarch.rpm
-rw-rw-r-- 1 root root    89456 Jul  3  2014 culmus-miriam-clm-fonts-0.130-3.el7.noarch.rpm
-rw-rw-r-- 1 root root   282568 Jul  3  2014 culmus-miriam-mono-clm-fonts-0.130-3.el7.noarch.rpm
-rw-rw-r-- 1 root root   143524 Jul  3  2014 culmus-nachlieli-clm-fonts-0.130-3.el7.noarch.rpm
-rw-rw-r-- 1 root root    60392 Jul  3  2014 culmus-simple-clm-fonts-0.130-3.el7.noarch.rpm
-rw-rw-r-- 1 root root    17200 Jul  3  2014 culmus-stamashkenaz-clm-fonts-0.130-3.el7.noarch.rpm
-rw-rw-r-- 1 root root    17760 Jul  3  2014 culmus-stamsefarad-clm-fonts-0.130-3.el7.noarch.rpm
-rw-rw-r-- 1 root root    34396 Jul  3  2014 culmus-yehuda-clm-fonts-0.130-3.el7.noarch.rpm
-rw-rw-r-- 1 root root  1339384 Nov 20 12:28 cups-1.6.3-26.el7.x86_64.rpm
-rw-rw-r-- 1 root root   152944 Nov 20 12:28 cups-client-1.6.3-26.el7.x86_64.rpm
-rw-rw-r-- 1 root root   133332 Nov 20 12:28 cups-devel-1.6.3-26.el7.x86_64.rpm
-rw-rw-r-- 1 root root    96756 Nov 20 12:28 cups-filesystem-1.6.3-26.el7.noarch.rpm
-rw-rw-r-- 1 root root   302260 Nov 25  2015 cups-filters-1.0.35-21.el7.x86_64.rpm
-rw-rw-r-- 1 root root    93908 Nov 25  2015 cups-filters-libs-1.0.35-21.el7.x86_64.rpm
-rw-rw-r-- 1 root root   364052 Nov 20 12:29 cups-libs-1.6.3-26.el7.x86_64.rpm
-rw-rw-r-- 1 root root   107844 Nov 20 12:29 cups-lpd-1.6.3-26.el7.x86_64.rpm
-rw-rw-r-- 1 root root    70884 Jul  3  2014 cups-pk-helper-0.2.4-5.el7.x86_64.rpm
-rw-rw-r-- 1 root root   271788 Nov 20 12:29 curl-7.29.0-35.el7.centos.x86_64.rpm
-rw-rw-r-- 1 root root    21292 Nov 20 12:29 custodia-0.1.0-4.el7.noarch.rpm
-rw-rw-r-- 1 root root   594940 Jul  3  2014 cvs-1.11.23-35.el7.x86_64.rpm
-rw-rw-r-- 1 root root  3311368 Mar 26  2015 cyrus-imapd-2.4.17-8.el7_1.x86_64.rpm
-rw-rw-r-- 1 root root   252072 Mar 26  2015 cyrus-imapd-utils-2.4.17-8.el7_1.x86_64.rpm
-rw-rw-r-- 1 root root    89844 Feb 16  2016 cyrus-sasl-2.1.26-20.el7_2.x86_64.rpm
-rw-rw-r-- 1 root root   317000 Feb 16  2016 cyrus-sasl-devel-2.1.26-20.el7_2.x86_64.rpm
-rw-rw-r-- 1 root root    41452 Feb 16  2016 cyrus-sasl-gssapi-2.1.26-20.el7_2.x86_64.rpm
-rw-rw-r-- 1 root root   158372 Feb 16  2016 cyrus-sasl-lib-2.1.26-20.el7_2.x86_64.rpm
-rw-rw-r-- 1 root root    57464 Feb 16  2016 cyrus-sasl-md5-2.1.26-20.el7_2.x86_64.rpm
-rw-rw-r-- 1 root root    39256 Feb 16  2016 cyrus-sasl-plain-2.1.26-20.el7_2.x86_64.rpm
-rw-rw-r-- 1 root root    43300 Feb 16  2016 cyrus-sasl-scram-2.1.26-20.el7_2.x86_64.rpm
-rw-rw-r-- 1 root root   227352 Nov 20 12:29 dapl-2.1.5-2.el7.x86_64.rpm
-rw-rw-r-- 1 root root   314388 Nov 20 12:30 dbus-1.6.12-17.el7.x86_64.rpm
-rw-rw-r-- 1 root root    53832 Nov 20 12:30 dbus-devel-1.6.12-17.el7.x86_64.rpm
-rw-rw-r-- 1 root root   104756 Jul  3  2014 dbus-glib-0.100-7.el7.x86_64.rpm
-rw-rw-r-- 1 root root    54100 Jul  3  2014 dbus-glib-devel-0.100-7.el7.x86_64.rpm
-rw-rw-r-- 1 root root   154672 Nov 20 12:30 dbus-libs-1.6.12-17.el7.x86_64.rpm
-rw-rw-r-- 1 root root    87764 Jul  3  2014 dbusmenu-qt-0.9.2-7.el7.x86_64.rpm
-rw-rw-r-- 1 root root   211312 Jul  3  2014 dbus-python-1.1.1-9.el7.x86_64.rpm
-rw-rw-r-- 1 root root    47504 Nov 20 12:30 dbus-x11-1.6.12-17.el7.x86_64.rpm
-rw-rw-r-- 1 root root   160712 Nov 25  2015 dconf-0.22.0-2.el7.x86_64.rpm
-rw-rw-r-- 1 root root   131084 Nov 25  2015 dconf-editor-0.22.0-2.el7.x86_64.rpm
-rw-rw-r-- 1 root root   232496 Jul  3  2014 dcraw-9.19-6.el7.x86_64.rpm
-rw-rw-r-- 1 root root   272844 Jul  3  2014 dejagnu-1.5.1-3.el7.noarch.rpm
-rw-rw-r-- 1 root root    65788 Jul  3  2014 dejavu-fonts-common-2.33-6.el7.noarch.rpm
-rw-rw-r-- 1 root root  1482820 Jul  3  2014 dejavu-sans-fonts-2.33-6.el7.noarch.rpm
-rw-rw-r-- 1 root root   442976 Jul  3  2014 dejavu-sans-mono-fonts-2.33-6.el7.noarch.rpm
-rw-rw-r-- 1 root root   795116 Jul  3  2014 dejavu-serif-fonts-2.33-6.el7.noarch.rpm
-rw-rw-r-- 1 root root    83984 Jul  3  2014 deltarpm-3.6-3.el7.x86_64.rpm
-rw-rw-r-- 1 root root    68476 Nov 25  2015 desktop-file-utils-0.22-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root   274960 Nov 20 12:31 device-mapper-1.02.135-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root   181204 Nov 20 12:31 device-mapper-event-1.02.135-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root   180752 Nov 20 12:31 device-mapper-event-libs-1.02.135-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root   340560 Nov 20 12:31 device-mapper-libs-1.02.135-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root   131936 Nov 20 12:31 device-mapper-multipath-0.4.9-99.el7.x86_64.rpm
-rw-rw-r-- 1 root root   244840 Nov 20 12:31 device-mapper-multipath-libs-0.4.9-99.el7.x86_64.rpm
-rw-rw-r-- 1 root root   376756 Nov 20 12:32 device-mapper-persistent-data-0.6.3-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root   286784 Nov 20 12:32 dhclient-4.2.5-47.el7.centos.x86_64.rpm
-rw-rw-r-- 1 root root   523448 Nov 20 12:32 dhcp-4.2.5-47.el7.centos.x86_64.rpm
-rw-rw-r-- 1 root root   176500 Nov 20 12:32 dhcp-common-4.2.5-47.el7.centos.x86_64.rpm
-rw-rw-r-- 1 root root   131940 Nov 20 12:32 dhcp-libs-4.2.5-47.el7.centos.x86_64.rpm
-rw-rw-r-- 1 root root   213212 Jul  3  2014 dialog-1.2-4.20130523.el7.x86_64.rpm
-rw-rw-r-- 1 root root    35476 Jul  3  2014 diffstat-1.57-4.el7.x86_64.rpm
-rw-rw-r-- 1 root root   329656 Jul  3  2014 diffutils-3.3-4.el7.x86_64.rpm
-rw-rw-r-- 1 root root    20044 Nov 25  2015 dleyna-connector-dbus-0.2.0-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root    25964 Nov 25  2015 dleyna-core-0.4.0-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root    67252 Nov 25  2015 dleyna-server-0.4.0-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root    90888 Nov 20 12:32 dlm-4.0.6-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root    24276 Nov 20 12:32 dlm-lib-4.0.6-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root    84672 Nov 20 12:32 dmidecode-3.0-2.el7.x86_64.rpm
-rw-rw-r-- 1 root root   154480 Nov 20 12:33 dmraid-1.0.0.rc16-28.el7.x86_64.rpm
-rw-rw-r-- 1 root root    21692 Nov 20 12:33 dmraid-events-1.0.0.rc16-28.el7.x86_64.rpm
-rw-rw-r-- 1 root root   234928 Nov 20 12:33 dnsmasq-2.66-21.el7.x86_64.rpm
-rw-rw-r-- 1 root root   120556 Nov 20 12:33 dnssec-trigger-0.11-22.el7.x86_64.rpm
-rw-rw-r-- 1 root root   502936 Jul  3  2014 docbook5-schemas-5.0-10.el7.noarch.rpm
-rw-rw-r-- 1 root root  3190804 Mar 14  2015 docbook5-style-xsl-1.78.1-4.el7.noarch.rpm
-rw-rw-r-- 1 root root   231668 Jul  3  2014 docbook-dtds-1.0-60.el7.noarch.rpm
-rw-rw-r-- 1 root root    27012 Jul  3  2014 docbook-simple-1.1-12.el7.noarch.rpm
-rw-rw-r-- 1 root root   228396 Jul  3  2014 docbook-slides-3.4.0-13.el7.noarch.rpm
-rw-rw-r-- 1 root root   257036 Jul 27  2015 docbook-style-dsssl-1.79-18.el7.noarch.rpm
-rw-rw-r-- 1 root root  2110080 Jul  3  2014 docbook-style-xsl-1.78.1-3.el7.noarch.rpm
-rw-rw-r-- 1 root root    72792 Jul  3  2014 docbook-utils-0.6.14-36.el7.noarch.rpm
-rw-rw-r-- 1 root root    16100 Jul  3  2014 docbook-utils-pdf-0.6.14-36.el7.noarch.rpm
-rw-rw-r-- 1 root root   283452 Jul  3  2014 dom4j-1.6.1-20.el7.noarch.rpm
-rw-rw-r-- 1 root root    59864 Jul  3  2014 dos2unix-6.0.3-4.el7.x86_64.rpm
-rw-rw-r-- 1 root root   103496 Jul  3  2014 dosfstools-3.0.20-9.el7.x86_64.rpm
-rw-rw-r-- 1 root root    27404 Jul  3  2014 dotconf-1.3-8.el7.x86_64.rpm
-rw-rw-r-- 1 root root  3344132 Nov 20 12:33 dovecot-2.2.10-7.el7.x86_64.rpm
-rw-rw-r-- 1 root root    66964 Nov 20 12:33 dovecot-mysql-2.2.10-7.el7.x86_64.rpm
-rw-rw-r-- 1 root root    69384 Nov 20 12:33 dovecot-pgsql-2.2.10-7.el7.x86_64.rpm
-rw-rw-r-- 1 root root   311428 Nov 20 12:34 dovecot-pigeonhole-2.2.10-7.el7.x86_64.rpm
-rw-rw-r-- 1 root root  3726260 Jul  3  2014 doxygen-1.8.5-3.el7.x86_64.rpm
-rw-rw-r-- 1 root root   324916 Nov 20 12:34 dracut-033-463.el7.x86_64.rpm
-rw-rw-r-- 1 root root    53608 Nov 20 12:34 dracut-config-generic-033-463.el7.x86_64.rpm
-rw-rw-r-- 1 root root    55176 Nov 20 12:34 dracut-config-rescue-033-463.el7.x86_64.rpm
-rw-rw-r-- 1 root root    56772 Nov 20 12:34 dracut-fips-033-463.el7.x86_64.rpm
-rw-rw-r-- 1 root root    61072 Nov 20 12:34 dracut-fips-aesni-033-463.el7.x86_64.rpm
-rw-rw-r-- 1 root root    98100 Nov 20 12:34 dracut-network-033-463.el7.x86_64.rpm
-rw-rw-r-- 1 root root   460320 Jul  3  2014 dragon-4.10.5-3.el7.x86_64.rpm
-rw-rw-r-- 1 root root    21928 Jul  3  2014 dropwatch-1.4-8.el7.x86_64.rpm
-rw-rw-r-- 1 root root   166472 Jul  3  2014 dstat-0.7.2-12.el7.noarch.rpm
-rw-rw-r-- 1 root root   151196 Jul  3  2014 dump-0.4-0.22.b44.el7.x86_64.rpm
-rw-rw-r-- 1 root root    22072 Jul  3  2014 dumpet-2.1-8.el7.x86_64.rpm
-rw-rw-r-- 1 root root   135516 Jul  3  2014 dvd+rw-tools-7.1-15.el7.x86_64.rpm
-rw-rw-r-- 1 root root   138732 Jul  3  2014 dvgrab-3.5-9.el7.x86_64.rpm
-rw-rw-r-- 1 root root   101080 Jul  3  2014 dwz-0.11-3.el7.x86_64.rpm
-rw-rw-r-- 1 root root  2614524 Mar 14  2015 dyninst-8.2.0-2.el7.x86_64.rpm
-rw-rw-r-- 1 root root   715060 Nov 20 12:34 e2fsprogs-1.42.9-9.el7.x86_64.rpm
-rw-rw-r-- 1 root root    72588 Nov 20 12:34 e2fsprogs-devel-1.42.9-9.el7.x86_64.rpm
-rw-rw-r-- 1 root root   169992 Nov 20 12:35 e2fsprogs-libs-1.42.9-9.el7.x86_64.rpm
-rw-rw-r-- 1 root root    93904 Jul  3  2014 easymock2-2.5.2-12.el7.noarch.rpm
-rw-rw-r-- 1 root root   125808 Nov 20 12:35 ebtables-2.0.10-15.el7.x86_64.rpm
-rw-rw-r-- 1 root root  1459796 Jul  3  2014 ecj-4.2.1-8.el7.x86_64.rpm
-rw-rw-r-- 1 root root    73448 Jul  3  2014 ed-1.9-4.el7.x86_64.rpm
-rw-rw-r-- 1 root root    47076 Nov 20 12:35 edac-utils-0.16-15.el7.x86_64.rpm
-rw-rw-r-- 1 root root   103192 Jul  3  2014 efax-0.9a-15.el7.x86_64.rpm
-rw-rw-r-- 1 root root    43172 Nov 20 12:35 efibootmgr-0.8.0-10.el7.x86_64.rpm
-rw-rw-r-- 1 root root    15196 Mar 14  2015 efivar-libs-0.11-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root  8392532 Nov 25  2015 ekiga-4.0.1-5.el7.x86_64.rpm
-rw-rw-r-- 1 root root    36116 Jul  3  2014 ElectricFence-2.2.2-39.el7.x86_64.rpm
-rw-rw-r-- 1 root root   286420 Nov 20 12:35 elfutils-0.166-2.el7.x86_64.rpm
-rw-rw-r-- 1 root root    87376 Nov 20 12:35 elfutils-devel-0.166-2.el7.x86_64.rpm
-rw-rw-r-- 1 root root   212480 Nov 20 12:36 elfutils-libelf-0.166-2.el7.x86_64.rpm
-rw-rw-r-- 1 root root    37648 Nov 20 12:36 elfutils-libelf-devel-0.166-2.el7.x86_64.rpm
-rw-rw-r-- 1 root root   268404 Nov 20 12:36 elfutils-libs-0.166-2.el7.x86_64.rpm
-rw-rw-r-- 1 root root   903616 Jul  3  2014 elinks-0.12-0.36.pre6.el7.x86_64.rpm
-rw-rw-r-- 1 root root  3005532 Nov 25  2015 emacs-24.3-18.el7.x86_64.rpm
-rw-rw-r-- 1 root root   762096 Jul  3  2014 emacs-auctex-11.87-4.el7.noarch.rpm
-rw-rw-r-- 1 root root 21446496 Nov 25  2015 emacs-common-24.3-18.el7.x86_64.rpm
-rw-rw-r-- 1 root root    59004 Nov 25  2015 emacs-filesystem-24.3-18.el7.noarch.rpm
-rw-rw-r-- 1 root root   117848 Jul  3  2014 emacs-gnuplot-4.6.2-3.el7.noarch.rpm
-rw-rw-r-- 1 root root  2550960 Nov 25  2015 emacs-nox-24.3-18.el7.x86_64.rpm
-rw-rw-r-- 1 root root  3011844 Nov 25  2015 empathy-3.12.10-2.el7.x86_64.rpm
-rw-rw-r-- 1 root root    56540 Jul  3  2014 enchant-1.6.0-8.el7.x86_64.rpm
-rw-rw-r-- 1 root root   421484 Jul  3  2014 enscript-1.6.6-6.el7.x86_64.rpm
-rw-rw-r-- 1 root root   109624 Nov 25  2015 environment-modules-3.2.10-10.el7.x86_64.rpm
-rw-rw-r-- 1 root root  3877344 Nov 25  2015 eog-3.14.3-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root   395708 Nov 20 12:36 esc-1.1.0-37.el7.x86_64.rpm
-rw-rw-r-- 1 root root  1147800 Jul  3  2014 espeak-1.47.11-4.el7.x86_64.rpm
-rw-rw-r-- 1 root root   124396 Nov 20 12:36 ethtool-4.5-3.el7.x86_64.rpm
-rw-rw-r-- 1 root root  2397616 Nov 20 12:36 evince-3.14.2-17.el7.x86_64.rpm
-rw-rw-r-- 1 root root    95492 Nov 20 12:36 evince-dvi-3.14.2-17.el7.x86_64.rpm
-rw-rw-r-- 1 root root   350580 Nov 20 12:37 evince-libs-3.14.2-17.el7.x86_64.rpm
-rw-rw-r-- 1 root root    36528 Nov 20 12:37 evince-nautilus-3.14.2-17.el7.x86_64.rpm
-rw-rw-r-- 1 root root  8584308 Nov 20 12:37 evolution-3.12.11-22.el7.x86_64.rpm
-rw-rw-r-- 1 root root  3053796 Nov 20 12:37 evolution-data-server-3.12.11-37.el7.x86_64.rpm
-rw-rw-r-- 1 root root   319148 Nov 20 12:37 evolution-data-server-devel-3.12.11-37.el7.x86_64.rpm
-rw-rw-r-- 1 root root   479656 Nov 20 12:38 evolution-ews-3.12.11-9.el7.x86_64.rpm
-rw-rw-r-- 1 root root  2145596 Nov 20 12:38 evolution-help-3.12.11-22.el7.noarch.rpm
-rw-rw-r-- 1 root root   468728 Nov 20 12:38 evolution-mapi-3.12.10-5.el7.x86_64.rpm
-rw-rw-r-- 1 root root   424120 Jul  3  2014 exempi-2.2.0-8.el7.x86_64.rpm
-rw-rw-r-- 1 root root   896812 Jul  3  2014 exiv2-libs-0.23-6.el7.x86_64.rpm
-rw-rw-r-- 1 root root    82304 Jul  3  2014 expat-2.1.0-8.el7.x86_64.rpm
-rw-rw-r-- 1 root root    57732 Jul  3  2014 expat-devel-2.1.0-8.el7.x86_64.rpm
-rw-rw-r-- 1 root root   268656 Jun 23  2015 expect-5.45-14.el7_1.x86_64.rpm
-rw-rw-r-- 1 root root   235636 Jul  3  2014 farstream-0.1.2-8.el7.x86_64.rpm
-rw-rw-r-- 1 root root   232808 Jul  3  2014 farstream02-0.2.3-3.el7.x86_64.rpm
-rw-rw-r-- 1 root root   122128 Nov 20 12:38 fcoe-utils-1.0.31-1.git5dfd3e4.el7.x86_64.rpm
-rw-rw-r-- 1 root root    14808 Nov 20 12:39 fence-agents-all-4.0.11-47.el7.x86_64.rpm
-rw-rw-r-- 1 root root    19000 Nov 20 12:39 fence-agents-apc-4.0.11-47.el7.x86_64.rpm
-rw-rw-r-- 1 root root    19044 Nov 20 12:39 fence-agents-apc-snmp-4.0.11-47.el7.x86_64.rpm
-rw-rw-r-- 1 root root    18084 Nov 20 12:40 fence-agents-bladecenter-4.0.11-47.el7.x86_64.rpm
-rw-rw-r-- 1 root root    18200 Nov 20 12:40 fence-agents-brocade-4.0.11-47.el7.x86_64.rpm
-rw-rw-r-- 1 root root    18144 Nov 20 12:40 fence-agents-cisco-mds-4.0.11-47.el7.x86_64.rpm
-rw-rw-r-- 1 root root    18772 Nov 20 12:40 fence-agents-cisco-ucs-4.0.11-47.el7.x86_64.rpm
-rw-rw-r-- 1 root root    60772 Nov 20 12:40 fence-agents-common-4.0.11-47.el7.x86_64.rpm
-rw-rw-r-- 1 root root    20920 Nov 20 12:40 fence-agents-compute-4.0.11-47.el7.x86_64.rpm
-rw-rw-r-- 1 root root    18700 Nov 20 12:40 fence-agents-drac5-4.0.11-47.el7.x86_64.rpm
-rw-rw-r-- 1 root root    19356 Nov 20 12:40 fence-agents-eaton-snmp-4.0.11-47.el7.x86_64.rpm
-rw-rw-r-- 1 root root    17708 Nov 20 12:40 fence-agents-emerson-4.0.11-47.el7.x86_64.rpm
-rw-rw-r-- 1 root root    18384 Nov 20 12:40 fence-agents-eps-4.0.11-47.el7.x86_64.rpm
-rw-rw-r-- 1 root root    18208 Nov 20 12:40 fence-agents-hpblade-4.0.11-47.el7.x86_64.rpm
-rw-rw-r-- 1 root root    17844 Nov 20 12:40 fence-agents-ibmblade-4.0.11-47.el7.x86_64.rpm
-rw-rw-r-- 1 root root    18464 Nov 20 12:40 fence-agents-ifmib-4.0.11-47.el7.x86_64.rpm
-rw-rw-r-- 1 root root    20180 Nov 20 12:40 fence-agents-ilo2-4.0.11-47.el7.x86_64.rpm
-rw-rw-r-- 1 root root    17476 Nov 20 12:40 fence-agents-ilo-moonshot-4.0.11-47.el7.x86_64.rpm
-rw-rw-r-- 1 root root    17312 Nov 20 12:40 fence-agents-ilo-mp-4.0.11-47.el7.x86_64.rpm
-rw-rw-r-- 1 root root    20920 Nov 20 12:41 fence-agents-ilo-ssh-4.0.11-47.el7.x86_64.rpm
-rw-rw-r-- 1 root root    18264 Nov 20 12:41 fence-agents-intelmodular-4.0.11-47.el7.x86_64.rpm
-rw-rw-r-- 1 root root    18480 Nov 20 12:41 fence-agents-ipdu-4.0.11-47.el7.x86_64.rpm
-rw-rw-r-- 1 root root    26732 Nov 20 12:41 fence-agents-ipmilan-4.0.11-47.el7.x86_64.rpm
-rw-rw-r-- 1 root root    28764 Nov 20 12:41 fence-agents-kdump-4.0.11-47.el7.x86_64.rpm
-rw-rw-r-- 1 root root    19544 Nov 20 12:41 fence-agents-mpath-4.0.11-47.el7.x86_64.rpm
-rw-rw-r-- 1 root root    18524 Nov 20 12:41 fence-agents-rhevm-4.0.11-47.el7.x86_64.rpm
-rw-rw-r-- 1 root root    17732 Nov 20 12:41 fence-agents-rsa-4.0.11-47.el7.x86_64.rpm
-rw-rw-r-- 1 root root    17752 Nov 20 12:41 fence-agents-rsb-4.0.11-47.el7.x86_64.rpm
-rw-rw-r-- 1 root root    21776 Nov 20 12:41 fence-agents-scsi-4.0.11-47.el7.x86_64.rpm
-rw-rw-r-- 1 root root    19796 Nov 20 12:41 fence-agents-vmware-soap-4.0.11-47.el7.x86_64.rpm
-rw-rw-r-- 1 root root    19292 Nov 20 12:41 fence-agents-wti-4.0.11-47.el7.x86_64.rpm
-rw-rw-r-- 1 root root    42420 Nov 20 12:41 fence-virt-0.3.2-5.el7.x86_64.rpm
-rw-rw-r-- 1 root root    34028 Nov 20 12:42 fence-virtd-0.3.2-5.el7.x86_64.rpm
-rw-rw-r-- 1 root root    15992 Nov 20 12:42 fence-virtd-libvirt-0.3.2-5.el7.x86_64.rpm
-rw-rw-r-- 1 root root    22032 Nov 20 12:42 fence-virtd-multicast-0.3.2-5.el7.x86_64.rpm
-rw-rw-r-- 1 root root    20060 Nov 20 12:42 fence-virtd-serial-0.3.2-5.el7.x86_64.rpm
-rw-rw-r-- 1 root root  1408668 Jul  3  2014 festival-1.96-28.el7.x86_64.rpm
-rw-rw-r-- 1 root root    36420 Jul  3  2014 festival-freebsoft-utils-0.10-7.el7.noarch.rpm
-rw-rw-r-- 1 root root   469156 Jul  3  2014 festival-lib-1.96-28.el7.x86_64.rpm
-rw-rw-r-- 1 root root  1071004 Jul  3  2014 festival-speechtools-libs-1.2.96-28.el7.x86_64.rpm
-rw-rw-r-- 1 root root  1046804 Jul  3  2014 festvox-slt-arctic-hts-0.20061229-28.el7.noarch.rpm
-rw-rw-r-- 1 root root   557100 Jul  3  2014 fetchmail-6.3.24-5.el7.x86_64.rpm
-rw-rw-r-- 1 root root    46368 Jul  3  2014 fftw-3.3.3-8.el7.x86_64.rpm
-rw-rw-r-- 1 root root   131060 Jul  3  2014 fftw-devel-3.3.3-8.el7.x86_64.rpm
-rw-rw-r-- 1 root root     8672 Jul  3  2014 fftw-libs-3.3.3-8.el7.x86_64.rpm
-rw-rw-r-- 1 root root   776856 Jul  3  2014 fftw-libs-double-3.3.3-8.el7.x86_64.rpm
-rw-rw-r-- 1 root root   506700 Jul  3  2014 fftw-libs-long-3.3.3-8.el7.x86_64.rpm
-rw-rw-r-- 1 root root   783996 Jul  3  2014 fftw-libs-single-3.3.3-8.el7.x86_64.rpm
-rw-rw-r-- 1 root root  1694300 Jul  3  2014 fftw-static-3.3.3-8.el7.x86_64.rpm
-rw-rw-r-- 1 root root    57888 Nov 20 12:42 file-5.11-33.el7.x86_64.rpm
-rw-rw-r-- 1 root root   118744 Jul  3  2014 filebench-1.4.9.1-3.el7.x86_64.rpm
-rw-rw-r-- 1 root root   348216 Nov 20 12:42 file-libs-5.11-33.el7.x86_64.rpm
-rw-rw-r-- 1 root root   962676 Nov 20 12:42 file-roller-3.14.2-10.el7.x86_64.rpm
-rw-rw-r-- 1 root root    29276 Nov 20 12:42 file-roller-nautilus-3.14.2-10.el7.x86_64.rpm
-rw-rw-r-- 1 root root  1066392 Nov 20 12:43 filesystem-3.2-21.el7.x86_64.rpm
-rw-rw-r-- 1 root root   572040 Nov 25  2015 findutils-4.5.11-5.el7.x86_64.rpm
-rw-rw-r-- 1 root root    26100 Aug 29  2014 finger-0.17-52.el7.x86_64.rpm
-rw-rw-r-- 1 root root    20408 Aug 29  2014 finger-server-0.17-52.el7.x86_64.rpm
-rw-rw-r-- 1 root root    21732 Jul  3  2014 fipscheck-1.4.1-5.el7.x86_64.rpm
-rw-rw-r-- 1 root root    10780 Jul  3  2014 fipscheck-lib-1.4.1-5.el7.x86_64.rpm
-rw-rw-r-- 1 root root 80090076 Sep 21 11:49 firefox-45.4.0-1.el7.centos.x86_64.rpm
-rw-rw-r-- 1 root root   128212 Nov 20 12:43 firewall-config-0.4.3.2-8.el7.noarch.rpm
-rw-rw-r-- 1 root root   394564 Nov 20 12:43 firewalld-0.4.3.2-8.el7.noarch.rpm
-rw-rw-r-- 1 root root    45268 Nov 20 12:43 firewalld-filesystem-0.4.3.2-8.el7.noarch.rpm
-rw-rw-r-- 1 root root   114072 Nov 20 12:43 firstboot-19.12-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root   173224 Apr  1  2015 flac-libs-1.3.0-5.el7_1.x86_64.rpm
-rw-rw-r-- 1 root root   299468 Jul  3  2014 flex-2.5.37-3.el7.x86_64.rpm
-rw-rw-r-- 1 root root  6435708 Jul  3  2014 flite-1.3-22.el7.x86_64.rpm
-rw-rw-r-- 1 root root   669232 Jul  3  2014 fltk-1.3.0-13.el7.x86_64.rpm
-rw-rw-r-- 1 root root    62080 Jul  3  2014 flute-1.3.0-11.OOo31.el7.noarch.rpm
-rw-rw-r-- 1 root root   584732 Nov 20 12:43 folks-0.10.1-2.el7.x86_64.rpm
-rw-rw-r-- 1 root root   140112 Mar 14  2015 fontawesome-fonts-4.1.0-1.el7.noarch.rpm
-rw-rw-r-- 1 root root   234644 Nov 20 12:44 fontconfig-2.10.95-10.el7.x86_64.rpm
-rw-rw-r-- 1 root root   131300 Nov 20 12:44 fontconfig-devel-2.10.95-10.el7.x86_64.rpm
-rw-rw-r-- 1 root root    10116 Jul  3  2014 fontpackages-filesystem-1.44-8.el7.noarch.rpm
-rw-rw-r-- 1 root root    61204 Jul  3  2014 fonts-tweak-tool-0.3.2-5.el7.x86_64.rpm
-rw-rw-r-- 1 root root   259464 Sep 16  2014 foomatic-4.0.9-8.el7.x86_64.rpm
-rw-rw-r-- 1 root root  1098872 Jul  3  2014 foomatic-db-4.0-40.20130911.el7.noarch.rpm
-rw-rw-r-- 1 root root     9300 Jul  3  2014 foomatic-db-filesystem-4.0-40.20130911.el7.noarch.rpm
-rw-rw-r-- 1 root root 30092920 Jul  3  2014 foomatic-db-ppds-4.0-40.20130911.el7.noarch.rpm
-rw-rw-r-- 1 root root   100372 Sep 16  2014 foomatic-filters-4.0.9-8.el7.x86_64.rpm
-rw-rw-r-- 1 root root    76848 Jul  5  2014 fprintd-0.5.0-4.0.el7_0.x86_64.rpm
-rw-rw-r-- 1 root root    15408 Jul  5  2014 fprintd-pam-0.5.0-4.0.el7_0.x86_64.rpm
-rw-rw-r-- 1 root root   186864 Jul  3  2014 freeglut-2.8.1-3.el7.x86_64.rpm
-rw-rw-r-- 1 root root   116388 Jul  3  2014 freeglut-devel-2.8.1-3.el7.x86_64.rpm
-rw-rw-r-- 1 root root  2025136 Nov 20 12:44 freeipmi-1.2.9-8.el7.x86_64.rpm
-rw-rw-r-- 1 root root    83308 Nov 20 12:44 freeipmi-bmc-watchdog-1.2.9-8.el7.x86_64.rpm
-rw-rw-r-- 1 root root    53848 Nov 20 12:44 freeipmi-ipmidetectd-1.2.9-8.el7.x86_64.rpm
-rw-rw-r-- 1 root root  1009048 Mar 14  2015 freeradius-3.0.4-6.el7.x86_64.rpm
-rw-rw-r-- 1 root root    58268 Nov 20 12:45 freerdp-1.0.2-10.el7.x86_64.rpm
-rw-rw-r-- 1 root root   226880 Nov 20 12:45 freerdp-libs-1.0.2-10.el7.x86_64.rpm
-rw-rw-r-- 1 root root    94660 Nov 20 12:45 freerdp-plugins-1.0.2-10.el7.x86_64.rpm
-rw-rw-r-- 1 root root   400448 Nov 20 12:45 freetype-2.4.11-12.el7.x86_64.rpm
-rw-rw-r-- 1 root root   364660 Nov 20 12:45 freetype-devel-2.4.11-12.el7.x86_64.rpm
-rw-rw-r-- 1 root root   468920 Jul  3  2014 frei0r-plugins-1.3-13.el7.x86_64.rpm
-rw-rw-r-- 1 root root    22088 Jul  3  2014 fros-1.0-2.el7.noarch.rpm
-rw-rw-r-- 1 root root    62092 Nov 20 12:45 ftp-0.17-67.el7.x86_64.rpm
-rw-rw-r-- 1 root root    87252 Nov 20 12:45 fuse-2.9.2-7.el7.x86_64.rpm
-rw-rw-r-- 1 root root    37392 Nov 20 12:45 fuse-devel-2.9.2-7.el7.x86_64.rpm
-rw-rw-r-- 1 root root    30948 Jul  3  2014 fuseiso-20070708-15.el7.x86_64.rpm
-rw-rw-r-- 1 root root    95100 Nov 20 12:46 fuse-libs-2.9.2-7.el7.x86_64.rpm
-rw-rw-r-- 1 root root    25856 Jul  3  2014 fxload-2002_04_11-16.el7.x86_64.rpm
-rw-rw-r-- 1 root root   131464 Jul  3  2014 gamin-0.1.10-16.el7.x86_64.rpm
-rw-rw-r-- 1 root root  2700728 Jul  3  2014 gavl-1.4.0-4.el7.x86_64.rpm
-rw-rw-r-- 1 root root   894360 Jul  3  2014 gawk-4.0.2-4.el7.x86_64.rpm
-rw-rw-r-- 1 root root   161948 Nov 25  2015 gc-7.2d-7.el7.x86_64.rpm
-rw-rw-r-- 1 root root 16957504 Nov 20 12:46 gcc-4.8.5-11.el7.x86_64.rpm
-rw-rw-r-- 1 root root  7519876 Nov 20 12:46 gcc-c++-4.8.5-11.el7.x86_64.rpm
-rw-rw-r-- 1 root root  6971484 Nov 20 12:46 gcc-gfortran-4.8.5-11.el7.x86_64.rpm
-rw-rw-r-- 1 root root 13546872 Nov 20 12:46 gcc-gnat-4.8.5-11.el7.x86_64.rpm
-rw-rw-r-- 1 root root  6014668 Nov 20 12:46 gcc-objc-4.8.5-11.el7.x86_64.rpm
-rw-rw-r-- 1 root root  6439480 Nov 20 12:46 gcc-objc++-4.8.5-11.el7.x86_64.rpm
-rw-rw-r-- 1 root root  1047864 Jul  3  2014 GConf2-3.2.6-8.el7.x86_64.rpm
-rw-rw-r-- 1 root root  1235740 May 12  2015 gconf-editor-3.0.1-8.el7_1.x86_64.rpm
-rw-rw-r-- 1 root root   666676 Nov 25  2015 gcr-3.14.0-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root   297716 Nov 25  2015 gcr-devel-3.14.0-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root   149492 Jul  3  2014 gd-2.0.35-26.el7.x86_64.rpm
-rw-rw-r-- 1 root root  2537592 Nov 20 12:47 gdb-7.6.1-94.el7.x86_64.rpm
-rw-rw-r-- 1 root root   305660 Nov 20 12:47 gdb-gdbserver-7.6.1-94.el7.x86_64.rpm
-rw-rw-r-- 1 root root    72112 Jul  3  2014 gdbm-1.10-8.el7.x86_64.rpm
-rw-rw-r-- 1 root root    48240 Jul  3  2014 gdbm-devel-1.10-8.el7.x86_64.rpm
-rw-rw-r-- 1 root root   191380 Mar 14  2015 gdisk-0.8.6-5.el7.x86_64.rpm
-rw-rw-r-- 1 root root   572764 Nov 25  2015 gdk-pixbuf2-2.31.6-3.el7.x86_64.rpm
-rw-rw-r-- 1 root root   221044 Nov 25  2015 gdk-pixbuf2-devel-2.31.6-3.el7.x86_64.rpm
-rw-rw-r-- 1 root root   736144 Nov 20 12:47 gdm-3.14.2-19.el7.x86_64.rpm
-rw-rw-r-- 1 root root  2655720 Nov 20 12:47 gedit-3.14.3-18.el7.x86_64.rpm
-rw-rw-r-- 1 root root    26416 Nov 20 12:47 gedit-plugin-bookmarks-3.14.1-5.el7.x86_64.rpm
-rw-rw-r-- 1 root root    18076 Nov 20 12:47 gedit-plugin-bracketcompletion-3.14.1-5.el7.x86_64.rpm
-rw-rw-r-- 1 root root    18040 Nov 20 12:47 gedit-plugin-charmap-3.14.1-5.el7.x86_64.rpm
-rw-rw-r-- 1 root root    18644 Nov 20 12:48 gedit-plugin-codecomment-3.14.1-5.el7.x86_64.rpm
-rw-rw-r-- 1 root root    19620 Nov 20 12:48 gedit-plugin-colorpicker-3.14.1-5.el7.x86_64.rpm
-rw-rw-r-- 1 root root    30328 Nov 20 12:48 gedit-plugin-colorschemer-3.14.1-5.el7.x86_64.rpm
-rw-rw-r-- 1 root root    97356 Nov 20 12:48 gedit-plugin-commander-3.14.1-5.el7.x86_64.rpm
-rw-rw-r-- 1 root root    21548 Nov 20 12:48 gedit-plugin-drawspaces-3.14.1-5.el7.x86_64.rpm
-rw-rw-r-- 1 root root    17928 Nov 20 12:48 gedit-plugin-joinlines-3.14.1-5.el7.x86_64.rpm
-rw-rw-r-- 1 root root    38208 Nov 20 12:48 gedit-plugin-multiedit-3.14.1-5.el7.x86_64.rpm
-rw-rw-r-- 1 root root     9008 Nov 20 12:48 gedit-plugins-3.14.1-5.el7.x86_64.rpm
-rw-rw-r-- 1 root root   510448 Nov 20 12:48 gedit-plugins-data-3.14.1-5.el7.x86_64.rpm
-rw-rw-r-- 1 root root    15564 Nov 20 12:48 gedit-plugin-smartspaces-3.14.1-5.el7.x86_64.rpm
-rw-rw-r-- 1 root root    24296 Nov 20 12:48 gedit-plugin-synctex-3.14.1-5.el7.x86_64.rpm
-rw-rw-r-- 1 root root    21656 Nov 20 12:48 gedit-plugin-terminal-3.14.1-5.el7.x86_64.rpm
-rw-rw-r-- 1 root root    19388 Nov 20 12:48 gedit-plugin-textsize-3.14.1-5.el7.x86_64.rpm
-rw-rw-r-- 1 root root    21108 Nov 20 12:48 gedit-plugin-wordcompletion-3.14.1-5.el7.x86_64.rpm
-rw-rw-r-- 1 root root   754124 Jul  3  2014 gegl-0.2.0-18.el7.x86_64.rpm
-rw-rw-r-- 1 root root   305332 Nov 25  2015 genisoimage-1.1.11-23.el7.x86_64.rpm
-rw-rw-r-- 1 root root   102392 Jul  3  2014 geoclue-0.12.99-7.el7.x86_64.rpm
-rw-rw-r-- 1 root root    91960 Nov 20 12:49 geoclue2-2.1.10-5.el7.x86_64.rpm
-rw-rw-r-- 1 root root    49692 Nov 25  2015 geocode-glib-3.14.0-2.el7.x86_64.rpm
-rw-rw-r-- 1 root root  1101952 Nov 20 12:49 GeoIP-1.5.0-11.el7.x86_64.rpm
-rw-rw-r-- 1 root root    24016 Jul  3  2014 geronimo-annotation-1.0-15.el7.noarch.rpm
-rw-rw-r-- 1 root root    32068 Jul  3  2014 geronimo-jms-1.1.1-19.el7.noarch.rpm
-rw-rw-r-- 1 root root    20908 Jul  3  2014 geronimo-jta-1.1.1-17.el7.noarch.rpm
-rw-rw-r-- 1 root root   982300 Jul  3  2014 gettext-0.18.2.1-4.el7.x86_64.rpm
-rw-rw-r-- 1 root root   376768 Jul  3  2014 gettext-common-devel-0.18.2.1-4.el7.noarch.rpm
-rw-rw-r-- 1 root root   322816 Jul  3  2014 gettext-devel-0.18.2.1-4.el7.x86_64.rpm
-rw-rw-r-- 1 root root   445016 Jul  3  2014 gettext-libs-0.18.2.1-4.el7.x86_64.rpm
-rw-rw-r-- 1 root root   308772 Nov 20 12:49 gfs2-utils-3.1.9-3.el7.x86_64.rpm
-rw-rw-r-- 1 root root  4519820 Nov 20 12:49 ghostscript-9.07-20.el7.x86_64.rpm
-rw-rw-r-- 1 root root    11872 Jul  3  2014 ghostscript-chinese-0.4.0-4.el7.noarch.rpm
-rw-rw-r-- 1 root root    56380 Nov 20 12:49 ghostscript-cups-9.07-20.el7.x86_64.rpm
-rw-rw-r-- 1 root root   332096 Jul  3  2014 ghostscript-fonts-5.50-32.el7.noarch.rpm
-rw-rw-r-- 1 root root    40964 Jul  3  2014 giflib-4.1.6-9.el7.x86_64.rpm
-rw-rw-r-- 1 root root 15436728 Nov 20 12:50 gimp-2.8.16-3.el7.x86_64.rpm
-rw-rw-r-- 1 root root  4127880 Jul  3  2014 gimp-data-extras-2.0.2-9.el7.noarch.rpm
-rw-rw-r-- 1 root root 28810232 Nov 20 12:50 gimp-help-2.8.2-1.el7.noarch.rpm
-rw-rw-r-- 1 root root 28580768 Nov 20 12:50 gimp-help-ca-2.8.2-1.el7.noarch.rpm
-rw-rw-r-- 1 root root 28580468 Nov 20 12:51 gimp-help-da-2.8.2-1.el7.noarch.rpm
-rw-rw-r-- 1 root root 32430684 Nov 20 12:51 gimp-help-de-2.8.2-1.el7.noarch.rpm
-rw-rw-r-- 1 root root 27098800 Nov 20 12:51 gimp-help-el-2.8.2-1.el7.noarch.rpm
-rw-rw-r-- 1 root root 28541332 Nov 20 12:51 gimp-help-en_GB-2.8.2-1.el7.noarch.rpm
-rw-rw-r-- 1 root root 29705048 Nov 20 12:51 gimp-help-es-2.8.2-1.el7.noarch.rpm
-rw-rw-r-- 1 root root 30889224 Nov 20 12:51 gimp-help-fr-2.8.2-1.el7.noarch.rpm
-rw-rw-r-- 1 root root 35326368 Nov 20 12:51 gimp-help-it-2.8.2-1.el7.noarch.rpm
-rw-rw-r-- 1 root root 27251984 Nov 20 12:52 gimp-help-ja-2.8.2-1.el7.noarch.rpm
-rw-rw-r-- 1 root root 29397764 Nov 20 12:52 gimp-help-ko-2.8.2-1.el7.noarch.rpm
-rw-rw-r-- 1 root root 28714176 Nov 20 12:52 gimp-help-nl-2.8.2-1.el7.noarch.rpm
-rw-rw-r-- 1 root root 24786700 Nov 20 12:52 gimp-help-nn-2.8.2-1.el7.noarch.rpm
-rw-rw-r-- 1 root root 31792656 Nov 20 12:52 gimp-help-pt_BR-2.8.2-1.el7.noarch.rpm
-rw-rw-r-- 1 root root 29503604 Nov 20 12:52 gimp-help-ru-2.8.2-1.el7.noarch.rpm
-rw-rw-r-- 1 root root 28588620 Nov 20 12:52 gimp-help-sl-2.8.2-1.el7.noarch.rpm
-rw-rw-r-- 1 root root 29090184 Nov 20 12:53 gimp-help-sv-2.8.2-1.el7.noarch.rpm
-rw-rw-r-- 1 root root 28589176 Nov 20 12:53 gimp-help-zh_CN-2.8.2-1.el7.noarch.rpm
-rw-rw-r-- 1 root root  1419320 Nov 20 12:53 gimp-libs-2.8.16-3.el7.x86_64.rpm
-rw-rw-r-- 1 root root  4598392 Mar 23  2016 git-1.8.3.1-6.el7_2.1.x86_64.rpm
-rw-rw-r-- 1 root root   178484 Nov 25  2015 gjs-1.42.0-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root   513104 Jul  3  2014 glade-libs-3.15.0-5.el7.x86_64.rpm
-rw-rw-r-- 1 root root    71248 Jul  3  2014 glassfish-dtd-parser-1.2-0.8.20120120svn.el7.noarch.rpm
-rw-rw-r-- 1 root root   278632 Jul  3  2014 glassfish-fastinfoset-1.2.12-9.el7.noarch.rpm
-rw-rw-r-- 1 root root  1883860 Jul  3  2014 glassfish-jaxb-2.2.5-6.el7.noarch.rpm
-rw-rw-r-- 1 root root    93948 Jul  3  2014 glassfish-jaxb-api-2.2.7-4.el7.noarch.rpm
-rw-rw-r-- 1 root root  2394776 Nov 20 12:53 glib2-2.46.2-4.el7.x86_64.rpm
-rw-rw-r-- 1 root root   470036 Nov 20 12:53 glib2-devel-2.46.2-4.el7.x86_64.rpm
-rw-rw-r-- 1 root root  3767280 Nov 20 12:54 glibc-2.17-157.el7.x86_64.rpm
-rw-rw-r-- 1 root root 12038164 Nov 20 12:54 glibc-common-2.17-157.el7.x86_64.rpm
-rw-rw-r-- 1 root root  1106292 Nov 20 12:54 glibc-devel-2.17-157.el7.x86_64.rpm
-rw-rw-r-- 1 root root   684244 Nov 20 12:54 glibc-headers-2.17-157.el7.x86_64.rpm
-rw-rw-r-- 1 root root   213324 Nov 20 16:31 glibc-utils-2.17-157.el7.x86_64.rpm
-rw-rw-r-- 1 root root   504468 Nov 25  2015 glibmm24-2.42.0-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root   126452 Nov 25  2015 glib-networking-2.42.0-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root  1017536 Jul  3  2014 gl-manpages-1.1-7.20130122.el7.noarch.rpm
-rw-rw-r-- 1 root root   472692 Nov 20 12:54 glusterfs-3.7.9-12.el7.centos.x86_64.rpm
-rw-rw-r-- 1 root root    65340 Nov 20 12:54 glusterfs-api-3.7.9-12.el7.centos.x86_64.rpm
-rw-rw-r-- 1 root root   856828 Nov 20 12:55 glusterfs-client-xlators-3.7.9-12.el7.centos.x86_64.rpm
-rw-rw-r-- 1 root root   111228 Nov 20 12:55 glusterfs-fuse-3.7.9-12.el7.centos.x86_64.rpm
-rw-rw-r-- 1 root root   338956 Nov 20 12:55 glusterfs-libs-3.7.9-12.el7.centos.x86_64.rpm
-rw-rw-r-- 1 root root    39176 Nov 20 12:55 glusterfs-rdma-3.7.9-12.el7.centos.x86_64.rpm
-rw-rw-r-- 1 root root    32688 Nov 20 12:55 glx-utils-8.2.0-3.el7.x86_64.rpm
-rw-rw-r-- 1 root root   287220 Nov  3  2015 gmp-6.0.0-12.el7_1.x86_64.rpm
-rw-rw-r-- 1 root root   184868 Nov  3  2015 gmp-devel-6.0.0-12.el7_1.x86_64.rpm
-rw-rw-r-- 1 root root   216660 Nov 20 12:55 gnome-abrt-0.3.4-8.el7.x86_64.rpm
-rw-rw-r-- 1 root root    50740 Nov 25  2015 gnome-bluetooth-3.14.1-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root   901664 Nov 25  2015 gnome-bluetooth-libs-3.14.1-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root   828972 Nov 20 12:55 gnome-boxes-3.14.3.1-10.el7.x86_64.rpm
-rw-rw-r-- 1 root root   933092 Nov 25  2015 gnome-calculator-3.14.1-2.el7.x86_64.rpm
-rw-rw-r-- 1 root root    28732 Nov 20 12:55 gnome-classic-session-3.14.4-21.el7.noarch.rpm
-rw-rw-r-- 1 root root   395136 Nov 20 12:55 gnome-clocks-3.14.1-2.el7.x86_64.rpm
-rw-rw-r-- 1 root root  1582236 Nov 25  2015 gnome-color-manager-3.14.2-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root   125796 Jul  3  2014 gnome-common-3.7.4-4.el7.noarch.rpm
-rw-rw-r-- 1 root root   356068 Nov 20 12:55 gnome-contacts-3.14.2-4.el7.x86_64.rpm
-rw-rw-r-- 1 root root   591072 Nov 25  2015 gnome-desktop3-3.14.2-2.el7.x86_64.rpm
-rw-rw-r-- 1 root root    64508 Nov 25  2015 gnome-desktop3-devel-3.14.2-2.el7.x86_64.rpm
-rw-rw-r-- 1 root root   632716 Nov 20 12:55 gnome-dictionary-3.14.2-2.el7.x86_64.rpm
-rw-rw-r-- 1 root root   978424 Nov 25  2015 gnome-disk-utility-3.14.0-2.el7.x86_64.rpm
-rw-rw-r-- 1 root root   629328 Nov 20 12:56 gnome-documents-3.14.3-3.el7.x86_64.rpm
-rw-rw-r-- 1 root root   111228 Nov 20 12:56 gnome-font-viewer-3.14.1-4.el7.x86_64.rpm
-rw-rw-r-- 1 root root 12290364 Nov 20 12:56 gnome-getting-started-docs-3.14.1.0.2-3.el7.noarch.rpm
-rw-rw-r-- 1 root root 11680728 Nov 20 12:56 gnome-getting-started-docs-cs-3.14.1.0.2-3.el7.noarch.rpm
-rw-rw-r-- 1 root root 11654964 Nov 20 12:56 gnome-getting-started-docs-de-3.14.1.0.2-3.el7.noarch.rpm
-rw-rw-r-- 1 root root 11694832 Nov 20 12:56 gnome-getting-started-docs-es-3.14.1.0.2-3.el7.noarch.rpm
-rw-rw-r-- 1 root root 11667184 Nov 20 12:56 gnome-getting-started-docs-fr-3.14.1.0.2-3.el7.noarch.rpm
-rw-rw-r-- 1 root root 11650424 Nov 20 12:56 gnome-getting-started-docs-gl-3.14.1.0.2-3.el7.noarch.rpm
-rw-rw-r-- 1 root root 11717772 Nov 20 12:56 gnome-getting-started-docs-hu-3.14.1.0.2-3.el7.noarch.rpm
-rw-rw-r-- 1 root root 11748724 Nov 20 12:57 gnome-getting-started-docs-it-3.14.1.0.2-3.el7.noarch.rpm
-rw-rw-r-- 1 root root 11543096 Nov 20 12:57 gnome-getting-started-docs-pl-3.14.1.0.2-3.el7.noarch.rpm
-rw-rw-r-- 1 root root 11559136 Nov 20 12:57 gnome-getting-started-docs-pt_BR-3.14.1.0.2-3.el7.noarch.rpm
-rw-rw-r-- 1 root root 11545992 Nov 20 12:57 gnome-getting-started-docs-ru-3.14.1.0.2-3.el7.noarch.rpm
-rw-rw-r-- 1 root root 10149916 Nov 25  2015 gnome-icon-theme-3.12.0-1.el7.noarch.rpm
-rw-rw-r-- 1 root root   867156 Nov 25  2015 gnome-icon-theme-extras-3.12.0-1.el7.noarch.rpm
-rw-rw-r-- 1 root root   431464 Nov 25  2015 gnome-icon-theme-legacy-3.12.0-1.el7.noarch.rpm
-rw-rw-r-- 1 root root   205856 Nov 25  2015 gnome-icon-theme-symbolic-3.12.0-2.el7.noarch.rpm
-rw-rw-r-- 1 root root  1051428 Nov 25  2015 gnome-initial-setup-3.14.4-5.el7.x86_64.rpm
-rw-rw-r-- 1 root root   905960 Nov 25  2015 gnome-keyring-3.14.0-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root    39628 Nov 25  2015 gnome-keyring-pam-3.14.0-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root   184372 Nov 25  2015 gnome-menus-3.13.3-3.el7.x86_64.rpm
-rw-rw-r-- 1 root root  1054288 Nov 20 12:57 gnome-online-accounts-3.14.5-5.el7.x86_64.rpm
-rw-rw-r-- 1 root root   167888 Nov 20 12:57 gnome-online-accounts-devel-3.14.5-5.el7.x86_64.rpm
-rw-rw-r-- 1 root root    57064 Nov 25  2015 gnome-online-miners-3.14.3-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root     7412 Nov 20 12:57 gnome-packagekit-3.14.3-7.el7.x86_64.rpm
-rw-rw-r-- 1 root root  1370168 Nov 20 12:57 gnome-packagekit-common-3.14.3-7.el7.x86_64.rpm
-rw-rw-r-- 1 root root    78616 Nov 20 12:57 gnome-packagekit-installer-3.14.3-7.el7.x86_64.rpm
-rw-rw-r-- 1 root root    73800 Nov 20 12:58 gnome-packagekit-updater-3.14.3-7.el7.x86_64.rpm
-rw-rw-r-- 1 root root    47620 Jul  3  2014 gnome-python2-2.28.1-14.el7.x86_64.rpm
-rw-rw-r-- 1 root root    88996 Jul  3  2014 gnome-python2-bonobo-2.28.1-14.el7.x86_64.rpm
-rw-rw-r-- 1 root root    34660 Jul  3  2014 gnome-python2-canvas-2.28.1-14.el7.x86_64.rpm
-rw-rw-r-- 1 root root    46640 Jul  3  2014 gnome-python2-gconf-2.28.1-14.el7.x86_64.rpm
-rw-rw-r-- 1 root root    83576 Jul  3  2014 gnome-python2-gnome-2.28.1-14.el7.x86_64.rpm
-rw-rw-r-- 1 root root    86848 Jul  3  2014 gnome-python2-gnomevfs-2.28.1-14.el7.x86_64.rpm
-rw-rw-r-- 1 root root   173792 Nov 20 12:58 gnome-screenshot-3.14.0-3.el7.x86_64.rpm
-rw-rw-r-- 1 root root   411692 Nov 20 12:58 gnome-session-3.14.0-5.el7.x86_64.rpm
-rw-rw-r-- 1 root root    10028 Nov 20 12:58 gnome-session-xsession-3.14.0-5.el7.x86_64.rpm
-rw-rw-r-- 1 root root  1161124 Nov 20 12:58 gnome-settings-daemon-3.14.4-12.el7.x86_64.rpm
-rw-rw-r-- 1 root root  1954584 Nov 20 12:58 gnome-shell-3.14.4-53.el7.x86_64.rpm
-rw-rw-r-- 1 root root    41228 Nov 20 12:58 gnome-shell-browser-plugin-3.14.4-53.el7.x86_64.rpm
-rw-rw-r-- 1 root root    17912 Nov 20 12:58 gnome-shell-extension-alternate-tab-3.14.4-21.el7.noarch.rpm
-rw-rw-r-- 1 root root    21332 Nov 20 12:58 gnome-shell-extension-apps-menu-3.14.4-21.el7.noarch.rpm
-rw-rw-r-- 1 root root   133880 Nov 20 12:59 gnome-shell-extension-common-3.14.4-21.el7.noarch.rpm
-rw-rw-r-- 1 root root    16396 Nov 20 12:59 gnome-shell-extension-launch-new-instance-3.14.4-21.el7.noarch.rpm
-rw-rw-r-- 1 root root    20452 Nov 20 12:59 gnome-shell-extension-places-menu-3.14.4-21.el7.noarch.rpm
-rw-rw-r-- 1 root root    26904 Nov 20 12:59 gnome-shell-extension-window-list-3.14.4-21.el7.noarch.rpm
-rw-rw-r-- 1 root root  1989684 Nov 25  2015 gnome-software-3.14.7-2.el7.x86_64.rpm
-rw-rw-r-- 1 root root  1005160 Nov 25  2015 gnome-system-log-3.9.90-3.el7.x86_64.rpm
-rw-rw-r-- 1 root root   610016 Nov 20 13:00 gnome-system-monitor-3.14.1-4.el7.x86_64.rpm
-rw-rw-r-- 1 root root  1124492 Nov 20 13:00 gnome-terminal-3.14.3-13.el7.x86_64.rpm
-rw-rw-r-- 1 root root    29692 Nov 20 13:00 gnome-terminal-nautilus-3.14.3-13.el7.x86_64.rpm
-rw-rw-r-- 1 root root  2935368 Nov 25  2015 gnome-themes-standard-3.14.2.2-2.el7.x86_64.rpm
-rw-rw-r-- 1 root root   245920 Nov 25  2015 gnome-tweak-tool-3.14.3-2.el7.noarch.rpm
-rw-rw-r-- 1 root root 15231164 Nov 25  2015 gnome-user-docs-3.14.2-1.el7.noarch.rpm
-rw-rw-r-- 1 root root   859316 Jul  3  2014 gnome-vfs2-2.24.4-14.el7.x86_64.rpm
-rw-rw-r-- 1 root root    66744 Nov 25  2015 gnome-video-effects-0.4.1-1.el7.noarch.rpm
-rw-rw-r-- 1 root root 10228804 Nov 25  2015 gnome-weather-3.14.1-1.el7.noarch.rpm
-rw-rw-r-- 1 root root  3103184 Nov 20 13:00 gnote-3.8.1-4.el7.x86_64.rpm
-rw-rw-r-- 1 root root   130484 Jul  3  2014 gnu-free-fonts-common-20120503-8.el7.noarch.rpm
-rw-rw-r-- 1 root root   709212 Jul  3  2014 gnu-free-mono-fonts-20120503-8.el7.noarch.rpm
-rw-rw-r-- 1 root root  1347520 Jul  3  2014 gnu-free-sans-fonts-20120503-8.el7.noarch.rpm
-rw-rw-r-- 1 root root  2676452 Jul  3  2014 gnu-free-serif-fonts-20120503-8.el7.noarch.rpm
-rw-rw-r-- 1 root root  1563080 Nov 20 13:00 gnupg2-2.0.22-4.el7.x86_64.rpm
-rw-rw-r-- 1 root root   659952 Jul  3  2014 gnuplot-4.6.2-3.el7.x86_64.rpm
-rw-rw-r-- 1 root root   608936 Jul  3  2014 gnuplot-common-4.6.2-3.el7.x86_64.rpm
-rw-rw-r-- 1 root root   688468 Nov 20 13:00 gnutls-3.3.24-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root    32932 Nov 20 13:00 gnutls-c++-3.3.24-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root    34140 Nov 20 13:00 gnutls-dane-3.3.24-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root  1448640 Nov 20 13:01 gnutls-devel-3.3.24-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root   238848 Nov 20 13:01 gnutls-utils-3.3.24-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root   235164 Nov 25  2015 gobject-introspection-1.42.0-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root  1236428 Nov 25  2015 gobject-introspection-devel-1.42.0-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root   572824 Feb 16  2016 golang-github-cpuguy83-go-md2man-1.0.4-2.el7_2.x86_64.rpm
-rw-rw-r-- 1 root root    52952 Nov 25  2015 gom-0.2.1-3.el7.x86_64.rpm
-rw-rw-r-- 1 root root    93916 Jul  3  2014 google-crosextra-caladea-fonts-1.002-0.4.20130214.el7.noarch.rpm
-rw-rw-r-- 1 root root   832708 Jul  3  2014 google-crosextra-carlito-fonts-1.103-0.2.20130920.el7.noarch.rpm
-rw-rw-r-- 1 root root    12396 Nov 20 13:01 google-noto-fonts-common-20141117-5.el7.noarch.rpm
-rw-rw-r-- 1 root root    31888 Nov 20 13:02 google-noto-sans-armenian-fonts-20141117-5.el7.noarch.rpm
-rw-rw-r-- 1 root root   165940 Nov 20 13:03 google-noto-sans-devanagari-fonts-20141117-5.el7.noarch.rpm
-rw-rw-r-- 1 root root   155044 Nov 20 13:03 google-noto-sans-devanagari-ui-fonts-20141117-5.el7.noarch.rpm
-rw-rw-r-- 1 root root   150348 Nov 20 13:03 google-noto-sans-ethiopic-fonts-20141117-5.el7.noarch.rpm
-rw-rw-r-- 1 root root   522996 Nov 20 13:03 google-noto-sans-fonts-20141117-5.el7.noarch.rpm
-rw-rw-r-- 1 root root    40784 Nov 20 13:03 google-noto-sans-georgian-fonts-20141117-5.el7.noarch.rpm
-rw-rw-r-- 1 root root    26136 Nov 20 13:04 google-noto-sans-hebrew-fonts-20141117-5.el7.noarch.rpm
-rw-rw-r-- 1 root root    44956 Nov 20 13:05 google-noto-sans-khmer-fonts-20141117-5.el7.noarch.rpm
-rw-rw-r-- 1 root root    46796 Nov 20 13:05 google-noto-sans-khmer-ui-fonts-20141117-5.el7.noarch.rpm
-rw-rw-r-- 1 root root    40808 Nov 20 13:05 google-noto-sans-lao-fonts-20141117-5.el7.noarch.rpm
-rw-rw-r-- 1 root root    40744 Nov 20 13:05 google-noto-sans-lao-ui-fonts-20141117-5.el7.noarch.rpm
-rw-rw-r-- 1 root root    63096 Nov 20 13:08 google-noto-sans-tamil-fonts-20141117-5.el7.noarch.rpm
-rw-rw-r-- 1 root root    63416 Nov 20 13:08 google-noto-sans-tamil-ui-fonts-20141117-5.el7.noarch.rpm
-rw-rw-r-- 1 root root    37604 Nov 20 13:08 google-noto-sans-thai-fonts-20141117-5.el7.noarch.rpm
-rw-rw-r-- 1 root root    38224 Nov 20 13:08 google-noto-sans-thai-ui-fonts-20141117-5.el7.noarch.rpm
-rw-rw-r-- 1 root root   523052 Nov 20 13:09 google-noto-sans-ui-fonts-20141117-5.el7.noarch.rpm
-rw-rw-r-- 1 root root    34712 Nov 20 13:09 google-noto-serif-armenian-fonts-20141117-5.el7.noarch.rpm
-rw-rw-r-- 1 root root   713100 Nov 20 13:09 google-noto-serif-fonts-20141117-5.el7.noarch.rpm
-rw-rw-r-- 1 root root    44360 Nov 20 13:09 google-noto-serif-georgian-fonts-20141117-5.el7.noarch.rpm
-rw-rw-r-- 1 root root    36848 Nov 20 13:09 google-noto-serif-lao-fonts-20141117-5.el7.noarch.rpm
-rw-rw-r-- 1 root root    36308 Nov 20 13:09 google-noto-serif-thai-fonts-20141117-5.el7.noarch.rpm
-rw-rw-r-- 1 root root   278772 Nov 20 13:10 gperftools-libs-2.4-8.el7.x86_64.rpm
-rw-rw-r-- 1 root root   149304 Jul  3  2014 gpgme-1.3.2-5.el7.x86_64.rpm
-rw-rw-r-- 1 root root   187660 Jul  3  2014 gpm-1.20.7-5.el7.x86_64.rpm
-rw-rw-r-- 1 root root    33048 Jul  3  2014 gpm-libs-1.20.7-5.el7.x86_64.rpm
-rw-rw-r-- 1 root root   115080 Apr  5  2016 graphite2-1.3.6-1.el7_2.x86_64.rpm
-rw-rw-r-- 1 root root  1329628 Mar 14  2015 graphviz-2.30.1-19.el7.x86_64.rpm
-rw-rw-r-- 1 root root   721904 Mar 14  2015 graphviz-tcl-2.30.1-19.el7.x86_64.rpm
-rw-rw-r-- 1 root root   351808 Nov 25  2015 grep-2.20-2.el7.x86_64.rpm
-rw-rw-r-- 1 root root   203996 Nov 25  2015 grilo-0.2.12-2.el7.x86_64.rpm
-rw-rw-r-- 1 root root   392256 Nov 25  2015 grilo-plugins-0.2.14-8.el7.x86_64.rpm
-rw-rw-r-- 1 root root   964100 Jul  3  2014 groff-base-1.22.2-8.el7.x86_64.rpm
-rw-rw-r-- 1 root root  1558648 Nov 22 21:19 grub2-2.02-0.44.el7.centos.x86_64.rpm
-rw-rw-r-- 1 root root  1135528 Nov 22 21:19 grub2-efi-2.02-0.44.el7.centos.x86_64.rpm
-rw-rw-r-- 1 root root  3439812 Nov 22 21:19 grub2-tools-2.02-0.44.el7.centos.x86_64.rpm
-rw-rw-r-- 1 root root    68652 Nov 20 13:10 grubby-8.28-18.el7.x86_64.rpm
-rw-rw-r-- 1 root root   487056 Nov 25  2015 gsettings-desktop-schemas-3.14.2-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root    11736 Nov 25  2015 gsettings-desktop-schemas-devel-3.14.2-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root   905340 Jul  3  2014 gsl-1.15-13.el7.x86_64.rpm
-rw-rw-r-- 1 root root   456812 Jul  3  2014 gsl-devel-1.15-13.el7.x86_64.rpm
-rw-rw-r-- 1 root root    30212 Jul  3  2014 gsm-1.0.13-11.el7.x86_64.rpm
-rw-rw-r-- 1 root root    45200 Jul  3  2014 gssdp-0.14.3-3.el7.x86_64.rpm
-rw-rw-r-- 1 root root    89464 Nov 20 13:10 gssproxy-0.4.1-13.el7.x86_64.rpm
-rw-rw-r-- 1 root root   980860 Jul  3  2014 gstreamer-0.10.36-7.el7.x86_64.rpm
-rw-rw-r-- 1 root root  1012856 Nov 25  2015 gstreamer1-1.4.5-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root   389656 Nov 25  2015 gstreamer1-devel-1.4.5-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root  1485464 Nov 20 13:10 gstreamer1-plugins-bad-free-1.4.5-4.el7.x86_64.rpm
-rw-rw-r-- 1 root root  1285052 Nov 25  2015 gstreamer1-plugins-base-1.4.5-2.el7.x86_64.rpm
-rw-rw-r-- 1 root root   262288 Nov 25  2015 gstreamer1-plugins-base-devel-1.4.5-2.el7.x86_64.rpm
-rw-rw-r-- 1 root root  1880680 Nov 25  2015 gstreamer1-plugins-good-1.4.5-2.el7.x86_64.rpm
-rw-rw-r-- 1 root root  1459940 Jul  3  2014 gstreamer-plugins-bad-free-0.10.23-20.el7.x86_64.rpm
-rw-rw-r-- 1 root root  1282064 Jul  3  2014 gstreamer-plugins-base-0.10.36-10.el7.x86_64.rpm
-rw-rw-r-- 1 root root  1592124 Jul  3  2014 gstreamer-plugins-good-0.10.31-11.el7.x86_64.rpm
-rw-rw-r-- 1 root root    27692 Jul  3  2014 gstreamer-tools-0.10.36-7.el7.x86_64.rpm
-rw-rw-r-- 1 root root  3546500 Nov 25  2015 gtk2-2.24.28-8.el7.x86_64.rpm
-rw-rw-r-- 1 root root  3052344 Nov 25  2015 gtk2-devel-2.24.28-8.el7.x86_64.rpm
-rw-rw-r-- 1 root root  2551364 Nov 25  2015 gtk2-devel-docs-2.24.28-8.el7.x86_64.rpm
-rw-rw-r-- 1 root root    17200 Nov 25  2015 gtk2-immodule-xim-2.24.28-8.el7.x86_64.rpm
-rw-rw-r-- 1 root root  3933364 Nov 20 13:10 gtk3-3.14.13-20.el7.x86_64.rpm
-rw-rw-r-- 1 root root  3875324 Nov 20 13:11 gtk3-devel-3.14.13-20.el7.x86_64.rpm
-rw-rw-r-- 1 root root    29116 Nov 20 13:11 gtk3-immodule-xim-3.14.13-20.el7.x86_64.rpm
-rw-rw-r-- 1 root root   840288 Nov 25  2015 gtkhtml3-4.8.5-2.el7.x86_64.rpm
-rw-rw-r-- 1 root root   768212 Jul  3  2014 gtkmm24-2.24.2-8.el7.x86_64.rpm
-rw-rw-r-- 1 root root   807388 Jul  3  2014 gtkmm30-3.8.1-3.el7.x86_64.rpm
-rw-rw-r-- 1 root root   968636 Nov 25  2015 gtksourceview3-3.14.3-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root    41716 Jul  3  2014 gtkspell-2.0.16-8.el7.x86_64.rpm
-rw-rw-r-- 1 root root    46972 Jul  3  2014 gtkspell3-3.0.3-4.el7.x86_64.rpm
-rw-rw-r-- 1 root root    39092 Jul  3  2014 gtk-vnc2-0.5.2-7.el7.x86_64.rpm
-rw-rw-r-- 1 root root    48596 Jul  3  2014 gubbi-fonts-1.1-3.el7.noarch.rpm
-rw-rw-r-- 1 root root  1615456 Nov 20 13:11 gucharmap-3.14.2-2.el7.x86_64.rpm
-rw-rw-r-- 1 root root    98244 Nov 25  2015 gupnp-0.20.13-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root    87784 Jul  3  2014 gupnp-av-0.12.2-3.el7.x86_64.rpm
-rw-rw-r-- 1 root root    85700 Jul  3  2014 gupnp-dlna-0.10.2-3.el7.x86_64.rpm
-rw-rw-r-- 1 root root    27868 Jul  3  2014 gupnp-igd-0.2.2-3.el7.x86_64.rpm
-rw-rw-r-- 1 root root  2427468 Sep 16  2014 gutenprint-5.2.9-18.el7.x86_64.rpm
-rw-rw-r-- 1 root root   372000 Sep 16  2014 gutenprint-cups-5.2.9-18.el7.x86_64.rpm
-rw-rw-r-- 1 root root    25212 Sep 16  2014 gutenprint-plugin-5.2.9-18.el7.x86_64.rpm
-rw-rw-r-- 1 root root  1163424 Nov 20 13:11 gvfs-1.22.4-8.el7.x86_64.rpm
-rw-rw-r-- 1 root root    73872 Nov 20 13:11 gvfs-afc-1.22.4-8.el7.x86_64.rpm
-rw-rw-r-- 1 root root    88260 Nov 20 13:11 gvfs-afp-1.22.4-8.el7.x86_64.rpm
-rw-rw-r-- 1 root root    41128 Nov 20 13:11 gvfs-archive-1.22.4-8.el7.x86_64.rpm
-rw-rw-r-- 1 root root    29308 Nov 20 13:12 gvfs-devel-1.22.4-8.el7.x86_64.rpm
-rw-rw-r-- 1 root root    42380 Nov 20 13:12 gvfs-fuse-1.22.4-8.el7.x86_64.rpm
-rw-rw-r-- 1 root root    56760 Nov 20 13:12 gvfs-goa-1.22.4-8.el7.x86_64.rpm
-rw-rw-r-- 1 root root    76852 Nov 20 13:12 gvfs-gphoto2-1.22.4-8.el7.x86_64.rpm
-rw-rw-r-- 1 root root    75752 Nov 20 13:12 gvfs-mtp-1.22.4-8.el7.x86_64.rpm
-rw-rw-r-- 1 root root    57164 Nov 20 13:12 gvfs-smb-1.22.4-8.el7.x86_64.rpm
-rw-rw-r-- 1 root root    90804 Jul  3  2014 gvnc-0.5.2-7.el7.x86_64.rpm
-rw-rw-r-- 1 root root  1946876 Nov 20 13:12 gwenview-4.10.5-4.el7.x86_64.rpm
-rw-rw-r-- 1 root root   354648 Nov 20 13:12 gwenview-libs-4.10.5-4.el7.x86_64.rpm
-rw-rw-r-- 1 root root   132064 Jul 27  2015 gzip-1.5-8.el7.x86_64.rpm
-rw-rw-r-- 1 root root   127488 Jul  3  2014 hamcrest-1.3-6.el7.noarch.rpm
-rw-rw-r-- 1 root root   853212 Nov 20 13:12 haproxy-1.5.18-3.el7.x86_64.rpm
-rw-rw-r-- 1 root root    14640 Jul  3  2014 hardlink-1.0-19.el7.x86_64.rpm
-rw-rw-r-- 1 root root   160036 Nov 25  2015 harfbuzz-0.9.36-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root   105992 Nov 25  2015 harfbuzz-devel-0.9.36-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root    11652 Nov 25  2015 harfbuzz-icu-0.9.36-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root    85348 Jul  3  2014 hdparm-9.43-5.el7.x86_64.rpm
-rw-rw-r-- 1 root root    30344 Jul  3  2014 hesiod-3.2.1-3.el7.x86_64.rpm
-rw-rw-r-- 1 root root    39900 Jul  3  2014 hexedit-1.2.13-5.el7.x86_64.rpm
-rw-rw-r-- 1 root root    43464 Jul  3  2014 hicolor-icon-theme-0.12-7.el7.noarch.rpm
-rw-rw-r-- 1 root root   626236 Jul  3  2014 highlight-3.13-3.el7.x86_64.rpm
-rw-rw-r-- 1 root root   102392 Mar 14  2015 hivex-1.3.10-5.7.el7.x86_64.rpm
-rw-rw-r-- 1 root root    26796 Jul  3  2014 hmaccalc-0.9.13-4.el7.x86_64.rpm
-rw-rw-r-- 1 root root    17068 Jul  3  2014 hostname-3.13-3.el7.x86_64.rpm
-rw-rw-r-- 1 root root  6590000 Nov 20 13:13 hpijs-3.15.9-2.el7.x86_64.rpm
-rw-rw-r-- 1 root root  6373400 Nov 20 13:13 hplip-3.15.9-2.el7.x86_64.rpm
-rw-rw-r-- 1 root root    90484 Nov 20 13:13 hplip-common-3.15.9-2.el7.x86_64.rpm
-rw-rw-r-- 1 root root  1517952 Nov 20 13:13 hplip-gui-3.15.9-2.el7.x86_64.rpm
-rw-rw-r-- 1 root root   180016 Nov 20 13:13 hplip-libs-3.15.9-2.el7.x86_64.rpm
-rw-rw-r-- 1 root root   972944 Nov 20 13:13 hsqldb-1.8.1.3-14.el7.noarch.rpm
-rw-rw-r-- 1 root root   435304 Sep  3  2014 httpcomponents-client-4.2.5-5.el7_0.noarch.rpm
-rw-rw-r-- 1 root root   476764 Jul  3  2014 httpcomponents-core-4.2.4-6.el7.noarch.rpm
-rw-rw-r-- 1 root root  2827204 Nov 20 13:14 httpd-2.4.6-45.el7.centos.x86_64.rpm
-rw-rw-r-- 1 root root   193404 Nov 20 13:14 httpd-devel-2.4.6-45.el7.centos.x86_64.rpm
-rw-rw-r-- 1 root root  1397800 Nov 20 13:14 httpd-manual-2.4.6-45.el7.centos.noarch.rpm
-rw-rw-r-- 1 root root    85780 Nov 20 13:14 httpd-tools-2.4.6-45.el7.centos.x86_64.rpm
-rw-rw-r-- 1 root root   228776 Nov 20 13:14 hunspell-1.3.2-15.el7.x86_64.rpm
-rw-rw-r-- 1 root root   576328 Jul  3  2014 hunspell-af-0.20080825-8.el7.noarch.rpm
-rw-rw-r-- 1 root root    23456 Jul  3  2014 hunspell-ak-0.6-7.el7.noarch.rpm
-rw-rw-r-- 1 root root   747056 Jul  3  2014 hunspell-am-0.20090704-7.el7.noarch.rpm
-rw-rw-r-- 1 root root   262200 Jul  3  2014 hunspell-ar-0.20080110-10.el7.noarch.rpm
-rw-rw-r-- 1 root root    89816 Jul  3  2014 hunspell-as-1.0.3-9.el7.noarch.rpm
-rw-rw-r-- 1 root root   201280 Jul  3  2014 hunspell-ast-0.02-6.el7.noarch.rpm
-rw-rw-r-- 1 root root    66768 Jul  3  2014 hunspell-az-0.20040827-10.el7.noarch.rpm
-rw-rw-r-- 1 root root  3385252 Jul  3  2014 hunspell-be-1.1-7.el7.noarch.rpm
-rw-rw-r-- 1 root root    16224 Jul  3  2014 hunspell-ber-0.20080210-8.el7.noarch.rpm
-rw-rw-r-- 1 root root   299964 Jul  3  2014 hunspell-bg-4.3-6.el7.noarch.rpm
-rw-rw-r-- 1 root root  1514656 Jul  3  2014 hunspell-bn-0.06-4.el7.noarch.rpm
-rw-rw-r-- 1 root root  1086276 Jul  3  2014 hunspell-br-0.8-5.el7.noarch.rpm
-rw-rw-r-- 1 root root   375048 Jul  3  2014 hunspell-ca-2.3-4.el7.noarch.rpm
-rw-rw-r-- 1 root root    49208 Jul  3  2014 hunspell-cop-0.3-5.el7.noarch.rpm
-rw-rw-r-- 1 root root   938388 Jul  3  2014 hunspell-cs-20060303-14.el7.noarch.rpm
-rw-rw-r-- 1 root root    30828 Jul  3  2014 hunspell-csb-0.20050311-10.el7.noarch.rpm
-rw-rw-r-- 1 root root   122480 Jul  3  2014 hunspell-cv-1.02-6.el7.noarch.rpm
-rw-rw-r-- 1 root root   632116 Jul  3  2014 hunspell-cy-0.20040425-10.el7.noarch.rpm
-rw-rw-r-- 1 root root   339356 Jul  3  2014 hunspell-da-1.7.42-2.el7.noarch.rpm
-rw-rw-r-- 1 root root   350400 Jul  3  2014 hunspell-de-0.20120607-4.el7.noarch.rpm
-rw-rw-r-- 1 root root    75772 Nov 20 13:14 hunspell-devel-1.3.2-15.el7.x86_64.rpm
-rw-rw-r-- 1 root root   292784 Jul  3  2014 hunspell-dsb-1.4.6-4.el7.noarch.rpm
-rw-rw-r-- 1 root root  1414768 Jul  3  2014 hunspell-el-0.8-7.el7.noarch.rpm
-rw-rw-r-- 1 root root   198148 Jul  3  2014 hunspell-en-0.20121024-5.el7.noarch.rpm
-rw-rw-r-- 1 root root   244704 Jul  3  2014 hunspell-en-GB-0.20121024-5.el7.noarch.rpm
-rw-rw-r-- 1 root root   193984 Jul  3  2014 hunspell-en-US-0.20121024-5.el7.noarch.rpm
-rw-rw-r-- 1 root root   145640 Jul  3  2014 hunspell-eo-1.0-0.7.dev.el7.noarch.rpm
-rw-rw-r-- 1 root root   256056 Jul  3  2014 hunspell-es-0.6-4.el7.noarch.rpm
-rw-rw-r-- 1 root root   775068 Jul  3  2014 hunspell-et-0.20030606-11.el7.noarch.rpm
-rw-rw-r-- 1 root root   800404 Jul  3  2014 hunspell-eu-0.20080507-8.el7.noarch.rpm
-rw-rw-r-- 1 root root   873992 Jul  3  2014 hunspell-fa-0.20070116-9.el7.noarch.rpm
-rw-rw-r-- 1 root root   102192 Jul  3  2014 hunspell-fj-1.2-7.el7.noarch.rpm
-rw-rw-r-- 1 root root  1135716 Jul  3  2014 hunspell-fo-0.4.1-4.el7.noarch.rpm
-rw-rw-r-- 1 root root   353276 Jul  3  2014 hunspell-fr-4.6-4.el7.noarch.rpm
-rw-rw-r-- 1 root root   131212 Jul  3  2014 hunspell-fur-0.20050912-9.el7.noarch.rpm
-rw-rw-r-- 1 root root   828376 Jul  3  2014 hunspell-fy-2.0.1-6.el7.noarch.rpm
-rw-rw-r-- 1 root root   346352 Jul  3  2014 hunspell-ga-4.6-7.el7.noarch.rpm
-rw-rw-r-- 1 root root   409712 Jul  3  2014 hunspell-gd-2.6-3.el7.noarch.rpm
-rw-rw-r-- 1 root root   212276 Jul  3  2014 hunspell-gl-0.20080515-8.el7.noarch.rpm
-rw-rw-r-- 1 root root  3505148 Jul  3  2014 hunspell-grc-2.1.5-7.el7.noarch.rpm
-rw-rw-r-- 1 root root   609292 Jul  3  2014 hunspell-gu-20061015-11.el7.noarch.rpm
-rw-rw-r-- 1 root root   109872 Jul  3  2014 hunspell-gv-0.20040505-9.el7.noarch.rpm
-rw-rw-r-- 1 root root    26660 Jul  3  2014 hunspell-haw-0.02-4.el7.noarch.rpm
-rw-rw-r-- 1 root root   945292 Jul  3  2014 hunspell-he-1.2-6.el7.x86_64.rpm
-rw-rw-r-- 1 root root    71540 Jul  3  2014 hunspell-hi-20050726-12.el7.noarch.rpm
-rw-rw-r-- 1 root root    73656 Jul  3  2014 hunspell-hil-0.14-6.el7.noarch.rpm
-rw-rw-r-- 1 root root   730420 Jul  3  2014 hunspell-hr-0.20040608-10.el7.noarch.rpm
-rw-rw-r-- 1 root root   169500 Jul  3  2014 hunspell-hsb-0.20060327.3-5.el7.noarch.rpm
-rw-rw-r-- 1 root root    59336 Jul  3  2014 hunspell-ht-0.06-6.el7.noarch.rpm
-rw-rw-r-- 1 root root   641660 Jul  3  2014 hunspell-hu-1.6.1-6.el7.noarch.rpm
-rw-rw-r-- 1 root root   280812 Jul  3  2014 hunspell-hy-0.20.0-6.el7.noarch.rpm
-rw-rw-r-- 1 root root    93988 Jul  3  2014 hunspell-ia-0.20050226-9.el7.noarch.rpm
-rw-rw-r-- 1 root root   119592 Jul  3  2014 hunspell-id-0.20040812-8.el7.noarch.rpm
-rw-rw-r-- 1 root root   628492 Jul  3  2014 hunspell-is-0.20090823-6.el7.noarch.rpm
-rw-rw-r-- 1 root root   375556 Jul  3  2014 hunspell-it-2.4-0.10.20070901.el7.noarch.rpm
-rw-rw-r-- 1 root root   204344 Jul  3  2014 hunspell-kk-1.1-6.el7.noarch.rpm
-rw-rw-r-- 1 root root   359584 Jul  3  2014 hunspell-km-1.1-7.el7.noarch.rpm
-rw-rw-r-- 1 root root   278492 Jul  3  2014 hunspell-kn-1.0.3-7.el7.noarch.rpm
-rw-rw-r-- 1 root root   975744 Jul  3  2014 hunspell-ko-0.5.5-5.el7.noarch.rpm
-rw-rw-r-- 1 root root    43872 Jul  3  2014 hunspell-ku-0.21-11.el7.noarch.rpm
-rw-rw-r-- 1 root root    45756 Jul  3  2014 hunspell-ky-0.20090415-8.el7.noarch.rpm
-rw-rw-r-- 1 root root   439772 Jul  3  2014 hunspell-la-0.20110807-6.el7.noarch.rpm
-rw-rw-r-- 1 root root   253832 Jul  3  2014 hunspell-lb-0.20121128-2.el7.noarch.rpm
-rw-rw-r-- 1 root root    29084 Jul  3  2014 hunspell-ln-0.02-7.el7.noarch.rpm
-rw-rw-r-- 1 root root   353696 Jul  3  2014 hunspell-lt-1.2.1-10.el7.noarch.rpm
-rw-rw-r-- 1 root root   659832 Jul  3  2014 hunspell-lv-0.9.4-5.el7.noarch.rpm
-rw-rw-r-- 1 root root   201456 Jul  3  2014 hunspell-mai-1.0.1-7.el7.noarch.rpm
-rw-rw-r-- 1 root root    63720 Jul  3  2014 hunspell-mg-0.20050109-10.el7.noarch.rpm
-rw-rw-r-- 1 root root    85284 Jul  3  2014 hunspell-mi-0.20080630-8.el7.noarch.rpm
-rw-rw-r-- 1 root root   518264 Jul  3  2014 hunspell-mk-0.20051126-8.el7.noarch.rpm
-rw-rw-r-- 1 root root   741272 Jul  3  2014 hunspell-ml-0.1-10.el7.noarch.rpm
-rw-rw-r-- 1 root root   433472 Jul  3  2014 hunspell-mn-0.20080709-8.el7.noarch.rpm
-rw-rw-r-- 1 root root   277892 Jul  3  2014 hunspell-mos-0.20101130-6.el7.noarch.rpm
-rw-rw-r-- 1 root root    64160 Jul  3  2014 hunspell-mr-20060920-15.el7.noarch.rpm
-rw-rw-r-- 1 root root    89188 Jul  3  2014 hunspell-ms-0.20050117-9.el7.noarch.rpm
-rw-rw-r-- 1 root root  1605556 Jul  3  2014 hunspell-mt-0.20020708-9.el7.noarch.rpm
-rw-rw-r-- 1 root root  1236672 Nov 20 13:14 hunspell-nb-2.0.10-1.el7.noarch.rpm
-rw-rw-r-- 1 root root    32920 Jul  3  2014 hunspell-nds-0.1-8.el7.noarch.rpm
-rw-rw-r-- 1 root root   167956 Jul  3  2014 hunspell-ne-20080425-9.el7.noarch.rpm
-rw-rw-r-- 1 root root   767788 Jul  3  2014 hunspell-nl-2.10-5.el7.noarch.rpm
-rw-rw-r-- 1 root root   780780 Nov 20 13:14 hunspell-nn-2.0.10-1.el7.noarch.rpm
-rw-rw-r-- 1 root root    81460 Jul  3  2014 hunspell-nr-0.20091030-6.el7.noarch.rpm
-rw-rw-r-- 1 root root   210912 Jul  3  2014 hunspell-nso-0.20091201-6.el7.noarch.rpm
-rw-rw-r-- 1 root root    29148 Jul  3  2014 hunspell-ny-0.01-6.el7.noarch.rpm
-rw-rw-r-- 1 root root   182180 Jul  3  2014 hunspell-oc-0.5-8.el7.noarch.rpm
-rw-rw-r-- 1 root root   268416 Jul  3  2014 hunspell-om-0.04-6.el7.noarch.rpm
-rw-rw-r-- 1 root root    18552 Jul  3  2014 hunspell-or-0.03-4.el7.noarch.rpm
-rw-rw-r-- 1 root root    22776 Jul  3  2014 hunspell-pa-20050726-10.el7.noarch.rpm
-rw-rw-r-- 1 root root  1094220 Jul  3  2014 hunspell-pl-0.20130130-2.el7.noarch.rpm
-rw-rw-r-- 1 root root  1515296 Jul  3  2014 hunspell-pt-0.20130125-2.el7.noarch.rpm
-rw-rw-r-- 1 root root    57532 Jul  3  2014 hunspell-qu-0.9-5.el7.noarch.rpm
-rw-rw-r-- 1 root root   182320 Jul  3  2014 hunspell-quh-0.20110816-5.el7.noarch.rpm
-rw-rw-r-- 1 root root   570628 Jul  3  2014 hunspell-ro-3.3.7-5.el7.noarch.rpm
-rw-rw-r-- 1 root root   505416 Jul  3  2014 hunspell-ru-0.99g5-5.el7.noarch.rpm
-rw-rw-r-- 1 root root    27576 Jul  3  2014 hunspell-rw-0.20050109-8.el7.noarch.rpm
-rw-rw-r-- 1 root root   355188 Jul  3  2014 hunspell-sc-0.20081101-11.el7.noarch.rpm
-rw-rw-r-- 1 root root  2941708 Jul  3  2014 hunspell-se-1.0-0.7.beta7.el7.noarch.rpm
-rw-rw-r-- 1 root root    36424 Jul  3  2014 hunspell-shs-0.20090828-6.el7.noarch.rpm
-rw-rw-r-- 1 root root   239300 Jul  3  2014 hunspell-si-0.2.1-9.el7.noarch.rpm
-rw-rw-r-- 1 root root   855304 Jul  3  2014 hunspell-sk-0.20110228-5.el7.noarch.rpm
-rw-rw-r-- 1 root root  1082228 Jul  3  2014 hunspell-sl-0.20070127-10.el7.noarch.rpm
-rw-rw-r-- 1 root root  1044212 Jul  3  2014 hunspell-smj-1.0-0.7.beta7.el7.noarch.rpm
-rw-rw-r-- 1 root root    98112 Jul  3  2014 hunspell-so-1.0.2-5.el7.noarch.rpm
-rw-rw-r-- 1 root root   624344 Jul  3  2014 hunspell-sq-1.6.4-5.el7.noarch.rpm
-rw-rw-r-- 1 root root  1086884 Jul  3  2014 hunspell-sr-0.20100920-7.el7.noarch.rpm
-rw-rw-r-- 1 root root    82444 Jul  3  2014 hunspell-ss-0.20091030-6.el7.noarch.rpm
-rw-rw-r-- 1 root root    33948 Jul  3  2014 hunspell-st-0.20091030-6.el7.noarch.rpm
-rw-rw-r-- 1 root root   587160 Jul  3  2014 hunspell-sv-2.10-3.el7.noarch.rpm
-rw-rw-r-- 1 root root   225844 Jul  3  2014 hunspell-sw-0.20050819-9.el7.noarch.rpm
-rw-rw-r-- 1 root root   481804 Jul  3  2014 hunspell-ta-20100226-8.el7.noarch.rpm
-rw-rw-r-- 1 root root   528972 Jul  3  2014 hunspell-te-0.20050929-11.el7.noarch.rpm
-rw-rw-r-- 1 root root    39888 Jul  3  2014 hunspell-tet-0.20050108-10.el7.noarch.rpm
-rw-rw-r-- 1 root root   152276 Jul  3  2014 hunspell-th-0.20061212-10.el7.noarch.rpm
-rw-rw-r-- 1 root root   457916 Jul  3  2014 hunspell-ti-0.20090911-6.el7.noarch.rpm
-rw-rw-r-- 1 root root    39888 Jul  3  2014 hunspell-tk-0.02-4.el7.noarch.rpm
-rw-rw-r-- 1 root root    53880 Jul  3  2014 hunspell-tl-0.20050109-9.el7.noarch.rpm
-rw-rw-r-- 1 root root    46444 Jul  3  2014 hunspell-tn-0.20091101-6.el7.noarch.rpm
-rw-rw-r-- 1 root root    36420 Jul  3  2014 hunspell-tpi-0.05-5.el7.noarch.rpm
-rw-rw-r-- 1 root root   113260 Jul  3  2014 hunspell-ts-0.20091101-6.el7.noarch.rpm
-rw-rw-r-- 1 root root   515572 Jul  3  2014 hunspell-uk-1.6.5-5.el7.noarch.rpm
-rw-rw-r-- 1 root root   317952 Jul  3  2014 hunspell-ur-0.64-7.el7.noarch.rpm
-rw-rw-r-- 1 root root   290376 Jul  3  2014 hunspell-uz-0.6-8.el7.noarch.rpm
-rw-rw-r-- 1 root root    44728 Jul  3  2014 hunspell-ve-0.20091030-6.el7.noarch.rpm
-rw-rw-r-- 1 root root    16932 Jul  3  2014 hunspell-vi-0.20080604-8.el7.noarch.rpm
-rw-rw-r-- 1 root root    71592 Jul  3  2014 hunspell-wa-0.4.15-9.el7.noarch.rpm
-rw-rw-r-- 1 root root    76352 Jul  3  2014 hunspell-xh-0.20091030-6.el7.noarch.rpm
-rw-rw-r-- 1 root root   305472 Jul  3  2014 hunspell-yi-1.1-7.el7.noarch.rpm
-rw-rw-r-- 1 root root   364980 Jul  3  2014 hunspell-zu-0.20100126-8.el7.noarch.rpm
-rw-rw-r-- 1 root root  2240396 Nov 20 13:14 hwdata-0.252-8.4.el7.x86_64.rpm
-rw-rw-r-- 1 root root   148896 Nov 20 13:14 hwloc-1.11.2-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root  1565564 Nov 20 13:15 hwloc-libs-1.11.2-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root     4620 Nov 20 13:15 hyperv-daemons-0-0.29.20160216git.el7.x86_64.rpm
-rw-rw-r-- 1 root root    12188 Nov 20 13:15 hyperv-daemons-license-0-0.29.20160216git.el7.noarch.rpm
-rw-rw-r-- 1 root root    10952 Nov 20 13:15 hypervfcopyd-0-0.29.20160216git.el7.x86_64.rpm
-rw-rw-r-- 1 root root    19496 Nov 20 13:15 hypervkvpd-0-0.29.20160216git.el7.x86_64.rpm
-rw-rw-r-- 1 root root    11416 Nov 20 13:15 hypervvssd-0-0.29.20160216git.el7.x86_64.rpm
-rw-rw-r-- 1 root root    26728 Jul  3  2014 hyphen-2.8.6-5.el7.x86_64.rpm
-rw-rw-r-- 1 root root    38412 Jul  3  2014 hyphen-af-0-0.9.20080714svn.el7.noarch.rpm
-rw-rw-r-- 1 root root     9148 Jul  3  2014 hyphen-as-0.7.0-4.el7.noarch.rpm
-rw-rw-r-- 1 root root     7948 Jul  3  2014 hyphen-be-1.1-7.el7.noarch.rpm
-rw-rw-r-- 1 root root    29772 Jul  3  2014 hyphen-bg-4.3-6.el7.noarch.rpm
-rw-rw-r-- 1 root root     9336 Jul  3  2014 hyphen-bn-0.7.0-4.el7.noarch.rpm
-rw-rw-r-- 1 root root     8084 Jul  3  2014 hyphen-ca-0.9.3-6.el7.noarch.rpm
-rw-rw-r-- 1 root root    15648 Jul  3  2014 hyphen-cs-20060303-14.el7.noarch.rpm
-rw-rw-r-- 1 root root    31912 Jul  3  2014 hyphen-cy-0.20110620-5.el7.noarch.rpm
-rw-rw-r-- 1 root root     8356 Jul  3  2014 hyphen-da-0.20070903-8.el7.noarch.rpm
-rw-rw-r-- 1 root root    30188 Jul  3  2014 hyphen-de-0.20060120-11.el7.noarch.rpm
-rw-rw-r-- 1 root root    10056 Jul  3  2014 hyphen-devel-2.8.6-5.el7.x86_64.rpm
-rw-rw-r-- 1 root root     6280 Jul  3  2014 hyphen-el-0.20051018-9.el7.noarch.rpm
-rw-rw-r-- 1 root root    48740 Jul  3  2014 hyphen-en-2.8.6-5.el7.noarch.rpm
-rw-rw-r-- 1 root root    12048 Jul  3  2014 hyphen-es-0.20110222svn-4.el7.noarch.rpm
-rw-rw-r-- 1 root root    18496 Jul  3  2014 hyphen-et-0.20030606-11.el7.noarch.rpm
-rw-rw-r-- 1 root root     5852 Jul  3  2014 hyphen-eu-0.20110620-5.el7.noarch.rpm
-rw-rw-r-- 1 root root     5236 Jul  3  2014 hyphen-fa-0.20081119-7.el7.noarch.rpm
-rw-rw-r-- 1 root root    17336 Jul  3  2014 hyphen-fo-0.20040420-6.el7.noarch.rpm
-rw-rw-r-- 1 root root    10852 Jul  3  2014 hyphen-fr-2.0-8.el7.noarch.rpm
-rw-rw-r-- 1 root root    23936 Jul  3  2014 hyphen-ga-0.20040220-8.el7.noarch.rpm
-rw-rw-r-- 1 root root    30756 Jul  3  2014 hyphen-gl-0.99-7.el7.noarch.rpm
-rw-rw-r-- 1 root root    23112 Jul  3  2014 hyphen-grc-0.20110913-5.el7.noarch.rpm
-rw-rw-r-- 1 root root     9472 Jul  3  2014 hyphen-gu-0.7.0-4.el7.noarch.rpm
-rw-rw-r-- 1 root root     9400 Jul  3  2014 hyphen-hi-0.7.0-4.el7.noarch.rpm
-rw-rw-r-- 1 root root     7168 Jul  3  2014 hyphen-hr-0.20040608-10.el7.noarch.rpm
-rw-rw-r-- 1 root root     9304 Jul  3  2014 hyphen-hsb-0.20110620-5.el7.noarch.rpm
-rw-rw-r-- 1 root root   328184 Jul  3  2014 hyphen-hu-0.20090612-10.el7.noarch.rpm
-rw-rw-r-- 1 root root     7064 Jul  3  2014 hyphen-ia-0.20050628-7.el7.noarch.rpm
-rw-rw-r-- 1 root root    42956 Jul  3  2014 hyphen-id-0.20040812-8.el7.noarch.rpm
-rw-rw-r-- 1 root root    18228 Jul  3  2014 hyphen-is-0.20030920-10.el7.noarch.rpm
-rw-rw-r-- 1 root root     6556 Jul  3  2014 hyphen-it-0.20071127-10.el7.noarch.rpm
-rw-rw-r-- 1 root root     9424 Jul  3  2014 hyphen-kn-0.7.0-4.el7.noarch.rpm
-rw-rw-r-- 1 root root     6016 Jul  3  2014 hyphen-ku-1.71.2-6.el7.noarch.rpm
-rw-rw-r-- 1 root root    10188 Jul  3  2014 hyphen-lt-0.20100531-6.el7.noarch.rpm
-rw-rw-r-- 1 root root    44760 Jul  3  2014 hyphen-lv-0.9.4-5.el7.noarch.rpm
-rw-rw-r-- 1 root root     7096 Jul  3  2014 hyphen-mi-0.20080630-8.el7.noarch.rpm
-rw-rw-r-- 1 root root     9480 Jul  3  2014 hyphen-ml-0.7.0-4.el7.noarch.rpm
-rw-rw-r-- 1 root root     9456 Jul  3  2014 hyphen-mn-0.20100531-6.el7.noarch.rpm
-rw-rw-r-- 1 root root     9180 Jul  3  2014 hyphen-mr-0.7.0-4.el7.noarch.rpm
-rw-rw-r-- 1 root root    93496 Nov 20 13:15 hyphen-nb-2.0.10-1.el7.noarch.rpm
-rw-rw-r-- 1 root root    57648 Jul  3  2014 hyphen-nl-0.20050617-10.el7.noarch.rpm
-rw-rw-r-- 1 root root    93480 Nov 20 13:15 hyphen-nn-2.0.10-1.el7.noarch.rpm
-rw-rw-r-- 1 root root     9488 Jul  3  2014 hyphen-or-0.7.0-5.el7.noarch.rpm
-rw-rw-r-- 1 root root     9504 Jul  3  2014 hyphen-pa-0.7.0-4.el7.noarch.rpm
-rw-rw-r-- 1 root root    16504 Jul  3  2014 hyphen-pl-0.20060726-9.el7.noarch.rpm
-rw-rw-r-- 1 root root     5792 Jul  3  2014 hyphen-pt-0.20021021-9.el7.noarch.rpm
-rw-rw-r-- 1 root root    14668 Jul  3  2014 hyphen-ro-3.3.6-6.el7.noarch.rpm
-rw-rw-r-- 1 root root    13536 Jul  3  2014 hyphen-ru-0.20020727-9.el7.noarch.rpm
-rw-rw-r-- 1 root root     6768 Jul  3  2014 hyphen-sa-0.20110915-5.el7.noarch.rpm
-rw-rw-r-- 1 root root    10908 Jul  3  2014 hyphen-sk-0.20031227-10.el7.noarch.rpm
-rw-rw-r-- 1 root root     8376 Jul  3  2014 hyphen-sl-0.20070127-8.el7.noarch.rpm
-rw-rw-r-- 1 root root    36288 Jul  3  2014 hyphen-sr-0.20100920-7.el7.noarch.rpm
-rw-rw-r-- 1 root root    36060 Jul  3  2014 hyphen-sv-1.00.1-10.el7.noarch.rpm
-rw-rw-r-- 1 root root     9380 Jul  3  2014 hyphen-ta-0.7.0-4.el7.noarch.rpm
-rw-rw-r-- 1 root root     9400 Jul  3  2014 hyphen-te-0.7.0-4.el7.noarch.rpm
-rw-rw-r-- 1 root root     7328 Jul  3  2014 hyphen-tk-0.20110620-5.el7.noarch.rpm
-rw-rw-r-- 1 root root    10316 Jul  3  2014 hyphen-uk-0.20030903-8.el7.noarch.rpm
-rw-rw-r-- 1 root root    15568 Jul  3  2014 hyphen-zu-0-0.9.20080714svn.el7.noarch.rpm
-rw-rw-r-- 1 root root    71012 Jul  3  2014 i2c-tools-3.1.0-10.el7.x86_64.rpm
-rw-rw-r-- 1 root root    84068 Nov 20 13:15 ibacm-1.2.0-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root   337004 Nov 25  2015 ibus-1.5.3-13.el7.x86_64.rpm
-rw-rw-r-- 1 root root    90440 Mar 14  2015 ibus-chewing-1.4.4-14.el7.x86_64.rpm
-rw-rw-r-- 1 root root    43888 Nov 25  2015 ibus-gtk2-1.5.3-13.el7.x86_64.rpm
-rw-rw-r-- 1 root root    43724 Nov 25  2015 ibus-gtk3-1.5.3-13.el7.x86_64.rpm
-rw-rw-r-- 1 root root    67848 Dec  1  2014 ibus-hangul-1.4.2-10.el7.x86_64.rpm
-rw-rw-r-- 1 root root    74684 Nov 20 13:16 ibus-kkc-1.5.18-7.el7.x86_64.rpm
-rw-rw-r-- 1 root root   721144 Jul  3  2014 ibus-libpinyin-1.6.91-4.el7.x86_64.rpm
-rw-rw-r-- 1 root root   211672 Nov 25  2015 ibus-libs-1.5.3-13.el7.x86_64.rpm
-rw-rw-r-- 1 root root    60768 Jul  3  2014 ibus-m17n-1.3.4-13.el7.x86_64.rpm
-rw-rw-r-- 1 root root   142012 Jul  3  2014 ibus-qt-1.3.2-4.el7.x86_64.rpm
-rw-rw-r-- 1 root root    23276 Jul  3  2014 ibus-rawcode-1.3.2-3.el7.x86_64.rpm
-rw-rw-r-- 1 root root    22080 Jul  3  2014 ibus-sayura-1.3.2-3.el7.x86_64.rpm
-rw-rw-r-- 1 root root    68532 Nov 25  2015 ibus-setup-1.5.3-13.el7.noarch.rpm
-rw-rw-r-- 1 root root   304328 Jul  3  2014 ibus-table-1.5.0-5.el7.noarch.rpm
-rw-rw-r-- 1 root root    21540 Jul  3  2014 ibus-table-chinese-1.4.6-3.el7.noarch.rpm
-rw-rw-r-- 1 root root   130884 Jul  3  2014 ibus-typing-booster-1.2.3-4.el7.noarch.rpm
-rw-rw-r-- 1 root root  1125916 Nov 20 13:16 ibutils-1.5.7-13.el7.x86_64.rpm
-rw-rw-r-- 1 root root   706740 Nov 20 13:16 ibutils-libs-1.5.7-13.el7.x86_64.rpm
-rw-rw-r-- 1 root root   141016 Nov 25  2015 icedax-1.1.11-23.el7.x86_64.rpm
-rw-rw-r-- 1 root root  1657664 Nov 20 13:16 icedtea-web-1.6.2-4.el7.x86_64.rpm
-rw-rw-r-- 1 root root    83788 Jul  3  2014 icoutils-0.31.0-3.el7.x86_64.rpm
-rw-rw-r-- 1 root root   102436 Jul  3  2014 ilmbase-1.0.3-7.el7.x86_64.rpm
-rw-rw-r-- 1 root root  2226028 Jun 16  2016 ImageMagick-6.7.8.9-15.el7_2.x86_64.rpm
-rw-rw-r-- 1 root root   148960 Jun 16  2016 ImageMagick-c++-6.7.8.9-15.el7_2.x86_64.rpm
-rw-rw-r-- 1 root root   150992 Jun 16  2016 ImageMagick-perl-6.7.8.9-15.el7_2.x86_64.rpm
-rw-rw-r-- 1 root root   268084 Jul  3  2014 imake-1.0.5-10.el7.x86_64.rpm
-rw-rw-r-- 1 root root    25764 Jul  3  2014 im-chooser-1.6.4-4.el7.x86_64.rpm
-rw-rw-r-- 1 root root   234616 Jul  3  2014 im-chooser-common-1.6.4-4.el7.x86_64.rpm
-rw-rw-r-- 1 root root   211360 Jul  3  2014 imsettings-1.6.3-9.el7.x86_64.rpm
-rw-rw-r-- 1 root root   103936 Jul  3  2014 imsettings-gsettings-1.6.3-9.el7.x86_64.rpm
-rw-rw-r-- 1 root root   114376 Jul  3  2014 imsettings-libs-1.6.3-9.el7.x86_64.rpm
-rw-rw-r-- 1 root root   104256 Jul  3  2014 imsettings-qt-1.6.3-9.el7.x86_64.rpm
-rw-rw-r-- 1 root root   153384 Jul  3  2014 indent-2.2.11-13.el7.x86_64.rpm
-rw-rw-r-- 1 root root   322256 Nov 25  2015 infiniband-diags-1.6.5-3.el7.x86_64.rpm
-rw-rw-r-- 1 root root   189804 Nov 20 13:16 infinipath-psm-3.3-22_g4abbc60_open.2.el7.x86_64.rpm
-rw-rw-r-- 1 root root   238328 Jul  3  2014 info-5.1-4.el7.x86_64.rpm
-rw-rw-r-- 1 root root    14064 Jul  3  2014 iniparser-3.1-5.el7.x86_64.rpm
-rw-rw-r-- 1 root root    88888 Nov 29 10:27 initial-setup-0.3.9.36-1.el7.centos.x86_64.rpm
-rw-rw-r-- 1 root root    27040 Nov 29 10:27 initial-setup-gui-0.3.9.36-1.el7.centos.x86_64.rpm
-rw-rw-r-- 1 root root   441596 Nov 20 13:16 initscripts-9.49.37-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root 10850976 Nov 20 13:17 inkscape-0.91-2.el7.x86_64.rpm
-rw-rw-r-- 1 root root    60752 Jul  3  2014 intltool-0.50.2-6.el7.noarch.rpm
-rw-rw-r-- 1 root root   119696 Jul  3  2014 iok-2.1.3-6.el7.x86_64.rpm
-rw-rw-r-- 1 root root    53440 Jul  3  2014 iotop-0.6-2.el7.noarch.rpm
-rw-rw-r-- 1 root root    44724 Jul  3  2014 iowatcher-1.0-6.el7.x86_64.rpm
-rw-rw-r-- 1 root root   121592 Nov 20 13:17 ipa-admintools-4.4.0-12.el7.centos.noarch.rpm
-rw-rw-r-- 1 root root   231344 Nov 20 13:17 ipa-client-4.4.0-12.el7.centos.x86_64.rpm
-rw-rw-r-- 1 root root   122412 Nov 20 13:17 ipa-client-common-4.4.0-12.el7.centos.noarch.rpm
-rw-rw-r-- 1 root root   447744 Nov 20 13:17 ipa-common-4.4.0-12.el7.centos.noarch.rpm
-rw-rw-r-- 1 root root  3692636 Jul  3  2014 ipa-gothic-fonts-003.03-5.el7.noarch.rpm
-rw-rw-r-- 1 root root  5085516 Jul  3  2014 ipa-mincho-fonts-003.03-5.el7.noarch.rpm
-rw-rw-r-- 1 root root  3692328 Jul  3  2014 ipa-pgothic-fonts-003.03-5.el7.noarch.rpm
-rw-rw-r-- 1 root root  5085744 Jul  3  2014 ipa-pmincho-fonts-003.03-5.el7.noarch.rpm
-rw-rw-r-- 1 root root   443428 Nov 20 13:17 ipa-server-4.4.0-12.el7.centos.x86_64.rpm
-rw-rw-r-- 1 root root   631684 Nov 20 13:17 ipa-server-common-4.4.0-12.el7.centos.noarch.rpm
-rw-rw-r-- 1 root root   120408 Nov 20 13:17 ipa-server-dns-4.4.0-12.el7.centos.noarch.rpm
-rw-rw-r-- 1 root root   206296 Nov 20 13:17 ipa-server-trust-ad-4.4.0-12.el7.centos.x86_64.rpm
-rw-rw-r-- 1 root root   410800 Nov 20 13:18 ipmitool-1.8.15-7.el7.x86_64.rpm
-rw-rw-r-- 1 root root   632384 Nov 20 13:18 iproute-3.10.0-74.el7.x86_64.rpm
-rw-rw-r-- 1 root root   248424 Nov 20 13:18 iprutils-2.4.13.1-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root    37464 Nov 20 13:18 ipset-6.19-6.el7.x86_64.rpm
-rw-rw-r-- 1 root root    47800 Nov 20 13:18 ipset-libs-6.19-6.el7.x86_64.rpm
-rw-rw-r-- 1 root root   436556 Nov 20 13:18 iptables-1.4.21-17.el7.x86_64.rpm
-rw-rw-r-- 1 root root    55304 Nov 20 13:19 iptables-devel-1.4.21-17.el7.x86_64.rpm
-rw-rw-r-- 1 root root    51376 Nov 20 13:19 iptables-services-1.4.21-17.el7.x86_64.rpm
-rw-rw-r-- 1 root root   307752 Nov 20 13:19 iptraf-ng-1.1.4-6.el7.x86_64.rpm
-rw-rw-r-- 1 root root    45296 Jul  3  2014 iptstate-2.2.5-4.el7.x86_64.rpm
-rw-rw-r-- 1 root root   150548 Nov 20 13:19 iputils-20160308-8.el7.x86_64.rpm
-rw-rw-r-- 1 root root    45760 Mar 14  2015 ipvsadm-1.27-7.el7.x86_64.rpm
-rw-rw-r-- 1 root root   708460 Nov 20 13:19 ipxe-roms-qemu-20160127-5.git6366fa7a.el7.noarch.rpm
-rw-rw-r-- 1 root root    45056 Nov 20 13:19 irqbalance-1.0.7-6.el7.x86_64.rpm
-rw-rw-r-- 1 root root   715716 Jul  3  2014 irssi-0.8.15-16.el7.x86_64.rpm
-rw-rw-r-- 1 root root   427228 Nov 20 13:19 iscsi-initiator-utils-6.2.0.873-35.el7.x86_64.rpm
-rw-rw-r-- 1 root root    86948 Nov 20 13:20 iscsi-initiator-utils-iscsiuio-6.2.0.873-35.el7.x86_64.rpm
-rw-rw-r-- 1 root root  1454564 Nov 20 13:20 isdn4k-utils-3.2-99.el7.x86_64.rpm
-rw-rw-r-- 1 root root   189532 Jul  3  2014 isns-utils-0.93-7.el7.x86_64.rpm
-rw-rw-r-- 1 root root  2812132 Jul  3  2014 iso-codes-3.46-2.el7.noarch.rpm
-rw-rw-r-- 1 root root    27716 Nov 25  2015 isomd5sum-1.0.10-5.el7.x86_64.rpm
-rw-rw-r-- 1 root root    76896 Jul  3  2014 isorelax-0-0.15.release20050331.el7.noarch.rpm
-rw-rw-r-- 1 root root   102512 Jul  3  2014 istack-commons-2.17-4.el7.noarch.rpm
-rw-rw-r-- 1 root root   108756 Jul  3  2014 ivtv-firmware-20080701-26.el7.noarch.rpm
-rw-rw-r-- 1 root root    71708 Nov 20 13:20 iw-4.3-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root   218024 Nov 20 13:20 iwl1000-firmware-39.31.5.1-49.el7.noarch.rpm
-rw-rw-r-- 1 root root   153140 Nov 20 13:20 iwl100-firmware-39.31.5.1-49.el7.noarch.rpm
-rw-rw-r-- 1 root root   239480 Nov 20 13:21 iwl105-firmware-18.168.6.1-49.el7.noarch.rpm
-rw-rw-r-- 1 root root   248748 Nov 20 13:21 iwl135-firmware-18.168.6.1-49.el7.noarch.rpm
-rw-rw-r-- 1 root root   242108 Nov 20 13:21 iwl2000-firmware-18.168.6.1-49.el7.noarch.rpm
-rw-rw-r-- 1 root root   251108 Nov 20 13:21 iwl2030-firmware-18.168.6.1-49.el7.noarch.rpm
-rw-rw-r-- 1 root root  1431000 Nov 20 13:21 iwl3160-firmware-22.0.7.0-49.el7.noarch.rpm
-rw-rw-r-- 1 root root    89820 Nov 20 13:21 iwl3945-firmware-15.32.2.9-49.el7.noarch.rpm
-rw-rw-r-- 1 root root   103512 Nov 20 13:21 iwl4965-firmware-228.61.2.24-49.el7.noarch.rpm
-rw-rw-r-- 1 root root   300828 Nov 20 13:21 iwl5000-firmware-8.83.5.1_1-49.el7.noarch.rpm
-rw-rw-r-- 1 root root   149756 Nov 20 13:21 iwl5150-firmware-8.24.2.2-49.el7.noarch.rpm
-rw-rw-r-- 1 root root   170488 Nov 20 13:21 iwl6000-firmware-9.221.4.1-49.el7.noarch.rpm
-rw-rw-r-- 1 root root   316712 Nov 20 13:21 iwl6000g2a-firmware-17.168.5.3-49.el7.noarch.rpm
-rw-rw-r-- 1 root root   317228 Nov 20 13:21 iwl6000g2b-firmware-17.168.5.2-49.el7.noarch.rpm
-rw-rw-r-- 1 root root   248080 Nov 20 13:21 iwl6050-firmware-41.28.5.1-49.el7.noarch.rpm
-rw-rw-r-- 1 root root  1186464 Nov 20 13:22 iwl7260-firmware-22.0.7.0-49.el7.noarch.rpm
-rw-rw-r-- 1 root root  3001284 Nov 20 13:22 iwl7265-firmware-22.0.7.0-49.el7.noarch.rpm
-rw-rw-r-- 1 root root    30416 Nov 20 13:22 iwpmd-1.0.6-2.el7.x86_64.rpm
-rw-rw-r-- 1 root root  1024752 Jul  3  2014 jackson-1.9.4-7.el7.noarch.rpm
-rw-rw-r-- 1 root root   246844 Sep  8  2014 jakarta-commons-httpclient-3.1-16.el7_0.noarch.rpm
-rw-rw-r-- 1 root root    79868 Jul  3  2014 jakarta-oro-2.0.8-16.el7.noarch.rpm
-rw-rw-r-- 1 root root   310536 Sep  1  2015 jakarta-taglibs-standard-1.1.2-14.el7_1.noarch.rpm
-rw-rw-r-- 1 root root    32776 Jul  3  2014 jansson-2.4-6.el7.x86_64.rpm
-rw-rw-r-- 1 root root   152152 Nov 25  2015 jasper-libs-1.900.1-29.el7.x86_64.rpm
-rw-rw-r-- 1 root root 43887572 Nov 20 13:22 java-1.6.0-openjdk-1.6.0.40-1.13.12.9.el7.x86_64.rpm
-rw-rw-r-- 1 root root 15224472 Nov 20 13:22 java-1.6.0-openjdk-devel-1.6.0.40-1.13.12.9.el7.x86_64.rpm
-rw-rw-r-- 1 root root   234580 Nov 20 13:23 java-1.7.0-openjdk-1.7.0.111-2.6.7.8.el7.x86_64.rpm
-rw-rw-r-- 1 root root  9565520 Nov 20 13:23 java-1.7.0-openjdk-devel-1.7.0.111-2.6.7.8.el7.x86_64.rpm
-rw-rw-r-- 1 root root 26564432 Nov 20 13:23 java-1.7.0-openjdk-headless-1.7.0.111-2.6.7.8.el7.x86_64.rpm
-rw-rw-r-- 1 root root   235540 Nov 20 13:24 java-1.8.0-openjdk-1.8.0.102-4.b14.el7.x86_64.rpm
-rw-rw-r-- 1 root root 10136284 Nov 20 13:24 java-1.8.0-openjdk-devel-1.8.0.102-4.b14.el7.x86_64.rpm
-rw-rw-r-- 1 root root 32820276 Nov 20 13:25 java-1.8.0-openjdk-headless-1.8.0.102-4.b14.el7.x86_64.rpm
-rw-rw-r-- 1 root root    72308 Jul  3  2014 java-atk-wrapper-0.30.4-5.el7.x86_64.rpm
-rw-rw-r-- 1 root root   776092 Jul  3  2014 javamail-1.4.6-8.el7.noarch.rpm
-rw-rw-r-- 1 root root    74556 Nov 25  2015 javapackages-tools-3.4.1-11.el7.noarch.rpm
-rw-rw-r-- 1 root root   641712 Jul  3  2014 javassist-3.16.1-10.el7.noarch.rpm
-rw-rw-r-- 1 root root   208448 Jul  3  2014 jaxen-1.1.3-11.el7.noarch.rpm
-rw-rw-r-- 1 root root    47560 Jul  3  2014 jbigkit-libs-2.0-11.el7.x86_64.rpm
-rw-rw-r-- 1 root root    20500 Jul  3  2014 jboss-annotations-1.1-api-1.0.1-0.6.20120212git76e1a2.el7.noarch.rpm
-rw-rw-r-- 1 root root   177956 Jul  3  2014 jdom-1.1.3-6.el7.noarch.rpm
-rw-rw-r-- 1 root root    82868 Jul  3  2014 jettison-1.3.3-4.el7.noarch.rpm
-rw-rw-r-- 1 root root   625600 Jul  3  2014 jing-20091111-14.el7.noarch.rpm
-rw-rw-r-- 1 root root    70388 Jul  3  2014 jline-1.0-8.el7.noarch.rpm
-rw-rw-r-- 1 root root   303748 Jul  3  2014 jna-3.5.2-8.el7.x86_64.rpm
-rw-rw-r-- 1 root root    46652 Jul  3  2014 joda-convert-1.3-5.el7.noarch.rpm
-rw-rw-r-- 1 root root   495276 Jul  3  2014 joda-time-2.2-3.tzdata2013c.el7.noarch.rpm
-rw-rw-r-- 1 root root   546464 Jul  3  2014 jomolhari-fonts-0.003-17.el7.noarch.rpm
-rw-rw-r-- 1 root root  2411856 Nov 25  2015 js-1.8.5-19.el7.x86_64.rpm
-rw-rw-r-- 1 root root    31312 Jul  5  2014 json-c-0.11-4.el7_0.x86_64.rpm
-rw-rw-r-- 1 root root   126360 Nov 25  2015 json-glib-1.0.2-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root    95436 Nov 25  2015 json-glib-devel-1.0.2-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root    46324 Jul  3  2014 jsr-311-1.1.1-6.el7.noarch.rpm
-rw-rw-r-- 1 root root   722948 Nov 20 13:26 jss-4.2.6-42.el7.x86_64.rpm
-rw-rw-r-- 1 root root   267284 Jul  3  2014 junit-4.11-8.el7.noarch.rpm
-rw-rw-r-- 1 root root    10504 Jul  3  2014 jvnet-parent-4-2.el7.noarch.rpm
-rw-rw-r-- 1 root root  1365508 Jul  3  2014 k3b-2.0.2-17.el7.x86_64.rpm
-rw-rw-r-- 1 root root  7077540 Jul  3  2014 k3b-common-2.0.2-17.el7.noarch.rpm
-rw-rw-r-- 1 root root  1269224 Jul  3  2014 k3b-libs-2.0.2-17.el7.x86_64.rpm
-rw-rw-r-- 1 root root     8056 Mar 14  2015 kabi-yum-plugins-1.0-3.el7.centos.noarch.rpm
-rw-rw-r-- 1 root root    40884 Jul  3  2014 kaccessible-4.10.5-3.el7.x86_64.rpm
-rw-rw-r-- 1 root root    20920 Jul  3  2014 kaccessible-libs-4.10.5-3.el7.x86_64.rpm
-rw-rw-r-- 1 root root    49836 Jul  3  2014 kacst-art-fonts-2.0-12.el7.noarch.rpm
-rw-rw-r-- 1 root root    60600 Jul  3  2014 kacst-book-fonts-2.0-12.el7.noarch.rpm
-rw-rw-r-- 1 root root    50312 Jul  3  2014 kacst-decorative-fonts-2.0-12.el7.noarch.rpm
-rw-rw-r-- 1 root root    45004 Jul  3  2014 kacst-digital-fonts-2.0-12.el7.noarch.rpm
-rw-rw-r-- 1 root root    53840 Jul  3  2014 kacst-farsi-fonts-2.0-12.el7.noarch.rpm
-rw-rw-r-- 1 root root    12792 Jul  3  2014 kacst-fonts-common-2.0-12.el7.noarch.rpm
-rw-rw-r-- 1 root root    55776 Jul  3  2014 kacst-letter-fonts-2.0-12.el7.noarch.rpm
-rw-rw-r-- 1 root root    59056 Jul  3  2014 kacst-naskh-fonts-2.0-12.el7.noarch.rpm
-rw-rw-r-- 1 root root    62504 Jul  3  2014 kacst-office-fonts-2.0-12.el7.noarch.rpm
-rw-rw-r-- 1 root root    53208 Jul  3  2014 kacst-one-fonts-2.0-12.el7.noarch.rpm
-rw-rw-r-- 1 root root    53000 Jul  3  2014 kacst-pen-fonts-2.0-12.el7.noarch.rpm
-rw-rw-r-- 1 root root    46624 Jul  3  2014 kacst-poster-fonts-2.0-12.el7.noarch.rpm
-rw-rw-r-- 1 root root    63872 Jul  3  2014 kacst-qurn-fonts-2.0-12.el7.noarch.rpm
-rw-rw-r-- 1 root root    46680 Jul  3  2014 kacst-screen-fonts-2.0-12.el7.noarch.rpm
-rw-rw-r-- 1 root root    55376 Jul  3  2014 kacst-title-fonts-2.0-12.el7.noarch.rpm
-rw-rw-r-- 1 root root   100652 Jul  3  2014 kacst-titlel-fonts-2.0-12.el7.noarch.rpm
-rw-rw-r-- 1 root root   321532 Jul  3  2014 kactivities-4.10.5-3.el7.x86_64.rpm
-rw-rw-r-- 1 root root    64296 Jul  3  2014 kamera-4.10.5-3.el7.x86_64.rpm
-rw-rw-r-- 1 root root  1672308 Nov 20 13:27 kate-part-4.10.5-4.el7.x86_64.rpm
-rw-rw-r-- 1 root root   353852 Nov 20 13:27 kbd-1.15.5-12.el7.x86_64.rpm
-rw-rw-r-- 1 root root   476304 Nov 20 13:27 kbd-legacy-1.15.5-12.el7.noarch.rpm
-rw-rw-r-- 1 root root  1436480 Nov 20 13:27 kbd-misc-1.15.5-12.el7.noarch.rpm
-rw-rw-r-- 1 root root   179548 Jul  3  2014 kcalc-4.10.5-4.el7.x86_64.rpm
-rw-rw-r-- 1 root root    95088 Jul  3  2014 kcharselect-4.10.5-3.el7.x86_64.rpm
-rw-rw-r-- 1 root root   148912 Nov 20 13:27 kcm_colors-4.11.19-8.el7.x86_64.rpm
-rw-rw-r-- 1 root root    54908 Jul  3  2014 kcm-gtk-0.5.3-14.el7.x86_64.rpm
-rw-rw-r-- 1 root root    48336 Jul  3  2014 kcm_touchpad-0.3.1-11.el7.x86_64.rpm
-rw-rw-r-- 1 root root    15240 Jul  3  2014 kcolorchooser-4.10.5-3.el7.x86_64.rpm
-rw-rw-r-- 1 root root   285908 Jul  3  2014 kcoloredit-4.4.0-9.el7.x86_64.rpm
-rw-rw-r-- 1 root root  3594020 Jul  3  2014 kde-baseapps-4.10.5-4.el7.x86_64.rpm
-rw-rw-r-- 1 root root   429612 Jul  3  2014 kde-baseapps-libs-4.10.5-4.el7.x86_64.rpm
-rw-rw-r-- 1 root root  7435908 Jul  3  2014 kde-base-artwork-4.10.5-2.el7.noarch.rpm
-rw-rw-r-- 1 root root    49424 Jul  3  2014 kde-filesystem-4-47.el7.x86_64.rpm
-rw-rw-r-- 1 root root    13040 Jul  3  2014 kde-l10n-4.10.5-2.el7.noarch.rpm
-rw-rw-r-- 1 root root  2408732 Jul  3  2014 kde-l10n-Arabic-4.10.5-2.el7.noarch.rpm
-rw-rw-r-- 1 root root  1840980 Jul  3  2014 kde-l10n-Basque-4.10.5-2.el7.noarch.rpm
-rw-rw-r-- 1 root root  2768160 Jul  3  2014 kde-l10n-Bosnian-4.10.5-2.el7.noarch.rpm
-rw-rw-r-- 1 root root 29062788 Jul  3  2014 kde-l10n-Brazil-4.10.5-2.el7.noarch.rpm
-rw-rw-r-- 1 root root  2760540 Jul  3  2014 kde-l10n-British-4.10.5-2.el7.noarch.rpm
-rw-rw-r-- 1 root root  1409288 Jul  3  2014 kde-l10n-Bulgarian-4.10.5-2.el7.noarch.rpm
-rw-rw-r-- 1 root root 13533788 Jul  3  2014 kde-l10n-Catalan-4.10.5-2.el7.noarch.rpm
-rw-rw-r-- 1 root root  2662648 Jul  3  2014 kde-l10n-Catalan-Valencian-4.10.5-2.el7.noarch.rpm
-rw-rw-r-- 1 root root  3639768 Jul  3  2014 kde-l10n-Chinese-4.10.5-2.el7.noarch.rpm
-rw-rw-r-- 1 root root  2685912 Jul  3  2014 kde-l10n-Chinese-Traditional-4.10.5-2.el7.noarch.rpm
-rw-rw-r-- 1 root root  1099292 Jul  3  2014 kde-l10n-Croatian-4.10.5-2.el7.noarch.rpm
-rw-rw-r-- 1 root root  3227292 Jul  3  2014 kde-l10n-Czech-4.10.5-2.el7.noarch.rpm
-rw-rw-r-- 1 root root 13025968 Jul  3  2014 kde-l10n-Danish-4.10.5-2.el7.noarch.rpm
-rw-rw-r-- 1 root root 16343640 Jul  3  2014 kde-l10n-Dutch-4.10.5-2.el7.noarch.rpm
-rw-rw-r-- 1 root root  8002780 Jul  3  2014 kde-l10n-Estonian-4.10.5-2.el7.noarch.rpm
-rw-rw-r-- 1 root root  1068676 Jul  3  2014 kde-l10n-Farsi-4.10.5-2.el7.noarch.rpm
-rw-rw-r-- 1 root root  2651688 Jul  3  2014 kde-l10n-Finnish-4.10.5-2.el7.noarch.rpm
-rw-rw-r-- 1 root root   255992 Jul  3  2014 LibRaw-0.14.8-5.el7.20120830git98d925.x86_64.rpm
-rw-rw-r-- 1 root root   774656 Nov 20 14:29 ModemManager-1.6.0-2.el7.x86_64.rpm
-rw-rw-r-- 1 root root   237316 Nov 20 14:29 ModemManager-glib-1.6.0-2.el7.x86_64.rpm
-rw-rw-r-- 1 root root    91880 Nov 20 14:35 MySQL-python-1.2.5-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root  2655396 Nov 20 14:36 NetworkManager-1.4.0-12.el7.x86_64.rpm
-rw-rw-r-- 1 root root   147956 Nov 20 14:37 NetworkManager-adsl-1.4.0-12.el7.x86_64.rpm
-rw-rw-r-- 1 root root   168144 Nov 20 14:37 NetworkManager-bluetooth-1.4.0-12.el7.x86_64.rpm
-rw-rw-r-- 1 root root   393348 Nov 20 14:37 NetworkManager-glib-1.4.0-12.el7.x86_64.rpm
-rw-rw-r-- 1 root root   452280 Nov 20 14:37 NetworkManager-libnm-1.4.0-12.el7.x86_64.rpm
-rw-rw-r-- 1 root root   113888 Nov 20 14:38 NetworkManager-libreswan-1.2.4-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root    36524 Nov 20 14:38 NetworkManager-libreswan-gnome-1.2.4-1.el7.x86_64.rpm
-rw-rw-r-- 1 root root   149432 Nov 20 14:38 NetworkManager-team-1.4.0-12.el7.x86_64.rpm
-rw-rw-r-- 1 root root   227508 Nov 20 14:38 NetworkManager-tui-1.4.0-12.el7.x86_64.rpm
-rw-rw-r-- 1 root root   178776 Nov 20 14:38 NetworkManager-wifi-1.4.0-12.el7.x86_64.rpm
-rw-rw-r-- 1 root root   171860 Nov 20 14:38 NetworkManager-wwan-1.4.0-12.el7.x86_64.rpm
-rw-rw-r-- 1 root root   222384 Jul  4  2014 OpenEXR-libs-1.7.1-7.el7.x86_64.rpm
-rw-rw-r-- 1 root root   176988 Nov 20 14:43 OpenIPMI-2.0.19-15.el7.x86_64.rpm
-rw-rw-r-- 1 root root   513864 Nov 20 14:43 OpenIPMI-libs-2.0.19-15.el7.x86_64.rpm
-rw-rw-r-- 1 root root    15440 Nov 20 14:43 OpenIPMI-modalias-2.0.19-15.el7.x86_64.rpm
-rw-rw-r-- 1 root root   179756 Jul  4  2014 ORBit2-2.14.19-13.el7.x86_64.rpm
-rw-rw-r-- 1 root root   596264 Nov 20 14:51 PackageKit-1.0.7-6.el7.centos.x86_64.rpm
-rw-rw-r-- 1 root root    20416 Nov 20 14:51 PackageKit-command-not-found-1.0.7-6.el7.centos.x86_64.rpm
-rw-rw-r-- 1 root root   126536 Nov 20 14:51 PackageKit-glib-1.0.7-6.el7.centos.x86_64.rpm
-rw-rw-r-- 1 root root    11956 Nov 20 14:52 PackageKit-gstreamer-plugin-1.0.7-6.el7.centos.x86_64.rpm
-rw-rw-r-- 1 root root    12488 Nov 20 14:52 PackageKit-gtk3-module-1.0.7-6.el7.centos.x86_64.rpm
-rw-rw-r-- 1 root root    76872 Nov 20 14:52 PackageKit-yum-1.0.7-6.el7.centos.x86_64.rpm
-rw-rw-r-- 1 root root    75292 Jul  4  2014 PyGreSQL-4.0-9.el7.x86_64.rpm
-rw-rw-r-- 1 root root    25732 Jul  4  2014 PyPAM-0.5.0-19.el7.x86_64.rpm
-rw-rw-r-- 1 root root  3077616 Jul  4  2014 PyQt4-4.10.1-13.el7.x86_64.rpm
-rw-rw-r-- 1 root root  9474796 Jul  4  2014 PyQt4-devel-4.10.1-13.el7.x86_64.rpm
-rw-rw-r-- 1 root root   156952 Jul  4  2014 PyYAML-3.10-11.el7.x86_64.rpm
-rw-rw-r-- 1 root root   209280 Nov 25  2015 SDL-1.2.15-14.el7.x86_64.rpm
-rw-rw-r-- 1 root root   363300 Nov 25  2015 SDL-devel-1.2.15-14.el7.x86_64.rpm

I don't see the squid package.

Joe Kaiser

unread,
Mar 2, 2017, 3:57:21 PM3/2/17
to sta...@googlegroups.com
Okay, did you do a yum update on the frontend?

check to see if there are CentOS*repo in /etc/yum.repos.d/. If there are, remove them, the only one should be stacki.repo.

Do an md5sum on the ISO you downloaded. Make sure it matches what's published. 

Thanks,

Joe


To unsubscribe from this group and stop receiving emails from it, send an email to stacki+unsubscribe@googlegroups.com.

jkinning

unread,
Mar 3, 2017, 8:07:12 AM3/3/17
to stacki
From the mirror.beyondhosting.net CentOS mirror
c455ee948e872ad2194bdddd39045b83634e8613249182b88f549bb2319d97eb  CentOS-7-x86_64-DVD-1611.iso

From the Stacki frontend
[root@vmjkcentstackifl1t export]# sha256sum -b CentOS-7-x86_64-DVD-1611.iso
c455ee948e872ad2194bdddd39045b83634e8613249182b88f549bb2319d97eb *CentOS-7-x86_64-DVD-1611.iso

I did the following:
stack remove pallet BaseOS
rm the CentOS DVD media and then added it back from the newly, validated iso above.
rm the old directory in /export/stack/pallets/BaseOS
ran stack add pallet CentOS-7-x86_64-DVD-1611.iso and still got same message and looks like the same amount of packages. No squid.
Copying "BaseOS" (7,x86_64) pallet ...
rsync: writefd_unbuffered failed to write 4 bytes to socket [sender]: Broken pipe (32)
rsync: connection unexpectedly closed (25373 bytes received so far) [sender]
rsync error: error in rsync protocol data stream (code 12) at io.c(605) [sender=3.0.9]

[root@vmjkcentstackifl1t export]# yum update
os-7.2                                                                   | 3.6 kB  00:00:00
site-custom-cart                                                         | 2.9 kB  00:00:00
stacki-3.2                                                               | 2.9 kB  00:00:00
(1/4): os-7.2/group_gz                                                   | 157 kB  00:00:00
(2/4): os-7.2/primary_db                                                 | 937 kB  00:00:00
(3/4): site-custom-cart/primary_db                                       | 5.8 kB  00:00:00
(4/4): stacki-3.2/primary_db                                             |  30 kB  00:00:00
No packages marked for update

[root@vmjkcentstackifl1t export]# ll /etc/yum.repos.d/
total 8
drwx------ 2 root root 4096 Feb 22 12:50 RCS
-rw-r--r-- 1 root root  309 Mar  3 07:21 stacki.repo
...

Joe Kaiser

unread,
Mar 3, 2017, 8:48:40 AM3/3/17
to stacki

Do a "df -h" and make sure your file system she aren't full.

I'll send a six for that add pallet command when I'm awake.


--

jkinning

unread,
Mar 3, 2017, 9:16:44 AM3/3/17
to stacki
No wonder why Stacki is so awesome... you are able to answer questions in your sleep. You should compete with Watson. :) 

Disk isn't full.
[root@vmjkcentstackifl1t nodes]# df -h
Filesystem      Size  Used Avail Use% Mounted on
/dev/sda2        16G  1.9G   13G  13% /
devtmpfs        911M     0  911M   0% /dev
tmpfs           921M     0  921M   0% /dev/shm
tmpfs           921M  8.5M  912M   1% /run
tmpfs           921M     0  921M   0% /sys/fs/cgroup
/dev/sda3        16G  265M   16G   2% /var
/dev/sda5       7.8G  7.8G   17M 100% /state/partition1
tmpfs           185M     0  185M   0% /run/user/0

Joe Kaiser

unread,
Mar 3, 2017, 10:08:33 AM3/3/17
to sta...@googlegroups.com
Okay, download this file and copy it to:

/opt/stack/lib/python2.6/site-packages/stack/commands/add/pallet

If it asks you to overwrite it, do so. Then try the "stack add pallet" command again. 

I have an electronic assistant so good it can send context sensitive emails. Too bad there's no business to be built around this.

Thanks,

Joe

--
You received this message because you are subscribed to the Google Groups "stacki" group.
To unsubscribe from this group and stop receiving emails from it, send an email to stacki+unsubscribe@googlegroups.com.
imp_foreign_redhat.py

jkinning

unread,
Mar 3, 2017, 10:21:53 AM3/3/17
to stacki
Same thing but the pallet name is now CentOS and not BaseOS.

[root@vmjkcentstackifl1t export]# ll stack/pallets/
total 4
drwxr-xr-x 3 root root  14 Mar  3 10:15 CentOS
-rwxr-xr-x 1 root root 657 Feb 22 12:50 index.cgi
drwxr-xr-x 3 root root  16 Feb 22 12:41 os
drwxr-xr-x 3 root root  16 Feb 22 12:42 stacki

Packages still stop at the DSL-devel
To unsubscribe from this group and stop receiving emails from it, send an email to stacki+un...@googlegroups.com.
Capture.PNG

Joe Kaiser

unread,
Mar 3, 2017, 11:38:52 AM3/3/17
to sta...@googlegroups.com
reboot, retry. If it still fails, get the CentO Everything DVD and try that one.

I'm trying the dvd you posted above to see what I can see.


Thanks,

Joe


To unsubscribe from this group and stop receiving emails from it, send an email to stacki+unsubscribe@googlegroups.com.

jkinning

unread,
Mar 3, 2017, 1:28:45 PM3/3/17
to stacki
I didn't look close enough but it does appear that partition is out of space. Ugh!

[root@vmjkcentstackifl1t export]# df -h
Filesystem      Size  Used Avail Use% Mounted on
/dev/sda2        16G  1.9G   13G  13% /
devtmpfs        911M     0  911M   0% /dev
tmpfs           921M     0  921M   0% /dev/shm
tmpfs           921M  8.4M  912M   1% /run
tmpfs           921M     0  921M   0% /sys/fs/cgroup
/dev/sda5       7.8G  7.8G   48K 100% /state/partition1
/dev/sda3        16G  258M   16G   2% /var
tmpfs           185M     0  185M   0% /run/user/0

/dev/sda5 I'll have to spend some time figuring out how to increase this partition seeing I am used to SUSE and YaST. :)

jkinning

unread,
Mar 3, 2017, 1:47:03 PM3/3/17
to stacki
I removed the CentOS from the /export and moved it to /root and stack add pallet completed with no errors. Is there a way during the frontend installation I can make that partition larger? If I wanted a couple different distros RHEL 6 and 7 and Cent 6 and 7 probably wouldn't have enough space. Then again maybe I am misinterpreting the purpose of this area.

So I have that pallet enabled and the other disabled so I'll try to see if squid installs on my backend now.

[root@vmjkcentstackifl1t export]# mv CentOS-7-x86_64-DVD-1611.iso /root/
[root@vmjkcentstackifl1t export]# df -h
Filesystem      Size  Used Avail Use% Mounted on
/dev/sda2        16G  6.0G  8.6G  41% /
devtmpfs        911M     0  911M   0% /dev
tmpfs           921M     0  921M   0% /dev/shm
tmpfs           921M  8.4M  912M   1% /run
tmpfs           921M     0  921M   0% /sys/fs/cgroup
/dev/sda5       7.8G  3.7G  4.1G  48% /state/partition1
/dev/sda3        16G  258M   16G   2% /var
tmpfs           185M     0  185M   0% /run/user/0
[root@vmjkcentstackifl1t export]# stack add pallet /root/CentOS-7-x86_64-DVD-1611.iso
Copying "CentOS" (7,x86_64) pallet ...
[root@vmjkcentstackifl1t export]# df -h
Filesystem      Size  Used Avail Use% Mounted on
/dev/sda2        16G  6.0G  8.6G  41% /
devtmpfs        911M     0  911M   0% /dev
tmpfs           921M     0  921M   0% /dev/shm
tmpfs           921M  8.4M  912M   1% /run
tmpfs           921M     0  921M   0% /sys/fs/cgroup
/dev/sda5       7.8G  5.8G  2.1G  74% /state/partition1
/dev/sda3        16G  258M   16G   2% /var
tmpfs           185M     0  185M   0% /run/user/0
[root@vmjkcentstackifl1t export]# stack list pallet
NAME    VERSION RELEASE ARCH   OS     BOXES
os:     7.2     7.x     x86_64 redhat default
stacki: 3.2     7.x     x86_64 redhat default
CentOS: 7       ------- x86_64 redhat -------
[root@vmjkcentstackifl1t export]# stack enable pallet CentOS
Cleaning repos: CentOS-7 os-7.2 site-custom-cart stacki-3.2
Cleaning up everything
[root@vmjkcentstackifl1t export]# stack disable pallet os
Cleaning repos: CentOS-7 site-custom-cart stacki-3.2
Cleaning up everything
[root@vmjkcentstackifl1t export]# stack list pallet
NAME    VERSION RELEASE ARCH   OS     BOXES
os:     7.2     7.x     x86_64 redhat -------
stacki: 3.2     7.x     x86_64 redhat default
CentOS: 7       ------- x86_64 redhat default

jkinning

unread,
Mar 3, 2017, 3:43:27 PM3/3/17
to stacki
Along with the previous question, how can I increase the /export partition on the frontend during an installation I have a few others. :)

Using the spreadsheets can I define the default gateway? Each District Office will have a different IP address, 3rd octect, and different default gateways. Can I define those in the spreadsheet?

Once a backend comes up if I want to fire off a script during startup/firstboot just once that is when I use something like we did for the dhcp_setup script?
<boot order="post">
</boot>
<boot order="post>
/root/some_other_script
</boot>

These will all run in order from top to bottom?

Joe Kaiser

unread,
Mar 3, 2017, 4:37:44 PM3/3/17
to sta...@googlegroups.com
By default the /state/partition1 (/export is a soft-link to this) is partitioned as "the rest of the disk." So it will be as big as whatever is left over after / /var and swap are created. If you chose autopartition, this is what happens. 

I usually do a minimum of 100G for my frontends, especially ones where I'm adding it. I dunno how to increase this on an already running VBox VM.

Thanks,

Joe


Joe Kaiser

unread,
Mar 3, 2017, 7:44:04 PM3/3/17
to sta...@googlegroups.com
On Fri, Mar 3, 2017 at 12:43 PM, jkinning <jkinn...@gmail.com> wrote:
Along with the previous question, how can I increase the /export partition on the frontend during an installation I have a few others. :)

Using the spreadsheets can I define the default gateway? Each District Office will have a different IP address, 3rd octect, and different default gateways. Can I define those in the spreadsheet?


default gateway is whatever is listed in the output of "stack list network" That should be your gateway. 

But since they're different, I'll have to think about how to do that, because if you give it a different gateway, it won't come up on your network after you install it. Let me think.

 
Once a backend comes up if I want to fire off a script during startup/firstboot just once that is when I use something like we did for the dhcp_setup script?

That's correct. Just does it once. 
 
<boot order="post">
</boot>
<boot order="post>
/root/some_other_script
</boot>

These will all run in order from top to bottom?


Yes, correct.

Thanks,

Joe

 

Joe Kaiser

unread,
Mar 9, 2017, 4:36:51 PM3/9/17
to sta...@googlegroups.com
Hi,

Did you have time to talk today? I am in flight tomorrow.

Thanks,

Joe

Jason Kinninger

unread,
Mar 9, 2017, 4:56:44 PM3/9/17
to sta...@googlegroups.com
No. I am not able to today.

What about early next week?

You received this message because you are subscribed to a topic in the Google Groups "stacki" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/stacki/0Jmzv-YoSo0/unsubscribe.
To unsubscribe from this group and all its topics, send an email to stacki+unsubscribe@googlegroups.com.

Joe Kaiser

unread,
Mar 9, 2017, 4:59:05 PM3/9/17
to sta...@googlegroups.com
Sounds good. I'll ping you on Monday.

jkinning

unread,
Mar 16, 2017, 9:07:58 AM3/16/17
to stacki

I attended the Configuration and Bootstrapping for CentOS with Stacki & Ansible Webinar yesterday and they showed this csv file. This file does use gateways and so for my situation, using Stacki to deploy the CentOS 7 image to several different Offices with different networks, gateways, etc do I have to use Ansible?

I tried to create a spreadsheet using this format, along with the other content, but when I load it and then install a backend the gateway doesn't change to what I have in the spreadsheet.

Just wondering if you have given this any additional thought.

Joe Kaiser

unread,
Mar 16, 2017, 9:33:12 AM3/16/17
to sta...@googlegroups.com
I am so sorry. I was meant to call you earlier this week. Do you have time today? If you can show me what you currently have on your desktop we could do a webex?

The ideas I have are not ideal, so if I can see what you're needing/expecting to do, I should be able to give better advice. 

I don't think you need to use ansible or something like it, at the moment I think this anyway.

Thanks,

Joe


--

Jason Kinninger

unread,
Mar 16, 2017, 9:45:13 AM3/16/17
to sta...@googlegroups.com
Sure, not sure your time zone but I am on Eastern. How does 1pm EST sound?

These CentOS 7 PCs will not need any X stuff. I just want to deploy a
minimal CentOS 7 with squid along with my IBM BigFix agents and
configurations. The problems I think I was going to have was each
location was on a different subnet which had a different gateway.
>> email to stacki+un...@googlegroups.com.
>> For more options, visit https://groups.google.com/d/optout.
>
>
> --
> You received this message because you are subscribed to a topic in the
> Google Groups "stacki" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/stacki/0Jmzv-YoSo0/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> stacki+un...@googlegroups.com.

Joe Kaiser

unread,
Mar 16, 2017, 9:49:06 AM3/16/17
to sta...@googlegroups.com
I'm in MST so that's good. I'll send a webex invite.

On Thu, Mar 16, 2017 at 7:44 AM, Jason Kinninger <jkinn...@gmail.com> wrote:
Sure, not sure your time zone but I am on Eastern. How does 1pm EST sound?

These CentOS 7 PCs will not need any X stuff. I just want to deploy a
minimal CentOS 7 with squid along with my IBM BigFix agents and
configurations. The problems I think I was going to have was each
location was on a different subnet which had a different gateway.


This is the trick. How to install a machine on one network when it will actually live on another one.

Thanks,

Joe
 

Kenneth Bingham

unread,
Mar 16, 2017, 2:32:26 PM3/16/17
to sta...@googlegroups.com
No, you don't have to use Ansible. The role to which you are referring
is a way that you could maintain all of your host, network, etc...
configuration details in an Ansible workspace and still use Stacki to
kickstart your target hosts if that's a better option for you then using
Stacki as a CMDB and cluster management tool.

That netsheet.csv file is an example of the format that the stack cli
expects as input to commands like `stack load networkfile
file=/var/tmp/netsheet.csv`.

Here's a little more information about loading information into Stacki
frontend's on-board database interactively rather than from a .csv as
demonstrated in that Ansible role "stacki-frontend". Host entities have
network interface entities that are associated with network entities.
So, you could use the cli to add a network, add a host, add a network
interface to that host that is associated with the new network.

All of this is done prior to kickstart. When you have described the
entities and their associations with the stack cli then you will set the
boot method from "os" to "install" for a particular host:

$ stack set host boot host001 action=install

or all hosts of appliance type "backend"

$ stack set host boot backend action=install

and the next PXE boot will kickstart.
> --
> You received this message because you are subscribed to the Google
> Groups "stacki" group.
> To unsubscribe from this group and stop receiving emails from it, send
> an email to stacki+un...@googlegroups.com
> <mailto:stacki+un...@googlegroups.com>.
signature.asc
Reply all
Reply to author
Forward
0 new messages