<?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: Zimbra Collaboration Suite 5.0 Auto Install Script for openSUSE 10.3</title>
	<atom:link href="http://vavai.net/2008/10/08/zimbra-collaboration-suite-50-auto-install-script-for-opensuse-103/feed/" rel="self" type="application/rss+xml" />
	<link>http://vavai.net/2008/10/08/zimbra-collaboration-suite-50-auto-install-script-for-opensuse-103/</link>
	<description>Masim "Vavai" Sugianto Personal Blog</description>
	<lastBuildDate>Wed, 28 Jul 2010 22:37:22 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: Zimbra and openSUSE Thread on Zimbra Forum &#124; Spirit of Change</title>
		<link>http://vavai.net/2008/10/08/zimbra-collaboration-suite-50-auto-install-script-for-opensuse-103/comment-page-1/#comment-1234</link>
		<dc:creator>Zimbra and openSUSE Thread on Zimbra Forum &#124; Spirit of Change</dc:creator>
		<pubDate>Thu, 01 Jan 2009 13:44:27 +0000</pubDate>
		<guid isPermaLink="false">http://vavai.net/?p=58#comment-1234</guid>
		<description>[...] builds for openSUSE 10.3 but I could applied binary builds for openSUSE 10.2 on openSUSE 10.3 with small cheated without any problem. I could not applied binary builds for openSUSE 10.2 into openSUSE 11.x because [...]</description>
		<content:encoded><![CDATA[<p>[...] builds for openSUSE 10.3 but I could applied binary builds for openSUSE 10.2 on openSUSE 10.3 with small cheated without any problem. I could not applied binary builds for openSUSE 10.2 into openSUSE 11.x because [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Harsh</title>
		<link>http://vavai.net/2008/10/08/zimbra-collaboration-suite-50-auto-install-script-for-opensuse-103/comment-page-1/#comment-550</link>
		<dc:creator>Harsh</dc:creator>
		<pubDate>Mon, 24 Nov 2008 18:37:21 +0000</pubDate>
		<guid isPermaLink="false">http://vavai.net/?p=58#comment-550</guid>
		<description>Hi, I just read your mailing list post about Zimbra 5 on OpenSUSE 11.0. Am just curious to know if you have found a solution to it yet? Am getting the same stack pointer error :)</description>
		<content:encoded><![CDATA[<p>Hi, I just read your mailing list post about Zimbra 5 on OpenSUSE 11.0. Am just curious to know if you have found a solution to it yet? Am getting the same stack pointer error <img src='http://vavai.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Masim "Vavai" Sugianto</title>
		<link>http://vavai.net/2008/10/08/zimbra-collaboration-suite-50-auto-install-script-for-opensuse-103/comment-page-1/#comment-193</link>
		<dc:creator>Masim "Vavai" Sugianto</dc:creator>
		<pubDate>Sat, 25 Oct 2008 23:41:02 +0000</pubDate>
		<guid isPermaLink="false">http://vavai.net/?p=58#comment-193</guid>
		<description>Hi Michal,

Thank you. It was a nice add-on code. I will apply this on next Zimbra training.</description>
		<content:encoded><![CDATA[<p>Hi Michal,</p>
<p>Thank you. It was a nice add-on code. I will apply this on next Zimbra training.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michal Zugec</title>
		<link>http://vavai.net/2008/10/08/zimbra-collaboration-suite-50-auto-install-script-for-opensuse-103/comment-page-1/#comment-192</link>
		<dc:creator>Michal Zugec</dc:creator>
		<pubDate>Sat, 25 Oct 2008 18:13:31 +0000</pubDate>
		<guid isPermaLink="false">http://vavai.net/?p=58#comment-192</guid>
		<description>oups - please uncomment #zypper line - I comment it because of faster testing</description>
		<content:encoded><![CDATA[<p>oups &#8211; please uncomment #zypper line &#8211; I comment it because of faster testing</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michal Zugec</title>
		<link>http://vavai.net/2008/10/08/zimbra-collaboration-suite-50-auto-install-script-for-opensuse-103/comment-page-1/#comment-191</link>
		<dc:creator>Michal Zugec</dc:creator>
		<pubDate>Sat, 25 Oct 2008 18:12:07 +0000</pubDate>
		<guid isPermaLink="false">http://vavai.net/?p=58#comment-191</guid>
		<description>Hello!
I like that script, it helps me a lot but I have some improvements:
- when something failed, don&#039;t continue
- download and extract last zcs version

patch (for zimbra-auto-opensuse103.sh file):

&lt;code&gt;

2a3,11
&gt; function check_retval {
&gt; if [ &quot;$1&quot; != &quot;0&quot; ]
&gt;  then
&gt;   echo &quot;Something wrong - exiting&quot;
&gt;   exit $1
&gt; fi
&gt;
&gt; }
&gt;
26c35
 #zypper in fetchmail curl libidn gmp compat-libstdc++ cron sudo compat-openssl097g libexpat0
34a44
&gt;
37c47,66
 ZCS_UNPACK_DIR=/tmp/zimbra-install
&gt; URL=$(curl -s http://www.zimbra.com/community/downloads.html&#124;grep -i opensuse&#124;grep tgz&#124;cut -d&#039;=&#039; -f2&#124;cut -d&#039;&quot;&#039; -f2)
&gt; check_retval $?
&gt;
&gt; TARBALL=${URL##*/}
&gt; echo &quot;URL to download $URL&quot;
&gt; echo &quot;TARBALL name $TARBALL&quot;
&gt;
&gt; rm $TARBALL
&gt; curl $URL &gt; $TARBALL
&gt; check_retval $?
&gt;
&gt; test -d $ZCS_UNPACK_DIR &amp;&amp; rm -rf $ZCS_UNPACK_DIR
&gt; mkdir -p $ZCS_UNPACK_DIR
&gt; tar xvf $TARBALL -C $ZCS_UNPACK_DIR
&gt; check_retval $?
&gt;
&gt; INSTALL_DIR=&quot;$ZCS_UNPACK_DIR/$(ls -t $ZCS_UNPACK_DIR&#124;head -n1)&quot;
&gt; check_retval $?
&gt;
41c70,71
 cp get_plat_tag.sh $INSTALL_DIR/bin/
&gt; check_retval $?
46c76,78
 SCRIPT_DIR=$(pwd)
&gt; cd $INSTALL_DIR
&gt; check_retval $?
58a91
&gt; check_retval $?
65c98
 cd $SCRIPT_DIR

&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Hello!<br />
I like that script, it helps me a lot but I have some improvements:<br />
- when something failed, don&#8217;t continue<br />
- download and extract last zcs version</p>
<p>patch (for zimbra-auto-opensuse103.sh file):</p>
<p><code></p>
<p>2a3,11<br />
&gt; function check_retval {<br />
&gt; if [ "$1" != "0" ]<br />
&gt;  then<br />
&gt;   echo "Something wrong - exiting"<br />
&gt;   exit $1<br />
&gt; fi<br />
&gt;<br />
&gt; }<br />
&gt;<br />
26c35<br />
 #zypper in fetchmail curl libidn gmp compat-libstdc++ cron sudo compat-openssl097g libexpat0<br />
34a44<br />
&gt;<br />
37c47,66<br />
 ZCS_UNPACK_DIR=/tmp/zimbra-install<br />
&gt; URL=$(curl -s <a href="http://www.zimbra.com/community/downloads.html" rel="nofollow">http://www.zimbra.com/community/downloads.html</a>|grep -i opensuse|grep tgz|cut -d'=' -f2|cut -d'"' -f2)<br />
&gt; check_retval $?<br />
&gt;<br />
&gt; TARBALL=${URL##*/}<br />
&gt; echo "URL to download $URL"<br />
&gt; echo "TARBALL name $TARBALL"<br />
&gt;<br />
&gt; rm $TARBALL<br />
&gt; curl $URL &gt; $TARBALL<br />
&gt; check_retval $?<br />
&gt;<br />
&gt; test -d $ZCS_UNPACK_DIR &amp;&amp; rm -rf $ZCS_UNPACK_DIR<br />
&gt; mkdir -p $ZCS_UNPACK_DIR<br />
&gt; tar xvf $TARBALL -C $ZCS_UNPACK_DIR<br />
&gt; check_retval $?<br />
&gt;<br />
&gt; INSTALL_DIR="$ZCS_UNPACK_DIR/$(ls -t $ZCS_UNPACK_DIR|head -n1)"<br />
&gt; check_retval $?<br />
&gt;<br />
41c70,71<br />
 cp get_plat_tag.sh $INSTALL_DIR/bin/<br />
&gt; check_retval $?<br />
46c76,78<br />
 SCRIPT_DIR=$(pwd)<br />
&gt; cd $INSTALL_DIR<br />
&gt; check_retval $?<br />
58a91<br />
&gt; check_retval $?<br />
65c98<br />
 cd $SCRIPT_DIR</p>
<p></code></p>
]]></content:encoded>
	</item>
</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->