Use our own git package and not the really old one from FreeBSD's ftp archive for 8.1

This commit is contained in:
jim-p 2013-02-15 15:57:16 -05:00
parent d6d775a6b5
commit 83e18db533

View File

@ -13,7 +13,10 @@ require_once("pfsense-utils.inc");
conf_mount_rw();
$GIT_PKG = "http://ftp-archive.freebsd.org/pub/FreeBSD-Archive/ports/`uname -m`/packages-8.1-release/All/git-1.7.1.1.tbz"; // Either "git" or the full package URL
$arch = php_uname("m");
$arch = ($arch == "i386") ? "" : '/' . $arch;
$GIT_PKG = "http://files.pfsense.org/packages{$arch}/8/All/git-1.8.1.3.tbz"; // Either "git" or the full package URL
$GIT_REPO = "git://github.com/bsdperimeter/pfsense.git";
$DEFAULT_BRANCH = "RELENG_2_0";
$CODIR = "/root/pfsense/";