<?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/"
	>

<channel>
	<title>The Goldfish &#187; Sysadmin</title>
	<atom:link href="http://www.thegoldfish.org/category/sysadmin/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.thegoldfish.org</link>
	<description>blogging it so I dont forget it</description>
	<lastBuildDate>Mon, 19 Sep 2011 21:31:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Linux network bond without restarting the network</title>
		<link>http://www.thegoldfish.org/2011/08/linux-network-bond-without-restarting-the-network/</link>
		<comments>http://www.thegoldfish.org/2011/08/linux-network-bond-without-restarting-the-network/#comments</comments>
		<pubDate>Tue, 02 Aug 2011 13:38:29 +0000</pubDate>
		<dc:creator>thughes</dc:creator>
				<category><![CDATA[Centos]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Sysadmin]]></category>

		<guid isPermaLink="false">http://www.thegoldfish.org/?p=156</guid>
		<description><![CDATA[This is quite handy to know if you need to create a new network bond on a live system without disrupting traffic. First of all create your bond configs in the normal way so that in the event of a reboot it will come back up working. See the Redhat documentation for how to do [...]]]></description>
		<wfw:commentRss>http://www.thegoldfish.org/2011/08/linux-network-bond-without-restarting-the-network/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Checking SSL certificate expiry dates</title>
		<link>http://www.thegoldfish.org/2011/06/checking-ssl-certificate-expiry-dates/</link>
		<comments>http://www.thegoldfish.org/2011/06/checking-ssl-certificate-expiry-dates/#comments</comments>
		<pubDate>Wed, 01 Jun 2011 13:13:33 +0000</pubDate>
		<dc:creator>thughes</dc:creator>
				<category><![CDATA[Bash]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Sysadmin]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[openssl]]></category>
		<category><![CDATA[sed]]></category>
		<category><![CDATA[ssl certificate]]></category>
		<category><![CDATA[s_client]]></category>

		<guid isPermaLink="false">http://www.thegoldfish.org/?p=137</guid>
		<description><![CDATA[This is just a quick note to save this useful bit of information. I may make in to a script one day or use it in something else. 1 echo ''&#124;openssl s_client -connect localhost:636 2&#62;/dev/null &#124; openssl x509 -noout -enddate &#124; sed 's/^not.*\=//']]></description>
		<wfw:commentRss>http://www.thegoldfish.org/2011/06/checking-ssl-certificate-expiry-dates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Parallel multi process bash with return codes</title>
		<link>http://www.thegoldfish.org/2010/08/parallel-multi-process-bash-with-return-codes/</link>
		<comments>http://www.thegoldfish.org/2010/08/parallel-multi-process-bash-with-return-codes/#comments</comments>
		<pubDate>Thu, 12 Aug 2010 21:49:45 +0000</pubDate>
		<dc:creator>thughes</dc:creator>
				<category><![CDATA[Bash]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Sysadmin]]></category>

		<guid isPermaLink="false">http://www.thegoldfish.org/?p=98</guid>
		<description><![CDATA[Have you ever needed to run a bunch of long running processes from a bash script and get their return codes ? I come across this issue quite frequently in my line of work. The most common one is where i need to run rsync to collect files from many machines then if successful run [...]]]></description>
		<wfw:commentRss>http://www.thegoldfish.org/2010/08/parallel-multi-process-bash-with-return-codes/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Stunnel in client mode</title>
		<link>http://www.thegoldfish.org/2010/01/stunnel-in-client-mode/</link>
		<comments>http://www.thegoldfish.org/2010/01/stunnel-in-client-mode/#comments</comments>
		<pubDate>Fri, 22 Jan 2010 10:05:22 +0000</pubDate>
		<dc:creator>thughes</dc:creator>
				<category><![CDATA[Sysadmin]]></category>
		<category><![CDATA[stunnel]]></category>

		<guid isPermaLink="false">http://www.thegoldfish.org/?p=54</guid>
		<description><![CDATA[Stunnel is a quick way on taking a non ssl connection and being able to wrap it in ssl for security stunnel version 4 &#8211; Fedora 12/RHEL 5.3 /Centos 5.3 vim /etc/stunnel/stunnel.conf add in client=yes [gmail] accept = 127.0.0.1:50000 connect = mail.google.com:443 then run stunnel stunnel version 3 &#8211; Ubuntu 8.10 (I haven&#8217;t used newer [...]]]></description>
		<wfw:commentRss>http://www.thegoldfish.org/2010/01/stunnel-in-client-mode/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Delete single line from file</title>
		<link>http://www.thegoldfish.org/2010/01/delete-single-line-from-file/</link>
		<comments>http://www.thegoldfish.org/2010/01/delete-single-line-from-file/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 15:17:53 +0000</pubDate>
		<dc:creator>thughes</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Sysadmin]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[sed]]></category>

		<guid isPermaLink="false">http://www.thegoldfish.org/?p=45</guid>
		<description><![CDATA[I quite often need to remove a single line from a file by its line number. The most common use case for me is the known_hosts file when I have reinstalled a system, I have in the past used vim and navigated to the line then removed it. This is all well and good but [...]]]></description>
		<wfw:commentRss>http://www.thegoldfish.org/2010/01/delete-single-line-from-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reinstall CentOS using grub</title>
		<link>http://www.thegoldfish.org/2009/12/reinstall-centos-using-grub/</link>
		<comments>http://www.thegoldfish.org/2009/12/reinstall-centos-using-grub/#comments</comments>
		<pubDate>Thu, 31 Dec 2009 01:29:08 +0000</pubDate>
		<dc:creator>thughes</dc:creator>
				<category><![CDATA[Centos]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Sysadmin]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[grub]]></category>
		<category><![CDATA[kickstart]]></category>

		<guid isPermaLink="false">http://www.thegoldfish.org/?p=34</guid>
		<description><![CDATA[This post is here mainly because I always forget how to do it. This is one of the simplest ways to reinstall a Centos (will probably work for RHEL and maybe even Fedora) system without needing PXE or physical access to the machine. Make sure that that you have tested you kickstart before you use [...]]]></description>
		<wfw:commentRss>http://www.thegoldfish.org/2009/12/reinstall-centos-using-grub/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

