diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2011-01-07 17:39:03 -0500 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2011-01-07 17:39:03 -0500 |
commit | 1c42331b093fb03b6c150b80626979add7b40605 (patch) | |
tree | 7d7ce83ffc3f0f140a378d067dcd72922d56349f | |
parent | 52f4c092b14cca36bcc430717baf907273b66532 (diff) | |
download | pfsense-1c42331b093fb03b6c150b80626979add7b40605.zip pfsense-1c42331b093fb03b6c150b80626979add7b40605.tar.gz |
Stop spewing backup info on bootup
-rw-r--r-- | etc/inc/config.lib.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/inc/config.lib.inc b/etc/inc/config.lib.inc index 0e4d754..922d01d 100644 --- a/etc/inc/config.lib.inc +++ b/etc/inc/config.lib.inc @@ -756,7 +756,7 @@ function cleanup_backupcache($revisions = 30, $lock = false) { foreach($tocache as $version => $versioninfo) { if(!in_array($version, array_keys($newcache))) { unlink_if_exists($g['conf_path'] . '/backup/config-' . $version . '.xml'); - if($g['booting']) print " " . $tocheck . "d"; + //if($g['booting']) print " " . $tocheck . "d"; } } $tocache = $newcache; |