Skip to content

Commit

Permalink
Switch configurations to point to 2.6.0.
Browse files Browse the repository at this point in the history
Reviewed by:	garga
  • Loading branch information
Glen Barber committed Jan 12, 2022
1 parent 89b2a39 commit f165480
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions src/etc/phpshellsessions/gitsync
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,14 @@ require_once("pfsense-utils.inc");
$GIT_PKG = "git"; // Either "git" or the full package URL
$GIT_BIN= "/usr/local/bin/git";
$GIT_REPO = "https://github.com/pfsense/pfsense.git";
$DEFAULT_BRANCH = "master";
$DEFAULT_BRANCH = "RELENG_2_6_0";
$CODIR = "/root/pfsense";
$GITSYNC_MERGE = "/root/.gitsync_merge";

/* NOTE: Set branches here */
$branches = array(
"master" => "2.6.0 development branch",
"RELENG_2_5_0" => "2.5.0 stable branch",
"master" => "2.7.0 development branch",
"RELENG_2_6_0" => "2.6.0 stable branch",
"build_commit" => "The commit originally used to build the image"
);

Expand Down
2 changes: 1 addition & 1 deletion src/etc/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.6.0-BETA
2.6.0-RC
4 changes: 2 additions & 2 deletions tools/builder_defaults.sh
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ if [ -z "${REPO_BRANCH_PREFIX}" ]; then
else
export POUDRIERE_PORTS_GIT_URL=${POUDRIERE_PORTS_GIT_URL:-"${GIT_REPO_BASE}/${REPO_BRANCH_PREFIX}ports.git"}
fi
export POUDRIERE_PORTS_GIT_BRANCH=${POUDRIERE_PORTS_GIT_BRANCH:-"${REPO_BRANCH_PREFIX}devel"}
export POUDRIERE_PORTS_GIT_BRANCH=${POUDRIERE_PORTS_GIT_BRANCH:-"${REPO_BRANCH_PREFIX}RELENG_2_6_0"}

# Use vX_Y instead of RELENG_X_Y for poudriere to make it shorter
POUDRIERE_PORTS_BRANCH=$(echo "${POUDRIERE_PORTS_GIT_BRANCH}" | sed 's,RELENG_,v,; s,-,_,g')
Expand Down Expand Up @@ -317,7 +317,7 @@ export CORE_PKG_REAL_PATH="${CORE_PKG_PATH}/.real_${DATESTRING}"
export CORE_PKG_ALL_PATH="${CORE_PKG_PATH}/All"

export PKG_REPO_BASE=${PKG_REPO_BASE:-"${BUILDER_TOOLS}/templates/pkg_repos"}
export PFSENSE_DEFAULT_REPO="${PRODUCT_NAME}-repo-devel"
export PFSENSE_DEFAULT_REPO="${PRODUCT_NAME}-repo"
export PKG_REPO_DEFAULT=${PKG_REPO_DEFAULT:-"${PKG_REPO_BASE}/${PFSENSE_DEFAULT_REPO}.conf"}
export PFSENSE_BUILD_REPO="${PFSENSE_DEFAULT_REPO}"
export PKG_REPO_BUILD=${PKG_REPO_BUILD:-"${PKG_REPO_BASE}/${PFSENSE_BUILD_REPO}.conf"}
Expand Down

0 comments on commit f165480

Please sign in to comment.