[PC-BSD Commits] r2974 - websites/pbidir.com/bibivu/bin
svn at pcbsd.org
svn at pcbsd.org
Wed Nov 12 18:59:28 PST 2008
Author: fabry
Date: 2008-11-12 18:59:27 -0800 (Wed, 12 Nov 2008)
New Revision: 2974
Modified:
websites/pbidir.com/bibivu/bin/bibivu_cron.php
Log:
fixed a problem with the scripts that check the PBIs existence.
Modified: websites/pbidir.com/bibivu/bin/bibivu_cron.php
===================================================================
--- websites/pbidir.com/bibivu/bin/bibivu_cron.php 2008-11-13 00:40:13 UTC (rev 2973)
+++ websites/pbidir.com/bibivu/bin/bibivu_cron.php 2008-11-13 02:59:27 UTC (rev 2974)
@@ -32,7 +32,8 @@
return true;
break;
case 'pbis_watcher':
- $list = explode("\n",`/usr/local/bin/rsync --list-only -vaz isc.pcbsd.org::ftp | grep " PBI/" | sed -e "s,.* PBI/,PBI/,g" `);
+// $list = explode("\n",`/usr/local/bin/rsync --list-only -vaz isc.pcbsd.org::ftp | grep " PBI/" | sed -e "s,.* PBI/,PBI/,g" `);
+ $list = explode("\n",`/usr/local/bin/rsync --list-only -vaz isc.pcbsd.org::ftp | sed -e "s,.* ,,g" `);
$pbi_releases = load_library('pbi_release')->get_all();
$list_problems = array();
foreach($pbi_releases as $key=>$pbi_release){
More information about the Commits
mailing list