From 92173588634d43f59fbad1ee891ace4a508e4226 Mon Sep 17 00:00:00 2001 From: Dima Dorfman Date: Wed, 6 Jun 2001 22:43:29 +0000 Subject: [PATCH] This file is moving to www/tools since that's a more orthogonal place for it (we have src/tools and ports/Tools, after all). --- share/bin/webupdate | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 share/bin/webupdate diff --git a/share/bin/webupdate b/share/bin/webupdate deleted file mode 100644 index 90d16fd23d..0000000000 --- a/share/bin/webupdate +++ /dev/null @@ -1,32 +0,0 @@ -#!/bin/sh -# Copyright (c) 2001 Wolfram Schneider -# -# update the FreeBSD Web-Server from the CVS repository -# -# $FreeBSD$ -# - -PATH=/bin:/usr/bin:/usr/local/bin; export PATH -CVSROOT=/home/ncvs; export CVSROOT - -build_dir=/usr/local/www/build -logfile=log.make.`date '+%d'` - -cd $build_dir || exit 2 - -cvs -qR update -dP www doc > $logfile 2>&1 || exit 2 - -# fresh checkout -# rm -rf www doc || exit 2 -# cvs -QR co www doc || exit 2 - -cd www || exit 2 -cd en || exit 2 - -# force a rebuild every week at sunday -case `date '+%u'` in 7) make clean > /dev/null 2>&1 ;; esac - -time make all > $logfile 2>&1 && - time make DESTDIR=/usr/local/www install >> $logfile 2>&1 || - tail -50 $logfile -