From 155fc60e9b883b842552d5dcfbf44353829aa863 Mon Sep 17 00:00:00 2001 From: Scott Ullrich Date: Sat, 8 Mar 2008 01:12:15 +0000 Subject: [PATCH] * Use general pkg for cvsup-without-gui * Download static cvs binary from files.pfsense.org --- etc/phpshellsessions/cvssync | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/etc/phpshellsessions/cvssync b/etc/phpshellsessions/cvssync index 0959082c7d..8915866705 100644 --- a/etc/phpshellsessions/cvssync +++ b/etc/phpshellsessions/cvssync @@ -27,12 +27,12 @@ unlink_if_exists("/tmp/config.cache"); if(!file_exists("/usr/local/bin/cvsup")) { echo "Cannot find cvsup, pkg_add in progress..."; - system("/usr/sbin/pkg_add -r http://www.pfsense.com/packages/All/cvsup-without-gui-16.1h_2.tbz"); + system("/usr/sbin/pkg_add -r cvsup-without-gui"); } if(!file_exists("/usr/bin/cvs")) { echo "Cannot find cvs, fetching static cvs..."; - system("fetch -o /usr/bin/cvs http://www.pfsense.com/~sullrich/extra/cvs"); + system("fetch -o /usr/bin/cvs http://files.pfsense.org/extras/7/cvs"); system("chmod a+rx /usr/bin/cvs"); }