[PC-BSD Commits] r19651 - pcbsd/current/src-sh/pbi-manager
svn at pcbsd.org
svn at pcbsd.org
Thu Oct 11 11:00:07 PDT 2012
Author: kris
Date: 2012-10-11 18:00:07 +0000 (Thu, 11 Oct 2012)
New Revision: 19651
Modified:
pcbsd/current/src-sh/pbi-manager/pbi-manager
Log:
Hide a bit more output to keep our log cleaner :)
Modified: pcbsd/current/src-sh/pbi-manager/pbi-manager
===================================================================
--- pcbsd/current/src-sh/pbi-manager/pbi-manager 2012-10-11 17:50:36 UTC (rev 19650)
+++ pcbsd/current/src-sh/pbi-manager/pbi-manager 2012-10-11 18:00:07 UTC (rev 19651)
@@ -6345,18 +6345,18 @@
ls ${_od}/*.pbi >/dev/null 2>/dev/null
if [ "$?" != "0" ] ; then return ; fi
- echo "Moving old PBIs from ${_od}/*.pbi -> ${_od}/archived/"
+ #echo "Moving old PBIs from ${_od}/*.pbi -> ${_od}/archived/"
mv ${_od}/*.pbi ${_od}/archived/ 2>/dev/null
mv ${_od}/*pbi.sha256 ${_od}/archived/ 2>/dev/null
# Prune anything beyond the _keepnum
- echo "Checking for more than $_keepnum PBIs in archive"
+ #echo "Checking for more than $_keepnum PBIs in archive"
oCount="1"
for oFile in `ls -t ${_od}/archived/*.pbi 2>/dev/null`
do
if [ -z "$oFile" ] ; then continue ; fi
if [ "$oCount" -gt "$_keepnum" ] ; then
- echo "Removing old PBI ${oFile} from archive"
+ #echo "Removing old PBI ${oFile} from archive"
rm ${oFile}*
fi
oCount=`expr $oCount + 1`
More information about the Commits
mailing list