Index: lib/tinderbox.env =================================================================== RCS file: /space/cvs/marcuscom-cvs/portstools/tinderbox/lib/tinderbox.env,v retrieving revision 1.27 diff -u -r1.27 tinderbox.env --- lib/tinderbox.env 2 Jun 2008 06:06:12 -0000 1.27 +++ lib/tinderbox.env 6 Jul 2009 17:39:29 -0000 @@ -17,6 +17,8 @@ #8PKGZIPCMD=bzip2 #8INDEXFILE=INDEX-8 #8X_WINDOW_SYSTEM=xorg +PKGSUFFIX=.tgz +PKG_SUFX=.tgz # LOCALBASE=/usr/local X11BASE=/usr/local Index: lib/Tinderbox/TinderboxDS.pm =================================================================== RCS file: /space/cvs/marcuscom-cvs/portstools/tinderbox/lib/Tinderbox/TinderboxDS.pm,v retrieving revision 1.91 diff -u -r1.91 TinderboxDS.pm --- lib/Tinderbox/TinderboxDS.pm 10 Sep 2008 17:05:17 -0000 1.91 +++ lib/Tinderbox/TinderboxDS.pm 6 Jul 2009 17:39:29 -0000 @@ -2125,7 +2125,7 @@ return ".tgz"; } - return ".tbz"; + return ".tgz"; } sub isLogCurrent { Index: webui/core/TinderboxDS.php =================================================================== RCS file: /space/cvs/marcuscom-cvs/portstools/tinderbox/webui/core/TinderboxDS.php,v retrieving revision 1.49 diff -u -r1.49 TinderboxDS.php --- webui/core/TinderboxDS.php 10 May 2009 19:58:25 -0000 1.49 +++ webui/core/TinderboxDS.php 6 Jul 2009 17:39:29 -0000 @@ -908,8 +908,8 @@ $this->packageSuffixCache[$jail_id] = '.tgz'; return '.tgz'; } else { - $this->packageSuffixCache[$jail_id] = '.tbz'; - return '.tbz'; + $this->packageSuffixCache[$jail_id] = '.tgz'; + return '.tgz'; } } }