<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>zeusville</title>
	<atom:link href="http://zeusville.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://zeusville.wordpress.com</link>
	<description>Random thoughts about work and life.</description>
	<lastBuildDate>Fri, 27 Jan 2012 21:50:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='zeusville.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>zeusville</title>
		<link>http://zeusville.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://zeusville.wordpress.com/osd.xml" title="zeusville" />
	<atom:link rel='hub' href='http://zeusville.wordpress.com/?pushpress=hub'/>
		<item>
		<title>setting up vncserver on Fedora 16</title>
		<link>http://zeusville.wordpress.com/2012/01/27/setting-up-vncserver-on-fedora-16/</link>
		<comments>http://zeusville.wordpress.com/2012/01/27/setting-up-vncserver-on-fedora-16/#comments</comments>
		<pubDate>Fri, 27 Jan 2012 16:42:25 +0000</pubDate>
		<dc:creator>jmrodri</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://zeusville.wordpress.com/?p=1778</guid>
		<description><![CDATA[The change to systemd from SysVinit caused a bit of an issue for vncserver configuration. In the past I would edit /etc/sysconfig/vncservers , with systemd the process is quite different. For our example I will setup vncserver to have display :3 running at a resolution of 1600&#215;900. If you want a different number simply replace [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zeusville.wordpress.com&amp;blog=419120&amp;post=1778&amp;subd=zeusville&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The change to <a href="http://fedoraproject.org/wiki/Features/systemd">systemd</a> from SysVinit caused a bit of an issue for vncserver configuration. In the past I would edit
<pre>/etc/sysconfig/vncservers</pre>
<p>, with systemd the process is quite different.</p>
<p>For our example I will setup vncserver to have display :3 running at a resolution of 1600&#215;900. If you want a different number simply replace it with the number of choice.</p>
<pre>
sudo yum install tigervnc-server
sudo cp /lib/systemd/vncserver@.service /lib/systemd/vncserver@:3.service
</pre>
<p>Next you will need to edit the service file with the username you want vncserver to run under and any vnc options you want.</p>
<pre>sudo vi /lib/systemd/system/vncserver@:3.service</pre>
<p>The file will look something like this when you open it:</p>
<pre>
# comment redacted
[Unit]
Description=Remote desktop service (VNC)
After=syslog.target network.target

[Service]
Type=forking
ExecStart=/sbin/runuser -l  -c "/usr/bin/vncserver %i"
ExecStop=/sbin/runuser -l  -c "/usr/bin/vncserver -kill %i"

[Install]
WantedBy=multi-user.target
</pre>
<p>Change <code>&lt;USER&gt;</code> with the username you want to run vncserver under. For our case let&#8217;s use <code>kdr</code>. </p>
<p>Next add the vnc options you want after the %i. Since we want it to run at a resolution of 1600&#215;900 we will add <code>-geometry 1600x900</code>.</p>
<pre>
ExecStart=/sbin/runuser -l kdr -c "/usr/bin/vncserver %i -geometry 1600x900"
ExecStop=/sbin/runuser -l kdr -c "/usr/bin/vncserver -kill %i"
</pre>
<p>Save the file and enable the service:</p>
<pre>sudo systemctl enable vncserver@:3.service</pre>
<p>Now configure the password you want to use to connect to vnc. Run this<br />
as the user you setup in the *.service file above i.e. kdr.</p>
<pre>vncpasswd
Password:
Verify:
</pre>
<p>We now have vncserver setup with a username and a password, and enabled in the system. Two more things to check. First thing is verify you have the port open. The vnc display number will map to 5900 series of ports. Since we chose 3 vncserver will listen on port 5903. If you choose 1, it&#8217;ll be 5901, etc.</p>
<p>Let&#8217;s see if iptables is configured to listen to this port:</p>
<pre>sudo iptables --list | grep 5903
</pre>
<p>Nope, let&#8217;s update iptables:</p>
<pre>
sudo vi /etc/sysconfig/iptables
</pre>
<p>Add this to the file:</p>
<pre>-A INPUT -p tcp -m state --state NEW -m tcp --dport 5903 -j ACCEPT</pre>
<p>Save the file, then restart iptables and verify that the port is active.</p>
<pre>sudo systemctl restart iptables.service

sudo iptables --list | grep 5903
ACCEPT     tcp  --  anywhere             anywhere             state NEW tcp dpt:5903
</pre>
<p>Ok FINALLY we can start up vncserver.</p>
<pre>systemctl start vncserver@:3.service</pre>
<p>Test it out by connecting with <code>vncviewer host.example.com:3</code>.<br />
Enter the password you used for <code>vncpasswd</code>.</p>
<p><strong>ENJOY!</strong></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/zeusville.wordpress.com/1778/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/zeusville.wordpress.com/1778/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/zeusville.wordpress.com/1778/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/zeusville.wordpress.com/1778/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/zeusville.wordpress.com/1778/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/zeusville.wordpress.com/1778/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/zeusville.wordpress.com/1778/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/zeusville.wordpress.com/1778/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/zeusville.wordpress.com/1778/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/zeusville.wordpress.com/1778/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/zeusville.wordpress.com/1778/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/zeusville.wordpress.com/1778/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/zeusville.wordpress.com/1778/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/zeusville.wordpress.com/1778/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zeusville.wordpress.com&amp;blog=419120&amp;post=1778&amp;subd=zeusville&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://zeusville.wordpress.com/2012/01/27/setting-up-vncserver-on-fedora-16/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9b8b8a3f02a847f77a37ff41fc510ce6?s=96&#38;d=&#38;r=PG" medium="image">
			<media:title type="html">jmrodri</media:title>
		</media:content>
	</item>
		<item>
		<title>Piracy bills are ludicrous</title>
		<link>http://zeusville.wordpress.com/2012/01/19/piracy-bills-are-ludicrous/</link>
		<comments>http://zeusville.wordpress.com/2012/01/19/piracy-bills-are-ludicrous/#comments</comments>
		<pubDate>Thu, 19 Jan 2012 15:17:23 +0000</pubDate>
		<dc:creator>jmrodri</dc:creator>
				<category><![CDATA[Politics]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://zeusville.wordpress.com/?p=1770</guid>
		<description><![CDATA[Honorable Senator Hagan, I sincerely doubt that American economy is affected by $58 billion a year due to piracy. That is precisely the problem I have with all piracy bills, their ludicrous claims of lost revenue. These numbers are calculated as if all the pirated material was going to be acquired legally by all. Most [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zeusville.wordpress.com&amp;blog=419120&amp;post=1770&amp;subd=zeusville&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Honorable Senator Hagan,</p>
<p>I sincerely doubt that American economy is affected by $58 <strong>billion</strong> a year due to piracy. That is precisely the problem I have with all piracy bills, their ludicrous claims of lost revenue. These numbers are calculated as if all the pirated material was going to be acquired legally by all. Most of the people that pirate would never have purchased the material to begin with especially at the prices the owners use to calculate the inflated numbers.</p>
<p>The real problem is that the piracy sites are out of American jurisdiction, if you want to prevent piracy then you need to make the content more easily accessible. It used to be a time when people were pirating music left and right. But once the music industry allowed the sale of music online at a price consumers are willing to pay, it has become EASIER to acquire the music legally than through other means. For less than a $1 people can get their music fix right then and there legally.</p>
<p>If the movie industry made their movies easier to acquire at a cheaper price, I bet piracy would go down tremendously. But they are greedy machines trying to squeeze every penny out of something including paying Congress to do their bidding. Just look at what the studios do to <a href="http://www.pcmag.com/article2/0,2817,2398269,00.asp">cable</a> companies and <a href="http://www.engadget.com/2010/12/08/netflix-licenses-even-more-tv-for-streaming-from-abc-disney/">Netflix</a>. The movie industry should be focused on getting their content out to the masses, because if people can get the latest movies from Netflix, cable or for any of their devices cheaply, they won&#8217;t have to pirate them. This legislation is, in my opinion, going after the wrong thing.</p>
<p>It is a shame that you support this horrible bill, come re-election time, I&#8217;ll be voting for the OTHER candidate.</p>
<p>Sincerely,<br />
jesus rodriguez</p>
<blockquote><p>
January 19, 2012</p>
<p>Dear Friend,</p>
<p>Thank you for contacting me to express your concerns regarding the Preventing Real Online Threats to Economic Creativity and Theft of Intellectual Property Act of 2011, more commonly referred to as the PROTECT IP Act of 2011.  I appreciate hearing your thoughts on this important issue.</p>
<p>On May 12, 2011, the Preventing Real Online Threats to Economic Creativity and Theft of Intellectual Property Act of 2011 (S. 968) was introduced in the Senate and referred to the Committee on the Judiciary.  This bill would allow the Attorney General, or an intellectual property rights owner who has been harmed by an Internet site dedicated to infringing activities (ISDIA), also known as a rogue website, to take action against that site.  A site would be designated as an ISDIA if their sole purpose is to facilitate copyright infringement, or promote or sale of counterfeited American works.</p>
<p>A recent study suggests that copyright piracy alone costs the American economy as much as $58 billion a year and countless jobs.  I strongly support the goal of reducing the theft of intellectual property that is so important to North Carolina&#8217;s economy, including our budding film industry, which is why I and 40 of my bipartisan cosponsors originally cosponsored this legislation last July.</p>
<p>As with all proposed legislation, legitimate concerns have been raised about some of the specific provisions in this bill.  I believe that supporters and opponents of the bill, all of whom agree, after all, on the need to combat the theft of American intellectual property, should work together to address those concerns.  As you may know, the Senate is scheduled to begin consideration of this legislation later this month, and I intend to approach the debate and amendment process with an open mind. Through a full and robust debate, I believe we can improve the legislation, ultimately reaching an agreement that will protect intellectual property without limiting innovation and creativity or creating unintended consequences.</p>
<p>Again, thank you for contacting my office. It is truly an honor to represent North Carolina in the United States Senate, and I hope you will not hesitate to contact me in the future should you have any further questions or concerns.</p>
<p>Sincerely,</p>
<p>Kay R. Hagan
</p></blockquote>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/zeusville.wordpress.com/1770/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/zeusville.wordpress.com/1770/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/zeusville.wordpress.com/1770/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/zeusville.wordpress.com/1770/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/zeusville.wordpress.com/1770/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/zeusville.wordpress.com/1770/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/zeusville.wordpress.com/1770/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/zeusville.wordpress.com/1770/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/zeusville.wordpress.com/1770/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/zeusville.wordpress.com/1770/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/zeusville.wordpress.com/1770/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/zeusville.wordpress.com/1770/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/zeusville.wordpress.com/1770/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/zeusville.wordpress.com/1770/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zeusville.wordpress.com&amp;blog=419120&amp;post=1770&amp;subd=zeusville&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://zeusville.wordpress.com/2012/01/19/piracy-bills-are-ludicrous/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9b8b8a3f02a847f77a37ff41fc510ce6?s=96&#38;d=&#38;r=PG" medium="image">
			<media:title type="html">jmrodri</media:title>
		</media:content>
	</item>
		<item>
		<title>STOP SOPA</title>
		<link>http://zeusville.wordpress.com/2012/01/18/stop-sopa/</link>
		<comments>http://zeusville.wordpress.com/2012/01/18/stop-sopa/#comments</comments>
		<pubDate>Wed, 18 Jan 2012 13:57:01 +0000</pubDate>
		<dc:creator>jmrodri</dc:creator>
				<category><![CDATA[Politics]]></category>

		<guid isPermaLink="false">http://zeusville.wordpress.com/?p=1768</guid>
		<description><![CDATA[Write your Congressman, visit wikipedia to find their contact information.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zeusville.wordpress.com&amp;blog=419120&amp;post=1768&amp;subd=zeusville&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Write your Congressman, visit <a href="http://en.wikipedia.org">wikipedia</a> to find their contact information.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/zeusville.wordpress.com/1768/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/zeusville.wordpress.com/1768/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/zeusville.wordpress.com/1768/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/zeusville.wordpress.com/1768/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/zeusville.wordpress.com/1768/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/zeusville.wordpress.com/1768/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/zeusville.wordpress.com/1768/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/zeusville.wordpress.com/1768/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/zeusville.wordpress.com/1768/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/zeusville.wordpress.com/1768/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/zeusville.wordpress.com/1768/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/zeusville.wordpress.com/1768/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/zeusville.wordpress.com/1768/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/zeusville.wordpress.com/1768/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zeusville.wordpress.com&amp;blog=419120&amp;post=1768&amp;subd=zeusville&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://zeusville.wordpress.com/2012/01/18/stop-sopa/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9b8b8a3f02a847f77a37ff41fc510ce6?s=96&#38;d=&#38;r=PG" medium="image">
			<media:title type="html">jmrodri</media:title>
		</media:content>
	</item>
		<item>
		<title>tito shows up at FUDCon</title>
		<link>http://zeusville.wordpress.com/2012/01/14/tito-shows-up-at-fudcon/</link>
		<comments>http://zeusville.wordpress.com/2012/01/14/tito-shows-up-at-fudcon/#comments</comments>
		<pubDate>Sat, 14 Jan 2012 17:10:51 +0000</pubDate>
		<dc:creator>jmrodri</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://zeusville.wordpress.com/?p=1763</guid>
		<description><![CDATA[Had a good presentation on tito this morning at FUDCon:Blacksburg. Pretty good turnout. You can get the slides here: tito slides<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zeusville.wordpress.com&amp;blog=419120&amp;post=1763&amp;subd=zeusville&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Had a good presentation on tito this morning at <a href>FUDCon:Blacksburg</a>. Pretty good turnout. You can get the slides here: <a href='http://zeusville.files.wordpress.com/2012/01/tito.pdf'>tito slides</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/zeusville.wordpress.com/1763/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/zeusville.wordpress.com/1763/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/zeusville.wordpress.com/1763/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/zeusville.wordpress.com/1763/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/zeusville.wordpress.com/1763/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/zeusville.wordpress.com/1763/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/zeusville.wordpress.com/1763/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/zeusville.wordpress.com/1763/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/zeusville.wordpress.com/1763/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/zeusville.wordpress.com/1763/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/zeusville.wordpress.com/1763/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/zeusville.wordpress.com/1763/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/zeusville.wordpress.com/1763/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/zeusville.wordpress.com/1763/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zeusville.wordpress.com&amp;blog=419120&amp;post=1763&amp;subd=zeusville&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://zeusville.wordpress.com/2012/01/14/tito-shows-up-at-fudcon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9b8b8a3f02a847f77a37ff41fc510ce6?s=96&#38;d=&#38;r=PG" medium="image">
			<media:title type="html">jmrodri</media:title>
		</media:content>
	</item>
		<item>
		<title>Candlepin 0.5.5 released</title>
		<link>http://zeusville.wordpress.com/2011/12/08/candlepin-0-5-5-released/</link>
		<comments>http://zeusville.wordpress.com/2011/12/08/candlepin-0-5-5-released/#comments</comments>
		<pubDate>Thu, 08 Dec 2011 20:17:38 +0000</pubDate>
		<dc:creator>jmrodri</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[candlepin]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[thumbslug]]></category>

		<guid isPermaLink="false">http://zeusville.wordpress.com/?p=1749</guid>
		<description><![CDATA[It&#8217;s that time again, another release of Candlepin and associated projects available for your enjoyment. With this release we have subscription-manager in Fedora as well as a debut build of Thumbslug. For more information on Candlepin, please visit: http://candlepinproject.org/ Features &#38; Enhancements subscription-manager added support for host registration and guest association when host can not [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zeusville.wordpress.com&amp;blog=419120&amp;post=1749&amp;subd=zeusville&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone" title="Candlepin" src="http://candlepinproject.org/images/logo-frontpage.png" alt="Candlepin" width="154" height="154" /></p>
<p>It&#8217;s that time again, another release of Candlepin and associated projects available for your enjoyment. With this release we have <a href="https://fedorahosted.org/subscription-manager/">subscription-manager</a> in Fedora as well as a debut build of <a href="https://fedorahosted.org/candlepin/wiki/thumbslug/Index">Thumbslug</a>.</p>
<p>For more information on Candlepin, please visit: <a href="http://candlepinproject.org/">http://candlepinproject.org/</a></p>
<p><strong>Features &amp; Enhancements</strong></p>
<p><strong><em>subscription-manager</em></strong></p>
<ul>
<li> added support for host registration and guest association when host can not register itself</li>
<li> virt-who work to handle ESX guests</li>
<li> subscription-manager available in fedora</li>
</ul>
<p><strong><em>candlepin</em></strong></p>
<ul>
<li> build modified to use the tito hotness instead of bunch of disjoint bash scripts</li>
<li> disable manifest rules import</li>
<li> added support for host registration and guest association when host can not register itself</li>
</ul>
<p><strong><em>thumbslug</em></strong></p>
<ul>
<li> added appropriate init scripts to run as a service</li>
<li> uses Candlepin CRL</li>
<li> thumbslug talks to akamai</li>
<li> created puppet module for katello</li>
</ul>
<p><strong>Bugs fixed</strong></p>
<p><strong><em>subscription-manager</em></strong></p>
<table>
<tr>
<td><a href="https://bugzilla.redhat.com/show_bug.cgi?id=705883">705883</a></td>
<td>Fix error dialog modal issues.</td>
</tr>
<tr>
<td><a href="https://bugzilla.redhat.com/show_bug.cgi?id=719743">719743</a></td>
<td>Improved text output for successful pool subscription</td>
</tr>
<tr>
<td><a href="https://bugzilla.redhat.com/show_bug.cgi?id=740788">740788</a></td>
<td>Getting error with quantity subscribe using subscription-assistance page.</td>
</tr>
<tr>
<td><a href="https://bugzilla.redhat.com/show_bug.cgi?id=746259">746259</a></td>
<td>Don&#8217;t allow the user to pass in an empty string as an activation key</td>
</tr>
<tr>
<td><a href="https://bugzilla.redhat.com/show_bug.cgi?id=746732">746732</a></td>
<td>Only use fallback locales for dates we need to parse</td>
</tr>
<tr>
<td><a href="https://bugzilla.redhat.com/show_bug.cgi?id=749332">749332</a></td>
<td>Normalize the error messages for not being registered</td>
</tr>
<tr>
<td><a href="https://bugzilla.redhat.com/show_bug.cgi?id=749636">749636</a></td>
<td>Client should not support users entering activation keys and existing consumer ids</td>
</tr>
<tr>
<td><a href="https://bugzilla.redhat.com/show_bug.cgi?id=752572">752572</a></td>
<td>add interval logging statements back in on rhsmcertd startup</td>
</tr>
<tr>
<td><a href="https://bugzilla.redhat.com/show_bug.cgi?id=753093">753093</a></td>
<td>The available subscriptions count does not show correctly in Subscription Manager GUI</td>
</tr>
<tr>
<td><a href="https://bugzilla.redhat.com/show_bug.cgi?id=754821">754821</a></td>
<td>Default org of &#8220;Unknown&#8221; was not marked for gettext</td>
</tr>
<tr>
<td><a href="https://bugzilla.redhat.com/show_bug.cgi?id=755031">755031</a></td>
<td>Unregister before attempting to run a second registration</td>
</tr>
<tr>
<td><a href="https://bugzilla.redhat.com/show_bug.cgi?id=755035">755035</a></td>
<td>Migration script should work on RHEL 5.7 and up.</td>
</tr>
<tr>
<td><a href="https://bugzilla.redhat.com/show_bug.cgi?id=755130">755130</a></td>
<td>add extra whitespace to classic warning</td>
</tr>
<tr>
<td><a href="https://bugzilla.redhat.com/show_bug.cgi?id=755541">755541</a></td>
<td>Enhanced the message in the katello plugin to debug when the backend system does not support environments.</td>
</tr>
<tr>
<td><a href="https://bugzilla.redhat.com/show_bug.cgi?id=756173">756173</a></td>
<td>Unexpected behavior change in subscription-manager unregister</td>
</tr>
<tr>
<td><a href="https://bugzilla.redhat.com/show_bug.cgi?id=756507">756507</a></td>
<td>do not use output from &#8220;getlocale&#8221; as input for &#8220;setlocale&#8221;</td>
</tr>
<tr>
<td><a href="https://bugzilla.redhat.com/show_bug.cgi?id=758471">758471</a></td>
<td>install-num-migrate-to-rhsm threw traceback when no instnum was found.</td>
</tr>
<tr>
<td><a href="https://bugzilla.redhat.com/show_bug.cgi?id=759199">759199</a></td>
<td>rhsmcertd is logging the wrong value for certFrequency</td>
</tr>
</table>
<p><strong><em>candlepin</em></strong></p>
<table>
<tr>
<td><a href="https://bugzilla.redhat.com/show_bug.cgi?id=753093">753093</a></td>
<td>The Available Subscriptions count do not show correctly in Subscription Manager GUI</td>
</tr>
<tr>
<td><a href="https://bugzilla.redhat.com/show_bug.cgi?id=754841">754841</a></td>
<td>Implement DELETE /pools/id.</td>
</tr>
<tr>
<td><a href="https://bugzilla.redhat.com/show_bug.cgi?id=754843">754843</a></td>
<td>Fix legacy virt bonus pools missing pool_derived.</td>
</tr>
<tr>
<td><a href="https://bugzilla.redhat.com/show_bug.cgi?id=755677">755677</a></td>
<td>Activation Keys should not check quantity on unlimited pools</td>
</tr>
<tr>
<td><a href="https://bugzilla.redhat.com/show_bug.cgi?id=756628">756628</a></td>
<td>Translate missing rule errors.</td>
</tr>
<tr>
<td><a href="https://bugzilla.redhat.com/show_bug.cgi?id=758462">758462</a></td>
<td>ensure job detail isn&#8217;t null, skip it.</td>
</tr>
</table>
<p><strong><em>thumbslug</em></strong></p>
<table>
<tr>
<td><a href="https://bugzilla.redhat.com/show_bug.cgi?id=759607">759607</a></td>
<td>update url for subscriptions handler</td>
</tr>
</table>
<p><strong>Download &amp; Setup</strong></p>
<p>Make sure you read over the <a href="https://fedorahosted.org/candlepin/wiki/Setup">Candlepin Setup Guide</a>, which is located at <a href="https://fedorahosted.org/candlepin/wiki/Setup">https://fedorahosted.org/candlepin/wiki/Setup</a>.</p>
<p>As well as the <a href="https://fedorahosted.org/candlepin/wiki/headpin/Install">Headpin Install Guide</a> which can be found at <a href="https://fedorahosted.org/candlepin/wiki/headpin/Install">https://fedorahosted.org/candlepin/wiki/headpin/Install</a></p>
<p>Just give me the bits already! You can get the various bits at the urls below.</p>
<p>Candlepin:<br />
<a href="http://repos.fedorapeople.org/repos/candlepin/candlepin/">http://repos.fedorapeople.org/repos/candlepin/candlepin/</a></p>
<p>Thumbslug:<br />
<a href="http://repos.fedorapeople.org/repos/candlepin/thumbslug/">http://repos.fedorapeople.org/repos/candlepin/thumbslug/</a></p>
<p>Headpin:<br />
<a href="http://repos.fedorapeople.org/repos/katello">http://repos.fedorapeople.org/repos/katello</a></p>
<p>Subscription Manager:<br />
<a href="http://repos.fedorapeople.org/repos/candlepin/subscription-manager/">http://repos.fedorapeople.org/repos/candlepin/subscription-manager/</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/zeusville.wordpress.com/1749/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/zeusville.wordpress.com/1749/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/zeusville.wordpress.com/1749/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/zeusville.wordpress.com/1749/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/zeusville.wordpress.com/1749/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/zeusville.wordpress.com/1749/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/zeusville.wordpress.com/1749/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/zeusville.wordpress.com/1749/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/zeusville.wordpress.com/1749/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/zeusville.wordpress.com/1749/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/zeusville.wordpress.com/1749/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/zeusville.wordpress.com/1749/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/zeusville.wordpress.com/1749/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/zeusville.wordpress.com/1749/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zeusville.wordpress.com&amp;blog=419120&amp;post=1749&amp;subd=zeusville&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://zeusville.wordpress.com/2011/12/08/candlepin-0-5-5-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9b8b8a3f02a847f77a37ff41fc510ce6?s=96&#38;d=&#38;r=PG" medium="image">
			<media:title type="html">jmrodri</media:title>
		</media:content>

		<media:content url="http://candlepinproject.org/images/logo-frontpage.png" medium="image">
			<media:title type="html">Candlepin</media:title>
		</media:content>
	</item>
		<item>
		<title>Veterans Day 2011</title>
		<link>http://zeusville.wordpress.com/2011/11/11/veterans-day-2011/</link>
		<comments>http://zeusville.wordpress.com/2011/11/11/veterans-day-2011/#comments</comments>
		<pubDate>Fri, 11 Nov 2011 14:58:44 +0000</pubDate>
		<dc:creator>jmrodri</dc:creator>
				<category><![CDATA[Family]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Politics]]></category>

		<guid isPermaLink="false">http://zeusville.wordpress.com/?p=1742</guid>
		<description><![CDATA[Thanks to all that serve and have served, especially those in my family. It is because of you we enjoy the freedom we have.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zeusville.wordpress.com&amp;blog=419120&amp;post=1742&amp;subd=zeusville&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Thanks to all that serve and have served, especially those in my family.<br />
It is because of you we enjoy the freedom we have.</p>
<p><a href="http://www.cambridgema.gov/~/media/Images/veteransservicesdepartment/Misc%20Photos/veteranflag.ashx"><img src="http://zeusville.files.wordpress.com/2011/11/veteranflag.jpg?w=549" alt="Originally from: http://www.cambridgema.gov/~/media/Images/veteransservicesdepartment/Misc%20Photos/veteranflag.ashx" title="veteranflag"   class="alignnone size-full wp-image-1743" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/zeusville.wordpress.com/1742/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/zeusville.wordpress.com/1742/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/zeusville.wordpress.com/1742/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/zeusville.wordpress.com/1742/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/zeusville.wordpress.com/1742/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/zeusville.wordpress.com/1742/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/zeusville.wordpress.com/1742/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/zeusville.wordpress.com/1742/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/zeusville.wordpress.com/1742/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/zeusville.wordpress.com/1742/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/zeusville.wordpress.com/1742/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/zeusville.wordpress.com/1742/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/zeusville.wordpress.com/1742/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/zeusville.wordpress.com/1742/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zeusville.wordpress.com&amp;blog=419120&amp;post=1742&amp;subd=zeusville&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://zeusville.wordpress.com/2011/11/11/veterans-day-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9b8b8a3f02a847f77a37ff41fc510ce6?s=96&#38;d=&#38;r=PG" medium="image">
			<media:title type="html">jmrodri</media:title>
		</media:content>

		<media:content url="http://zeusville.files.wordpress.com/2011/11/veteranflag.jpg" medium="image">
			<media:title type="html">veteranflag</media:title>
		</media:content>
	</item>
		<item>
		<title>RIP Reina</title>
		<link>http://zeusville.wordpress.com/2011/10/31/rip-reina/</link>
		<comments>http://zeusville.wordpress.com/2011/10/31/rip-reina/#comments</comments>
		<pubDate>Mon, 31 Oct 2011 13:35:22 +0000</pubDate>
		<dc:creator>jmrodri</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://zeusville.wordpress.com/?p=1732</guid>
		<description><![CDATA[Reina aka &#8220;Bubba&#8220; December 21, 1996 &#8211; October 31, 2011<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zeusville.wordpress.com&amp;blog=419120&amp;post=1732&amp;subd=zeusville&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>Reina</strong> aka &#8220;<em>Bubba</em>&#8220;</p>
<p><a href="http://familiarodriguez.smugmug.com/Pets/bubba/2859219_W4CszC#153411367_wt549" title="Reina"><img alt="" src="http://familiarodriguez.smugmug.com/Pets/bubba/IMG0022/153411367_wt549-S.jpg" title="Reina aka Bubba" class="alignnone" /></a></p>
<p>December 21, 1996 &#8211; October 31, 2011</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/zeusville.wordpress.com/1732/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/zeusville.wordpress.com/1732/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/zeusville.wordpress.com/1732/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/zeusville.wordpress.com/1732/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/zeusville.wordpress.com/1732/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/zeusville.wordpress.com/1732/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/zeusville.wordpress.com/1732/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/zeusville.wordpress.com/1732/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/zeusville.wordpress.com/1732/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/zeusville.wordpress.com/1732/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/zeusville.wordpress.com/1732/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/zeusville.wordpress.com/1732/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/zeusville.wordpress.com/1732/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/zeusville.wordpress.com/1732/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zeusville.wordpress.com&amp;blog=419120&amp;post=1732&amp;subd=zeusville&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://zeusville.wordpress.com/2011/10/31/rip-reina/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9b8b8a3f02a847f77a37ff41fc510ce6?s=96&#38;d=&#38;r=PG" medium="image">
			<media:title type="html">jmrodri</media:title>
		</media:content>

		<media:content url="http://familiarodriguez.smugmug.com/Pets/bubba/IMG0022/153411367_wt549-S.jpg" medium="image">
			<media:title type="html">Reina aka Bubba</media:title>
		</media:content>
	</item>
		<item>
		<title>Happy Birthday Marco</title>
		<link>http://zeusville.wordpress.com/2011/10/12/happy-birthday-marco-3/</link>
		<comments>http://zeusville.wordpress.com/2011/10/12/happy-birthday-marco-3/#comments</comments>
		<pubDate>Wed, 12 Oct 2011 12:58:16 +0000</pubDate>
		<dc:creator>jmrodri</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://zeusville.wordpress.com/?p=1729</guid>
		<description><![CDATA[Today, Marco turns 8. Happy Birthday, Marco. Tonight&#8217;s dinner choice? Chuck E. Cheese!<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zeusville.wordpress.com&amp;blog=419120&amp;post=1729&amp;subd=zeusville&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Today, Marco turns <strong>8</strong>. Happy Birthday, Marco. Tonight&#8217;s dinner choice? <a href="http://www.chuckecheese.com/">Chuck E. Cheese</a>!</p>
<p><img alt="" src="http://farm7.static.flickr.com/6107/6237631206_1cb39d0e4a.jpg" title="marco and his beta" class="alignnone" width="500" height="375" /></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/zeusville.wordpress.com/1729/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/zeusville.wordpress.com/1729/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/zeusville.wordpress.com/1729/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/zeusville.wordpress.com/1729/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/zeusville.wordpress.com/1729/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/zeusville.wordpress.com/1729/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/zeusville.wordpress.com/1729/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/zeusville.wordpress.com/1729/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/zeusville.wordpress.com/1729/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/zeusville.wordpress.com/1729/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/zeusville.wordpress.com/1729/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/zeusville.wordpress.com/1729/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/zeusville.wordpress.com/1729/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/zeusville.wordpress.com/1729/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zeusville.wordpress.com&amp;blog=419120&amp;post=1729&amp;subd=zeusville&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://zeusville.wordpress.com/2011/10/12/happy-birthday-marco-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9b8b8a3f02a847f77a37ff41fc510ce6?s=96&#38;d=&#38;r=PG" medium="image">
			<media:title type="html">jmrodri</media:title>
		</media:content>

		<media:content url="http://farm7.static.flickr.com/6107/6237631206_1cb39d0e4a.jpg" medium="image">
			<media:title type="html">marco and his beta</media:title>
		</media:content>
	</item>
		<item>
		<title>Happy Birthday Adan</title>
		<link>http://zeusville.wordpress.com/2011/09/29/happy-birthday-adan-2/</link>
		<comments>http://zeusville.wordpress.com/2011/09/29/happy-birthday-adan-2/#comments</comments>
		<pubDate>Thu, 29 Sep 2011 12:32:36 +0000</pubDate>
		<dc:creator>jmrodri</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://zeusville.wordpress.com/?p=1726</guid>
		<description><![CDATA[Since we were traveling on Adan&#8217;s birthday, I didn&#8217;t get a chance to make the obligatory birthday blog post. On September 29th, Adan turned 10. I can&#8217;t believe he&#8217;s a decade old already. I told him &#8216;you realize today is the last day you will be a single digit old&#8217;. It didn&#8217;t seem to phase [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zeusville.wordpress.com&amp;blog=419120&amp;post=1726&amp;subd=zeusville&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Since we were traveling on Adan&#8217;s birthday, I didn&#8217;t get a chance to make the obligatory birthday blog post. <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  On September 29th, Adan turned <strong>10</strong>. I can&#8217;t believe he&#8217;s a decade old already. I told him &#8216;you realize today is the last day you will be a single digit old&#8217;. It didn&#8217;t seem to phase him.</p>
<p><img alt="" src="http://farm7.static.flickr.com/6157/6197185700_823a9fa33e.jpg" title="adan bday" class="alignnone" width="375" height="500" /></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/zeusville.wordpress.com/1726/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/zeusville.wordpress.com/1726/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/zeusville.wordpress.com/1726/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/zeusville.wordpress.com/1726/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/zeusville.wordpress.com/1726/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/zeusville.wordpress.com/1726/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/zeusville.wordpress.com/1726/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/zeusville.wordpress.com/1726/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/zeusville.wordpress.com/1726/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/zeusville.wordpress.com/1726/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/zeusville.wordpress.com/1726/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/zeusville.wordpress.com/1726/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/zeusville.wordpress.com/1726/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/zeusville.wordpress.com/1726/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zeusville.wordpress.com&amp;blog=419120&amp;post=1726&amp;subd=zeusville&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://zeusville.wordpress.com/2011/09/29/happy-birthday-adan-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9b8b8a3f02a847f77a37ff41fc510ce6?s=96&#38;d=&#38;r=PG" medium="image">
			<media:title type="html">jmrodri</media:title>
		</media:content>

		<media:content url="http://farm7.static.flickr.com/6157/6197185700_823a9fa33e.jpg" medium="image">
			<media:title type="html">adan bday</media:title>
		</media:content>
	</item>
		<item>
		<title>Candlepin 0.4.16 released.</title>
		<link>http://zeusville.wordpress.com/2011/09/15/candlepin-0-4-16-released/</link>
		<comments>http://zeusville.wordpress.com/2011/09/15/candlepin-0-4-16-released/#comments</comments>
		<pubDate>Thu, 15 Sep 2011 19:35:13 +0000</pubDate>
		<dc:creator>jmrodri</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://zeusville.wordpress.com/?p=1708</guid>
		<description><![CDATA[Another sprint gone by and another release of Candlepin for your enjoyment. Candlepin 0.4.16 is ready. You can get the bits at: http://repos.fedorapeople.org/repos/candlepin/candlepin/ Make sure you read over the Setup Guide, which is located at https://fedorahosted.org/candlepin/wiki/Setup For more information on Candlepin, please visit our project page. Features &#38; Enhancements client A number of GUI changes [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zeusville.wordpress.com&amp;blog=419120&amp;post=1708&amp;subd=zeusville&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Another sprint gone by and another release of Candlepin for your enjoyment.  Candlepin 0.4.16 is ready.  You can get the bits at:</p>
<p><a href="http://repos.fedorapeople.org/repos/candlepin/candlepin/">http://repos.fedorapeople.org/repos/candlepin/candlepin/</a></p>
<p>Make sure you read over the <a href="https://fedorahosted.org/candlepin/wiki/Setup">Setup Guide</a>, which is located at<br />
<a href="https://fedorahosted.org/candlepin/wiki/Setup">https://fedorahosted.org/candlepin/wiki/Setup</a></p>
<p>For more information on Candlepin, please visit <a href="http://candlepinproject.org/">our project page</a>.</p>
<p><strong>Features &amp; Enhancements</strong></p>
<p><strong><em>client</em></strong></p>
<ul>
<li>A number of GUI changes
<ul>
<li>Center the machine type column header</li>
<li>Move quantity column to the end</li>
<li>Center the Arch column header</li>
<li>Center tree view table properties</li>
<li>Add &#8216;* Click to Adjust Quantity&#8217; label to places allowing     editable subscription quantity</li>
<li>New icons for red/green</li>
<li>Add virt_only attribute to subscription detail pane</li>
<li>Display subscription assistant&#8217;s subscriptions as a tree</li>
<li>Double click or button press (enter, return, space) on row will     expand/collapse row</li>
<li>Update to All Available Subscriptions tab to put stacked     subscriptions under parent node</li>
<li>Moved multi-entitlement column (*) next to the quantity column</li>
<li>Made the contract selector a little wider so all columns were     visible (no manual resize)</li>
</ul>
<li>Initial work done for the healing feature
<ul>
<li>Changes to rhsmcertd to support healing frequency (part I)</li>
<li>Add autoheal option to certmgr.py</li>
<li>Only autoheal when required</li>
<li>Use server-side consumer autoheal flag</li>
</ul>
<li>Misc items
<ul>
<li>Update the strings and the remote server location</li>
<li>Make &#8220;make stylish&#8221; run all the checks, make whitespace &#8220;pop&#8221;</li>
<li>Update translations</li>
<li>managerlib was expecting a single ent_cert, but we return a list</li>
<li>Add a &#8220;refresh&#8221; method to cert_sorter</li>
<li>Add a require_connection callback to commands</li>
</ul>
</ul>
<p><strong><em>server</em></strong></p>
<ul>
<li>upgraded to <a href="http://www.jboss.org/resteasy">RESTEasy</a> 2.2.1GA</li>
<li>export virt entitlements to non-candlepin consumers</li>
<li>refactored pinsetter to work in clustering mode</li>
<li>add new api to query jobs by owner, principal, consumer uuid</li>
</ul>
<p><strong>Bugs fixed</strong></p>
<table>
<tr>
<td>707641</td>
<td>CLI auto-subscribe tries to re-use basic auth credentials</td>
</tr>
<tr>
<td>712047</td>
<td>yum prints non-error messages when running in quiet mode</td>
</tr>
<tr>
<td>718052</td>
<td>Remove owner from consumer resource return codes. Only use the term org.</td>
</tr>
<tr>
<td>730020</td>
<td>Change the help text to show that config can list or set changes</td>
</tr>
<tr>
<td>731577</td>
<td>API to query jobs by owner, principal, consumer uuid.</td>
</tr>
<tr>
<td>731996</td>
<td>SQL Error when using REST query for events</td>
</tr>
<tr>
<td>732538</td>
<td>Disallow the relationship between a &#8216;person&#8217; pool and an activation key</td>
</tr>
<tr>
<td>734174</td>
<td>Add missing produces annotations for role resource.</td>
</tr>
<tr>
<td>734880</td>
<td>Handle bundled certs in the installed produict status.</td>
</tr>
<tr>
<td>734606</td>
<td>ImportFileExtractor now creates cert/key files based on serial number of the cert</td>
</tr>
<tr>
<td>735087</td>
<td>If quartz is in clustered mode, we shouldn&#8217;t schedule any jobs.</td>
</tr>
<tr>
<td>735226</td>
<td>Importing should fail without a valid key and cert</td>
</tr>
<tr>
<td>735338</td>
<td>Subscription Manager CLI tool does not allow unsubscribe when not registered.</td>
</tr>
<tr>
<td>735695</td>
<td>add support for multiple config &#8220;&#8211;remove&#8221; options via cli</td>
</tr>
<tr>
<td>736166</td>
<td>move certs from subscription-manager to python-rhsm</td>
</tr>
<tr>
<td>736784</td>
<td>config &#8211;remove add config property to rhsm.conf if it doesn&#8217;t  exist.</td>
</tr>
<tr>
<td>737841</td>
<td>Handle dates beyond 2038 on 32-bit systems.</td>
</tr>
</table>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/zeusville.wordpress.com/1708/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/zeusville.wordpress.com/1708/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/zeusville.wordpress.com/1708/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/zeusville.wordpress.com/1708/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/zeusville.wordpress.com/1708/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/zeusville.wordpress.com/1708/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/zeusville.wordpress.com/1708/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/zeusville.wordpress.com/1708/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/zeusville.wordpress.com/1708/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/zeusville.wordpress.com/1708/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/zeusville.wordpress.com/1708/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/zeusville.wordpress.com/1708/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/zeusville.wordpress.com/1708/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/zeusville.wordpress.com/1708/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zeusville.wordpress.com&amp;blog=419120&amp;post=1708&amp;subd=zeusville&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://zeusville.wordpress.com/2011/09/15/candlepin-0-4-16-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9b8b8a3f02a847f77a37ff41fc510ce6?s=96&#38;d=&#38;r=PG" medium="image">
			<media:title type="html">jmrodri</media:title>
		</media:content>
	</item>
	</channel>
</rss>
