<?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>thinking sysadmin &#187; scripting</title>
	<atom:link href="http://andyleonard.com/tag/scripting/feed/" rel="self" type="application/rss+xml" />
	<link>http://andyleonard.com</link>
	<description>qstat -u aleonard -s z</description>
	<lastBuildDate>Fri, 30 Jul 2010 17:47:40 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Quick and Dirty VMware ESX Patching</title>
		<link>http://andyleonard.com/2008/07/31/quick-and-dirty-vmware-esx-patching/</link>
		<comments>http://andyleonard.com/2008/07/31/quick-and-dirty-vmware-esx-patching/#comments</comments>
		<pubDate>Thu, 31 Jul 2008 20:41:09 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[security]]></category>
		<category><![CDATA[virtualization]]></category>
		<category><![CDATA[patching]]></category>
		<category><![CDATA[scripting]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://andyleonard.com/?p=57</guid>
		<description><![CDATA[On the ESX console, do the following:

Read the documentation for each patch.
Group patches that can be installed together into a directory, possibly an NFS mount available on all your ESX hosts.
Cd into the patch directory and untar the patches:
for i in `ls *.tgz`; do
tar -xvzf $i
done
Install the patches:
for i in `ls`; do
 if [ -d [...]]]></description>
			<content:encoded><![CDATA[<p>On the ESX console, do the following:</p>
<ul>
<li>Read the documentation for each patch.</li>
<li>Group patches that can be installed together into a directory, possibly an NFS mount available on all your ESX hosts.</li>
<li>Cd into the patch directory and untar the patches:
<p><code>for i in `ls *.tgz`; do<br />
tar -xvzf $i<br />
done</code></li>
<li>Install the patches:
<p><code>for i in `ls`; do</code><br />
<code> if [ -d $i ]; then</code><br />
<code> cd $i</code><br />
<code> esxupdate --noreboot update</code><br />
<code> cd ..</code><br />
<code> fi</code><br />
<code>done</code></li>
<li>Reboot.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://andyleonard.com/2008/07/31/quick-and-dirty-vmware-esx-patching/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
