Fixed to make the command portable on BSD/Solaris.

This commit is contained in:
Loic d'Anterroches
2009-06-19 21:37:39 +02:00
parent d6c0b7a680
commit 6cf4f00f92
4 changed files with 10 additions and 10 deletions

View File

@@ -319,14 +319,14 @@ function IDF_Views_Admin_getForgeSize()
$res['repositories'] += $size;
}
}
$cmd = Pluf::f('idf_exec_cmd_prefix', '').'du -bs '
$cmd = Pluf::f('idf_exec_cmd_prefix', '').'du -sk '
.escapeshellarg(Pluf::f('upload_path'));
$out = split(' ', shell_exec($cmd), 2);
$res['downloads'] = $out[0];
$cmd = Pluf::f('idf_exec_cmd_prefix', '').'du -bs '
$res['downloads'] = $out[0]*1024;
$cmd = Pluf::f('idf_exec_cmd_prefix', '').'du -sk '
.escapeshellarg(Pluf::f('upload_issue_path'));
$out = split(' ', shell_exec($cmd), 2);
$res['attachments'] = $out[0];
$res['attachments'] = $out[0]*1024;
$res['total'] = $res['repositories'] + $res['downloads'] + $res['attachments'];
// TODO: now we need the db
return $res;