<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: A simple nanny script in Python</title>
	<atom:link href="http://www.protocolostomy.com/2008/03/29/a-simple-nanny-script-in-python/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.protocolostomy.com/2008/03/29/a-simple-nanny-script-in-python/</link>
	<description>Made with only the finest 1's and 0's</description>
	<lastBuildDate>Thu, 26 Jan 2012 21:20:45 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: FÃ©lim Whiteley</title>
		<link>http://www.protocolostomy.com/2008/03/29/a-simple-nanny-script-in-python/comment-page-1/#comment-267</link>
		<dc:creator>FÃ©lim Whiteley</dc:creator>
		<pubDate>Wed, 02 Apr 2008 07:22:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.protocolostomy.com/2008/03/29/a-simple-nanny-script-in-python/#comment-267</guid>
		<description>Ah so it is :) Cheers !</description>
		<content:encoded><![CDATA[<p>Ah so it is <img src='http://www.protocolostomy.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Cheers !</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: m0j0</title>
		<link>http://www.protocolostomy.com/2008/03/29/a-simple-nanny-script-in-python/comment-page-1/#comment-260</link>
		<dc:creator>m0j0</dc:creator>
		<pubDate>Tue, 01 Apr 2008 17:30:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.protocolostomy.com/2008/03/29/a-simple-nanny-script-in-python/#comment-260</guid>
		<description>My bad. Try it again. I apparently used Drupal&#039;s Project module incorrectly when trying to make that available. It&#039;s fixed now.</description>
		<content:encoded><![CDATA[<p>My bad. Try it again. I apparently used Drupal&#8217;s Project module incorrectly when trying to make that available. It&#8217;s fixed now.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: FÃ©lim Whiteley</title>
		<link>http://www.protocolostomy.com/2008/03/29/a-simple-nanny-script-in-python/comment-page-1/#comment-259</link>
		<dc:creator>FÃ©lim Whiteley</dc:creator>
		<pubDate>Tue, 01 Apr 2008 16:47:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.protocolostomy.com/2008/03/29/a-simple-nanny-script-in-python/#comment-259</guid>
		<description>Eh I&#039;m not sure if I&#039;m doing something wrong but I don&#039;t seem to see it on the download page... unless both Konq and Firefox are playing up on me ??</description>
		<content:encoded><![CDATA[<p>Eh I&#8217;m not sure if I&#8217;m doing something wrong but I don&#8217;t seem to see it on the download page&#8230; unless both Konq and Firefox are playing up on me ??</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ycros</title>
		<link>http://www.protocolostomy.com/2008/03/29/a-simple-nanny-script-in-python/comment-page-1/#comment-266</link>
		<dc:creator>Ycros</dc:creator>
		<pubDate>Mon, 31 Mar 2008 12:12:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.protocolostomy.com/2008/03/29/a-simple-nanny-script-in-python/#comment-266</guid>
		<description>Give Monit (http://www.tildeslash.com/monit/) a whirl, I set it up a few days ago on my server, only took me 5 minutes to work out how to use it and it works great.</description>
		<content:encoded><![CDATA[<p>Give Monit (<a href="http://www.tildeslash.com/monit/" rel="nofollow">http://www.tildeslash.com/monit/</a>) a whirl, I set it up a few days ago on my server, only took me 5 minutes to work out how to use it and it works great.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: m0j0</title>
		<link>http://www.protocolostomy.com/2008/03/29/a-simple-nanny-script-in-python/comment-page-1/#comment-265</link>
		<dc:creator>m0j0</dc:creator>
		<pubDate>Sun, 30 Mar 2008 02:15:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.protocolostomy.com/2008/03/29/a-simple-nanny-script-in-python/#comment-265</guid>
		<description>I *might* consider running a small, non-resource-intensive, non-production daemon out of inittab, but generally I try to avoid running daemons out of inittab if I can help it, and generally it&#039;s not hard to avoid. I know there are apps (even large commercial ones) that *recommend* this practice, but I think there needs to be one of those &quot;...Considered Harmful&quot; articles written about that. I don&#039;t profess to know that it&#039;s a bad idea *always*, but I&#039;ve seen it cause as many problems as it solves. If you&#039;ve done this a lot without issue, congratulations, but when you have issues, you&#039;ll understand precisely what I&#039;m talking about :-)

Of course, the problem with any solution that seeks to restart failed daemons in an automated way at all is that it has a tendency to put off the debugging process indefinitely, which is bad. In my case, though, I&#039;m just looking to keep something running until some support goon gets around to fixing the issue.</description>
		<content:encoded><![CDATA[<p>I *might* consider running a small, non-resource-intensive, non-production daemon out of inittab, but generally I try to avoid running daemons out of inittab if I can help it, and generally it&#8217;s not hard to avoid. I know there are apps (even large commercial ones) that *recommend* this practice, but I think there needs to be one of those &#8220;&#8230;Considered Harmful&#8221; articles written about that. I don&#8217;t profess to know that it&#8217;s a bad idea *always*, but I&#8217;ve seen it cause as many problems as it solves. If you&#8217;ve done this a lot without issue, congratulations, but when you have issues, you&#8217;ll understand precisely what I&#8217;m talking about <img src='http://www.protocolostomy.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Of course, the problem with any solution that seeks to restart failed daemons in an automated way at all is that it has a tendency to put off the debugging process indefinitely, which is bad. In my case, though, I&#8217;m just looking to keep something running until some support goon gets around to fixing the issue.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

