<?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 for Pascal&#039;s Blog - A brain backup</title>
	<atom:link href="http://pascal.nextrem.ch/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://pascal.nextrem.ch</link>
	<description>Solutions to all problems</description>
	<lastBuildDate>Fri, 25 Nov 2011 17:23:51 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
	<item>
		<title>Comment on VLC takes very long to start!? by sundar</title>
		<link>http://pascal.nextrem.ch/2009/03/28/vlc-takes-very-long-to-start/comment-page-1/#comment-451</link>
		<dc:creator>sundar</dc:creator>
		<pubDate>Fri, 25 Nov 2011 17:23:51 +0000</pubDate>
		<guid isPermaLink="false">http://pascal.nextrem.ch/?p=313#comment-451</guid>
		<description>excellent thanks a lot , working very fast thanks thanks thanks</description>
		<content:encoded><![CDATA[<p>excellent thanks a lot , working very fast thanks thanks thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HP Printer drivers (hpijs) for Mac OS X by JC</title>
		<link>http://pascal.nextrem.ch/2009/12/24/hp-printer-drivers-hpijs-for-mac-os-x/comment-page-1/#comment-449</link>
		<dc:creator>JC</dc:creator>
		<pubDate>Tue, 27 Sep 2011 15:30:31 +0000</pubDate>
		<guid isPermaLink="false">http://pascal.nextrem.ch/?p=345#comment-449</guid>
		<description>Hi Geert, I`ve noticed that you`ve been able to install this drivers in Lion, i wonder if you be so kind to email me the files you used to install, since the links to download them are down, i`ll be very thankful</description>
		<content:encoded><![CDATA[<p>Hi Geert, I`ve noticed that you`ve been able to install this drivers in Lion, i wonder if you be so kind to email me the files you used to install, since the links to download them are down, i`ll be very thankful</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to use VLC 0.8.x NetSync by Selios</title>
		<link>http://pascal.nextrem.ch/2008/08/17/how-to-use-vlc-netsync/comment-page-1/#comment-448</link>
		<dc:creator>Selios</dc:creator>
		<pubDate>Sun, 25 Sep 2011 17:55:24 +0000</pubDate>
		<guid isPermaLink="false">http://pascal.nextrem.ch/?p=30#comment-448</guid>
		<description>Thanks for this tutorial, worked like a charm on my PC/Mac setup.
I keep getting some stuttering on the slave computers, though.
They&#039;re connected by wifi, maybe I should try PLC...</description>
		<content:encoded><![CDATA[<p>Thanks for this tutorial, worked like a charm on my PC/Mac setup.<br />
I keep getting some stuttering on the slave computers, though.<br />
They&#8217;re connected by wifi, maybe I should try PLC&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Wuala init.d Script for Debian/Ubuntu (Improved) by Knut</title>
		<link>http://pascal.nextrem.ch/2009/10/20/wuala-init-d-script/comment-page-1/#comment-447</link>
		<dc:creator>Knut</dc:creator>
		<pubDate>Sun, 25 Sep 2011 09:41:45 +0000</pubDate>
		<guid isPermaLink="false">http://pascal.nextrem.ch/?p=330#comment-447</guid>
		<description>Thanks for some nice scripts. Came in handy when I had to dig out some old hardware and put together a dedicated wuala server using debian (6.0.x). If anyone needs a reference the hardware is an old compaq 433Mhz with 3xxMB RAM and 2x100GB HD. I did a fast and dirty server installation from the first debian CD. I regret I did not chose LVM configurations on the disks.

I got wuala running with the help of the &lt;a href=&quot;http://www.wuala.com/blog/2009/03/effective-usage-running-wuala-on-debian.html&quot; rel=&quot;nofollow&quot;&gt;effective-usage-running-wuala-on-debian&lt;/a&gt;. Notice that wuala has a deb package on their download site for you. Install it with &lt;code&gt;dpkg -i &lt;i&gt;filename&lt;/i&gt;&lt;/code&gt;. 

Now to the scripts.


This construct in the start (and possibly stop) function(s) needs a timeout.
&lt;code&gt;while ( ! uptest $usr)
	do
&lt;/code&gt;
In the start case the uptest always return false (I don&#039;t know why. Looks like ps don&#039;t return the expected result before you get a logon shell/prompt).
My modification &lt;code&gt;
let &quot;count=0&quot;
while ( ! uptest $usr &amp;&amp; [ $count -lt 2 ] )
let &quot;$count += 1&quot;
do 
&lt;/code&gt;

..:o)</description>
		<content:encoded><![CDATA[<p>Thanks for some nice scripts. Came in handy when I had to dig out some old hardware and put together a dedicated wuala server using debian (6.0.x). If anyone needs a reference the hardware is an old compaq 433Mhz with 3xxMB RAM and 2x100GB HD. I did a fast and dirty server installation from the first debian CD. I regret I did not chose LVM configurations on the disks.</p>
<p>I got wuala running with the help of the <a href="http://www.wuala.com/blog/2009/03/effective-usage-running-wuala-on-debian.html" rel="nofollow">effective-usage-running-wuala-on-debian</a>. Notice that wuala has a deb package on their download site for you. Install it with <code>dpkg -i <i>filename</i></code>. </p>
<p>Now to the scripts.</p>
<p>This construct in the start (and possibly stop) function(s) needs a timeout.<br />
<code>while ( ! uptest $usr)<br />
	do<br />
</code><br />
In the start case the uptest always return false (I don&#8217;t know why. Looks like ps don&#8217;t return the expected result before you get a logon shell/prompt).<br />
My modification <code><br />
let "count=0"<br />
while ( ! uptest $usr &amp;&amp; [ $count -lt 2 ] )<br />
let "$count += 1"<br />
do<br />
</code></p>
<p>..:o)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Automatically start SCREEN on SSH login by paz</title>
		<link>http://pascal.nextrem.ch/2010/04/30/automatically-start-screen-on-ssh-login/comment-page-1/#comment-446</link>
		<dc:creator>paz</dc:creator>
		<pubDate>Tue, 13 Sep 2011 07:22:32 +0000</pubDate>
		<guid isPermaLink="false">http://pascal.nextrem.ch/?p=394#comment-446</guid>
		<description>Merci für den Tipp!</description>
		<content:encoded><![CDATA[<p>Merci für den Tipp!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HP Printer drivers (hpijs) for Mac OS X by Geert</title>
		<link>http://pascal.nextrem.ch/2009/12/24/hp-printer-drivers-hpijs-for-mac-os-x/comment-page-1/#comment-445</link>
		<dc:creator>Geert</dc:creator>
		<pubDate>Mon, 05 Sep 2011 20:09:08 +0000</pubDate>
		<guid isPermaLink="false">http://pascal.nextrem.ch/?p=345#comment-445</guid>
		<description>Thank you so much for this info! It works fine in Lion as well :-)</description>
		<content:encoded><![CDATA[<p>Thank you so much for this info! It works fine in Lion as well <img src='http://pascal.nextrem.ch/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Wuala init.d Script for Debian/Ubuntu (Improved) by Daniel</title>
		<link>http://pascal.nextrem.ch/2009/10/20/wuala-init-d-script/comment-page-1/#comment-443</link>
		<dc:creator>Daniel</dc:creator>
		<pubDate>Mon, 01 Aug 2011 01:07:19 +0000</pubDate>
		<guid isPermaLink="false">http://pascal.nextrem.ch/?p=330#comment-443</guid>
		<description>I&#039;ve had it running for a couple of days now, and I think i&#039;ve stretched my low-end server system to the limit. I&#039;ve had one system freezeup. I may extend the script further to manage the number of instances based on server load, but that is just something to watch out for. Wuala as we all know is java based, and java has been and will always be bloated. so, if all of your wuala instances decide to start downloading other users encrypted data, their memory usage will skyrocket. and this causes a whole slew of issues.</description>
		<content:encoded><![CDATA[<p>I&#8217;ve had it running for a couple of days now, and I think i&#8217;ve stretched my low-end server system to the limit. I&#8217;ve had one system freezeup. I may extend the script further to manage the number of instances based on server load, but that is just something to watch out for. Wuala as we all know is java based, and java has been and will always be bloated. so, if all of your wuala instances decide to start downloading other users encrypted data, their memory usage will skyrocket. and this causes a whole slew of issues.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Wuala init.d Script for Debian/Ubuntu (Improved) by Pascal Bach</title>
		<link>http://pascal.nextrem.ch/2009/10/20/wuala-init-d-script/comment-page-1/#comment-442</link>
		<dc:creator>Pascal Bach</dc:creator>
		<pubDate>Sun, 31 Jul 2011 21:29:57 +0000</pubDate>
		<guid isPermaLink="false">http://pascal.nextrem.ch/?p=330#comment-442</guid>
		<description>Thanks for your script. I was working on a similar script handling multiple users but never finished it. Great addition.</description>
		<content:encoded><![CDATA[<p>Thanks for your script. I was working on a similar script handling multiple users but never finished it. Great addition.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Wuala init.d Script for Debian/Ubuntu (Improved) by Daniel</title>
		<link>http://pascal.nextrem.ch/2009/10/20/wuala-init-d-script/comment-page-1/#comment-440</link>
		<dc:creator>Daniel</dc:creator>
		<pubDate>Sun, 31 Jul 2011 09:32:03 +0000</pubDate>
		<guid isPermaLink="false">http://pascal.nextrem.ch/?p=330#comment-440</guid>
		<description>do comment out the code for creating the ~$usr/wuala It doesnt work properly for some reason. it works if you substitute in the username, just not as is. (I&#039;ve tried using &quot;&quot;) sorry for spamming up your comments, I hope its useful enough to warrant it.</description>
		<content:encoded><![CDATA[<p>do comment out the code for creating the ~$usr/wuala It doesnt work properly for some reason. it works if you substitute in the username, just not as is. (I&#8217;ve tried using &#8220;&#8221;) sorry for spamming up your comments, I hope its useful enough to warrant it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Wuala init.d Script for Debian/Ubuntu (Improved) by Daniel</title>
		<link>http://pascal.nextrem.ch/2009/10/20/wuala-init-d-script/comment-page-1/#comment-439</link>
		<dc:creator>Daniel</dc:creator>
		<pubDate>Sun, 31 Jul 2011 09:03:04 +0000</pubDate>
		<guid isPermaLink="false">http://pascal.nextrem.ch/?p=330#comment-439</guid>
		<description>I was frustrated by the 100gb limit, and also wanted a way to control wuala via the service. So using the same basic principles I wrote a new script. I now have a ubuntu based server that trades about 800gb of storage–don’t worry, I have an internet connection that can handle it.

It includes the ability to manage multiple instances of wuala, and also to pass a command wuala as one or more users. It took most of the leg work out of configuring and starting wuala.

I think its fairly well commented, but if you have any questions just reply, I’ll probably be checking here. (and sorry for cutting in Pascal, I love your work, but I just wanted to share this.)

&lt;pre&gt;
#! /bin/bash

### BEGIN INIT INFO
# Provides: Wuala 1tb system
# Required-Start: $network $local_fs $remote_fs
# Required-Stop: $network $local_fs $remote_fs
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: extensible wuala daemon (extwualad)
### END INIT INFO

##config info
#wuala users...
wualausrs=&quot;wuala0 wuala1 wuala2 wuala3 wuala4 wuala5 wuala6 wuala7 wuala8 wuala9&quot;
#location of wuala cmd. $usr variable is allowed.
wualadir=&quot;/usr/bin/wuala/&quot;
##end config info

uptest() {
	#checks if wuala is running for input user. outputs either verbosely or as an exit status.
	if (ps -f -u &quot;$1&quot;&#124;grep loader3.jar&#124;grep -v grep&gt;/dev/null)
	#if wuala is in users processes
	then
	[ &quot;$2&quot; = &quot;verbose&quot; ] &amp;&amp; echo &quot;$1 - Up&quot;
	return 0
	else
	[ &quot;$2&quot; = &quot;verbose&quot; ] &amp;&amp; echo &quot;$1 - Down&quot;
	return 1
	fi
}
running() {
#displays running instances in list form
#clear variables
run=
norun=
	for usr in $wualausrs
	do
		uptest $usr &amp;&amp; run=&quot;$run$usr &quot; &#124;&#124; norun=&quot;$norun$usr &quot;
		#uptest and output to each list
	done
	if [ &quot;$1&quot; = &quot;not&quot; ]
		#return run or norun list based on arg
		then
		echo $norun
		else
		echo $run
	fi
}
start() {
	[ -p /dev/fd/0 ] &amp;&amp; read data &#124;&#124; data=&quot;$@&quot;
	echo &quot;starting wuala ...&quot;
	#check for log dir
	[ -d /var/log/wuala/start ] &#124;&#124; mkdir -p /var/log/wuala/start
	#start each user and write log files.
	for usr in $data
	do
	#check for wuala directory used by defaut (comment this out if unneeded
	[ -d ~$usr/wuala ] &#124;&#124; mkdir ~$usr/wuala
		su -c &quot;cd $wualadir; ./wualacmd&amp;&quot; $usr &gt;&gt; /var/log/wuala/start/$(date +%Y%m%d).$usr.log 2&gt;&gt;/var/log/wuala/start/$(date +%Y%m%d).$usr.err.log
	done
	for usr in $data
	do
	#wait for each one to exit and display uptest
	while ( ! uptest $usr)
	do
	sleep 1
	done
	uptest $usr verbose
	done
}

stop() {
	[ -p /dev/fd/0 ] &amp;&amp; read data &#124;&#124; data=&quot;$@&quot;
	#read from pipe if avail
	echo &quot;stopping wuala ...&quot;
	[ -d /var/log/wuala/stop ] &#124;&#124; mkdir -p /var/log/wuala/stop
	#check for logdir
	#stop each usr and write log files.
	for usr in $data
	do
	#check for wuala directory used by defaut (comment this out if unneeded
	[ -d ~$usr/wuala ] &#124;&#124; mkdir ~$usr/wuala
		su -c &quot;cd $wualadir; ./wualacmd exit&amp;&quot; $usr &gt;&gt; /var/log/wuala/stop/$(date +%Y%m%d).$usr.log 2&gt;&gt;/var/log/wuala/stop/$(date +%Y%m%d).$usr.err.log
	done
	#then wait for each one to exit/display uptest
	for usr in $data
	do
	while (uptest $usr)
	do
	sleep 1
	done
	uptest $usr verbose
	done
}
status(){
	[ -p /dev/fd/0 ] &amp;&amp; read data &#124;&#124; data=&quot;$@&quot;
	#read from pipe if avail
	for usr in $data
	do
	uptest $usr verbose
	#verbose uptest
	done
}
cleanup() {
	oldlogs=$(find /var/log/wuala -mtime +30 -iname *.log)
	for file in $oldlogs
	do
		rm &quot;$file&quot;
	done
}

cleanup
#clean up old log files (older than 30 days)
#next, case statements...
case &quot;$1&quot; in
    start)
		case &quot;$2&quot; in
			all)
			#starts all wuala instances
				start &quot;$wualausrs&quot;
			;;
			&quot;&quot;)
			#DEFAULT starts all not running instances
				running not&#124;start
			;;
			*)
			#wildcard for starting as specific users
				start &quot;$2&quot;
			;;
        esac
	;;

    stop)
		case &quot;$2&quot; in
			all)
				stop &quot;$wualausrs&quot;
			;;
			&quot;&quot;)
				running&#124;stop
			;;
			*)
				stop &quot;$2&quot;
			;;
        esac
	;;

    restart&#124;reload&#124;force-reload)
		case &quot;$2&quot; in
			all)
			#runs exit on all users wuala instances (whether or not they were originally running) and then starts all wuala instances.
				stop &quot;$wualausrs&quot;
				start &quot;$wualausrs&quot;
			;;
			&quot;&quot;)
			#DEFAULT stops running wuala instances and starts all wuala instances (to save time)
				running&#124;stop
				start &quot;$wualausrs&quot;
			;;
			*)
			#wildcard for requesting specific users
				stop &quot;$2&quot;
				start &quot;$2&quot;
			;;
		esac
	;;

    status)
		case &quot;$2&quot; in
			running)
			#status of all running wuala instances
				status &quot;$(running)&quot;
			;;
			&quot;&quot;)
			#status of all wualausrs instances
				status &quot;$wualausrs&quot;
			;;
			*)
			#wildcard for requesting specific users
				status &quot;$2&quot;
			;;
		esac
	;;
	[Pp]ass)
		#pass commands to one or more wuala instances.
		for usr in  $([ &quot;$2&quot; = &quot;all&quot; ] &amp;&amp; echo $wualausrs &#124;&#124; echo &quot;$2&quot; )
		#if user is &quot;all&quot; then it does this for all users in $wualausrs
		do
			args=$(echo &quot;$@&quot;&#124;sed &quot;s/$1 $2 //&quot;)
			#extract arguments
			echo &quot;$usr $args&quot;
			su -c &quot;cd $wualadir; ./wualacmd $args&quot; $usr&#124;grep -v &quot;Running on console&quot;&#124;grep -v &quot;/usr/bin/java&quot;&#124;grep -v &quot;Loader 3 version&quot;
			#do commands for each user
		done
	;;
    *)
        echo &quot;Usage: /etc/init.d/wualad {start&#124;stop&#124;reload&#124;force-reload&#124;restart&#124;status&#124;pass}&quot;
		status &quot;$wualausrs&quot;
        exit 1
	;;
esac
&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>I was frustrated by the 100gb limit, and also wanted a way to control wuala via the service. So using the same basic principles I wrote a new script. I now have a ubuntu based server that trades about 800gb of storage–don’t worry, I have an internet connection that can handle it.</p>
<p>It includes the ability to manage multiple instances of wuala, and also to pass a command wuala as one or more users. It took most of the leg work out of configuring and starting wuala.</p>
<p>I think its fairly well commented, but if you have any questions just reply, I’ll probably be checking here. (and sorry for cutting in Pascal, I love your work, but I just wanted to share this.)</p>
<pre>
#! /bin/bash

### BEGIN INIT INFO
# Provides: Wuala 1tb system
# Required-Start: $network $local_fs $remote_fs
# Required-Stop: $network $local_fs $remote_fs
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: extensible wuala daemon (extwualad)
### END INIT INFO

##config info
#wuala users...
wualausrs="wuala0 wuala1 wuala2 wuala3 wuala4 wuala5 wuala6 wuala7 wuala8 wuala9"
#location of wuala cmd. $usr variable is allowed.
wualadir="/usr/bin/wuala/"
##end config info

uptest() {
	#checks if wuala is running for input user. outputs either verbosely or as an exit status.
	if (ps -f -u "$1"|grep loader3.jar|grep -v grep&gt;/dev/null)
	#if wuala is in users processes
	then
	[ "$2" = "verbose" ] &amp;&amp; echo "$1 - Up"
	return 0
	else
	[ "$2" = "verbose" ] &amp;&amp; echo "$1 - Down"
	return 1
	fi
}
running() {
#displays running instances in list form
#clear variables
run=
norun=
	for usr in $wualausrs
	do
		uptest $usr &amp;&amp; run="$run$usr " || norun="$norun$usr "
		#uptest and output to each list
	done
	if [ "$1" = "not" ]
		#return run or norun list based on arg
		then
		echo $norun
		else
		echo $run
	fi
}
start() {
	[ -p /dev/fd/0 ] &amp;&amp; read data || data="$@"
	echo "starting wuala ..."
	#check for log dir
	[ -d /var/log/wuala/start ] || mkdir -p /var/log/wuala/start
	#start each user and write log files.
	for usr in $data
	do
	#check for wuala directory used by defaut (comment this out if unneeded
	[ -d ~$usr/wuala ] || mkdir ~$usr/wuala
		su -c "cd $wualadir; ./wualacmd&amp;" $usr &gt;&gt; /var/log/wuala/start/$(date +%Y%m%d).$usr.log 2&gt;&gt;/var/log/wuala/start/$(date +%Y%m%d).$usr.err.log
	done
	for usr in $data
	do
	#wait for each one to exit and display uptest
	while ( ! uptest $usr)
	do
	sleep 1
	done
	uptest $usr verbose
	done
}

stop() {
	[ -p /dev/fd/0 ] &amp;&amp; read data || data="$@"
	#read from pipe if avail
	echo "stopping wuala ..."
	[ -d /var/log/wuala/stop ] || mkdir -p /var/log/wuala/stop
	#check for logdir
	#stop each usr and write log files.
	for usr in $data
	do
	#check for wuala directory used by defaut (comment this out if unneeded
	[ -d ~$usr/wuala ] || mkdir ~$usr/wuala
		su -c "cd $wualadir; ./wualacmd exit&amp;" $usr &gt;&gt; /var/log/wuala/stop/$(date +%Y%m%d).$usr.log 2&gt;&gt;/var/log/wuala/stop/$(date +%Y%m%d).$usr.err.log
	done
	#then wait for each one to exit/display uptest
	for usr in $data
	do
	while (uptest $usr)
	do
	sleep 1
	done
	uptest $usr verbose
	done
}
status(){
	[ -p /dev/fd/0 ] &amp;&amp; read data || data="$@"
	#read from pipe if avail
	for usr in $data
	do
	uptest $usr verbose
	#verbose uptest
	done
}
cleanup() {
	oldlogs=$(find /var/log/wuala -mtime +30 -iname *.log)
	for file in $oldlogs
	do
		rm "$file"
	done
}

cleanup
#clean up old log files (older than 30 days)
#next, case statements...
case "$1" in
    start)
		case "$2" in
			all)
			#starts all wuala instances
				start "$wualausrs"
			;;
			"")
			#DEFAULT starts all not running instances
				running not|start
			;;
			*)
			#wildcard for starting as specific users
				start "$2"
			;;
        esac
	;;

    stop)
		case "$2" in
			all)
				stop "$wualausrs"
			;;
			"")
				running|stop
			;;
			*)
				stop "$2"
			;;
        esac
	;;

    restart|reload|force-reload)
		case "$2" in
			all)
			#runs exit on all users wuala instances (whether or not they were originally running) and then starts all wuala instances.
				stop "$wualausrs"
				start "$wualausrs"
			;;
			"")
			#DEFAULT stops running wuala instances and starts all wuala instances (to save time)
				running|stop
				start "$wualausrs"
			;;
			*)
			#wildcard for requesting specific users
				stop "$2"
				start "$2"
			;;
		esac
	;;

    status)
		case "$2" in
			running)
			#status of all running wuala instances
				status "$(running)"
			;;
			"")
			#status of all wualausrs instances
				status "$wualausrs"
			;;
			*)
			#wildcard for requesting specific users
				status "$2"
			;;
		esac
	;;
	[Pp]ass)
		#pass commands to one or more wuala instances.
		for usr in  $([ "$2" = "all" ] &amp;&amp; echo $wualausrs || echo "$2" )
		#if user is "all" then it does this for all users in $wualausrs
		do
			args=$(echo "$@"|sed "s/$1 $2 //")
			#extract arguments
			echo "$usr $args"
			su -c "cd $wualadir; ./wualacmd $args" $usr|grep -v "Running on console"|grep -v "/usr/bin/java"|grep -v "Loader 3 version"
			#do commands for each user
		done
	;;
    *)
        echo "Usage: /etc/init.d/wualad {start|stop|reload|force-reload|restart|status|pass}"
		status "$wualausrs"
        exit 1
	;;
esac
</pre>
]]></content:encoded>
	</item>
</channel>
</rss>

