<?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: svnbak.pl: perl Subversion repository backup script</title>
	<atom:link href="http://www.zulius.com/freebies/perl-script-backup-subversion-repositories/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.zulius.com/freebies/perl-script-backup-subversion-repositories/</link>
	<description>Advanced Application Development</description>
	<lastBuildDate>Tue, 07 Feb 2012 19:41:08 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: bash - execute on each directory within a directory</title>
		<link>http://www.zulius.com/freebies/perl-script-backup-subversion-repositories/comment-page-1/#comment-397</link>
		<dc:creator>bash - execute on each directory within a directory</dc:creator>
		<pubDate>Tue, 25 Oct 2011 23:10:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.zulius.com/blog/?p=167#comment-397</guid>
		<description>[...] Also, have a look at svnbak.pl. It takes care of backing up and rotating/archiving...   http://www.zulius.com/freebies/perl-...-repositories/ [...]</description>
		<content:encoded><![CDATA[<p>[...] Also, have a look at svnbak.pl. It takes care of backing up and rotating/archiving...   <a href="http://www.zulius.com/freebies/perl-...-repositories/" rel="nofollow">http://www.zulius.com/freebies/perl-...-repositories/</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Folley</title>
		<link>http://www.zulius.com/freebies/perl-script-backup-subversion-repositories/comment-page-1/#comment-263</link>
		<dc:creator>Folley</dc:creator>
		<pubDate>Wed, 08 Sep 2010 23:21:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.zulius.com/blog/?p=167#comment-263</guid>
		<description>Hi Tim,
I tried use the PATH, but it&#039;s not work, so I put the absolute path and works.  Thanks.  Later, I will fix this issue in my computer and use with no absolute path.</description>
		<content:encoded><![CDATA[<p>Hi Tim,<br />
I tried use the PATH, but it's not work, so I put the absolute path and works.  Thanks.  Later, I will fix this issue in my computer and use with no absolute path.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tim White</title>
		<link>http://www.zulius.com/freebies/perl-script-backup-subversion-repositories/comment-page-1/#comment-256</link>
		<dc:creator>Tim White</dc:creator>
		<pubDate>Fri, 03 Sep 2010 17:20:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.zulius.com/blog/?p=167#comment-256</guid>
		<description>@Folley
&lt;p style=&quot;margin-top: 10px&quot;&gt;It sounds like the location of the svnadmin binary isn&#039;t in the PATH variable for the user you&#039;re running the cronjob as.  You might try this:&lt;/p&gt;
&lt;p style=&quot;margin-top: 10px&quot;&gt;Login as the cronjob user.&lt;/p&gt;
&lt;p style=&quot;margin-top: 10px&quot;&gt;Type &quot;echo $PATH&quot; to see what directories the user has in the PATH variable.&lt;/p&gt;
&lt;p style=&quot;margin-top: 10px&quot;&gt;Type &quot;whereis svnadmin&quot; to get the location of the svnadmin binary.  It will probably return something like &quot;/usr/bin/svnadmin&quot;.&lt;/p&gt;
&lt;p style=&quot;margin-top: 10px&quot;&gt;If the directory to svnadmin isn&#039;t in your PATH variable, you can permanently add it by editing ~/.bash_profile and adding the directory to the PATH variable.&lt;/p&gt;

&lt;p style=&quot;margin-top: 20px&quot;&gt;
The other quick and dirty way to fix this would be to replace all calls to &quot;svnadmin&quot; in the svnbak.pl script with the absolute path to the binary (ie. &quot;/usr/bin/svnadmin&quot;).&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>@Folley</p>
<p style="margin-top: 10px">It sounds like the location of the svnadmin binary isn't in the PATH variable for the user you're running the cronjob as.  You might try this:</p>
<p style="margin-top: 10px">Login as the cronjob user.</p>
<p style="margin-top: 10px">Type "echo $PATH" to see what directories the user has in the PATH variable.</p>
<p style="margin-top: 10px">Type "whereis svnadmin" to get the location of the svnadmin binary.  It will probably return something like "/usr/bin/svnadmin".</p>
<p style="margin-top: 10px">If the directory to svnadmin isn't in your PATH variable, you can permanently add it by editing ~/.bash_profile and adding the directory to the PATH variable.</p>
<p style="margin-top: 20px">
The other quick and dirty way to fix this would be to replace all calls to "svnadmin" in the svnbak.pl script with the absolute path to the binary (ie. "/usr/bin/svnadmin").</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Folley</title>
		<link>http://www.zulius.com/freebies/perl-script-backup-subversion-repositories/comment-page-1/#comment-255</link>
		<dc:creator>Folley</dc:creator>
		<pubDate>Fri, 03 Sep 2010 17:05:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.zulius.com/blog/?p=167#comment-255</guid>
		<description>Hi,
Nice script, it&#039;s work well manually. But when I configure cron to use it, it doesn&#039;t work.  The error report says: 
&quot;sh: line 1: svnadmin: command not found&quot;.
I verified if was permissions problem, but, It was.
Unfortunately I&#039;m still working to resolve this issue, but if you have some ideas to help, I will appreciate.
Thanks again.</description>
		<content:encoded><![CDATA[<p>Hi,<br />
Nice script, it's work well manually. But when I configure cron to use it, it doesn't work.  The error report says:<br />
"sh: line 1: svnadmin: command not found".<br />
I verified if was permissions problem, but, It was.<br />
Unfortunately I'm still working to resolve this issue, but if you have some ideas to help, I will appreciate.<br />
Thanks again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tim White</title>
		<link>http://www.zulius.com/freebies/perl-script-backup-subversion-repositories/comment-page-1/#comment-212</link>
		<dc:creator>Tim White</dc:creator>
		<pubDate>Tue, 20 Jul 2010 03:19:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.zulius.com/blog/?p=167#comment-212</guid>
		<description>@Leap - incremental backup isn&#039;t implemented.  Admittedly, that would be a nice feature (I believe &quot;svnadmin dump&quot; even has an incremental flag).</description>
		<content:encoded><![CDATA[<p>@Leap - incremental backup isn't implemented.  Admittedly, that would be a nice feature (I believe "svnadmin dump" even has an incremental flag).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Leap</title>
		<link>http://www.zulius.com/freebies/perl-script-backup-subversion-repositories/comment-page-1/#comment-211</link>
		<dc:creator>Leap</dc:creator>
		<pubDate>Tue, 20 Jul 2010 03:04:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.zulius.com/blog/?p=167#comment-211</guid>
		<description>How about incremental backup? 
Thanks</description>
		<content:encoded><![CDATA[<p>How about incremental backup?<br />
Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tim White</title>
		<link>http://www.zulius.com/freebies/perl-script-backup-subversion-repositories/comment-page-1/#comment-210</link>
		<dc:creator>Tim White</dc:creator>
		<pubDate>Thu, 08 Jul 2010 14:00:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.zulius.com/blog/?p=167#comment-210</guid>
		<description>@Leap I typically use Postfix.  Check out: http://www.zulius.com/how-to/set-up-postfix-with-a-remote-smtp-relay-host/</description>
		<content:encoded><![CDATA[<p>@Leap I typically use Postfix.  Check out: <a href="http://www.zulius.com/how-to/set-up-postfix-with-a-remote-smtp-relay-host/" rel="nofollow">http://www.zulius.com/how-to/set-up-postfix-with-a-remote-smtp-relay-host/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lea</title>
		<link>http://www.zulius.com/freebies/perl-script-backup-subversion-repositories/comment-page-1/#comment-209</link>
		<dc:creator>Lea</dc:creator>
		<pubDate>Thu, 08 Jul 2010 09:35:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.zulius.com/blog/?p=167#comment-209</guid>
		<description>It is working for the scp to remote server. thanks so much. 
But the email is not working. do you have any detail instruction to configure email. 

Thanks again</description>
		<content:encoded><![CDATA[<p>It is working for the scp to remote server. thanks so much.<br />
But the email is not working. do you have any detail instruction to configure email. </p>
<p>Thanks again</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tim White</title>
		<link>http://www.zulius.com/freebies/perl-script-backup-subversion-repositories/comment-page-1/#comment-208</link>
		<dc:creator>Tim White</dc:creator>
		<pubDate>Wed, 07 Jul 2010 13:27:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.zulius.com/blog/?p=167#comment-208</guid>
		<description>@Leap-
&lt;p&gt;
Sure an SCP command could easily be added to this script.  If I were you, I&#039;d add it to the &quot;if gzip successful&quot; code block at Line 344 (v0.0.7).
&lt;/p&gt;
&lt;p style=&quot;margin-top: 10px&quot;&gt;
Since SCP uses SSH, another option would be to mount the remote filesystem using SSHFS (ie: /mnt/remoteserver).  Once mounted, just set the &quot;destDir&quot; config option to the directory on the remote server (ie /mnt/remoteserver/path/to/destination/directory).
&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>@Leap-</p>
<p>
Sure an SCP command could easily be added to this script.  If I were you, I'd add it to the "if gzip successful" code block at Line 344 (v0.0.7).
</p>
<p style="margin-top: 10px">
Since SCP uses SSH, another option would be to mount the remote filesystem using SSHFS (ie: /mnt/remoteserver).  Once mounted, just set the "destDir" config option to the directory on the remote server (ie /mnt/remoteserver/path/to/destination/directory).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Leap</title>
		<link>http://www.zulius.com/freebies/perl-script-backup-subversion-repositories/comment-page-1/#comment-206</link>
		<dc:creator>Leap</dc:creator>
		<pubDate>Wed, 07 Jul 2010 04:48:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.zulius.com/blog/?p=167#comment-206</guid>
		<description>It is working. thanks for the script.
But i am also looking for a way to backup (scp) to remote server for offside. is there anyway we can add to the script?

Thanks</description>
		<content:encoded><![CDATA[<p>It is working. thanks for the script.<br />
But i am also looking for a way to backup (scp) to remote server for offside. is there anyway we can add to the script?</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
</channel>
</rss>

