diff options
author | peter <peter@FreeBSD.org> | 1995-11-27 13:11:53 +0800 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1995-11-27 13:11:53 +0800 |
commit | e6d817e24fce3292ed09b205a4f0005831c2ab65 (patch) | |
tree | b2707ae69e8ad5e4d4f86e9cc811f5a35d8398fa | |
parent | fd097c878be411b3c0262256bf3127206a70c218 (diff) | |
download | freebsd-ports-gnome-e6d817e24fce3292ed09b205a4f0005831c2ab65.tar.gz freebsd-ports-gnome-e6d817e24fce3292ed09b205a4f0005831c2ab65.tar.zst freebsd-ports-gnome-e6d817e24fce3292ed09b205a4f0005831c2ab65.zip |
Correct typo "commiters" -> "committers" as noticed by Satoshi
Also, try a simple sanity check in "commitcheck" to try and head off
accidental commits on thud over NFS...
-rwxr-xr-x | CVSROOT/commitcheck | 11 | ||||
-rwxr-xr-x | CVSROOT/log_accum.pl | 6 |
2 files changed, 13 insertions, 4 deletions
diff --git a/CVSROOT/commitcheck b/CVSROOT/commitcheck index 6c8f692df17d..7d9b5c3babfe 100755 --- a/CVSROOT/commitcheck +++ b/CVSROOT/commitcheck @@ -1,6 +1,15 @@ #! /bin/sh # -# $FreeBSD$ +# $Id$ + +case "`hostname`" in +freefall*) + : + ;; +*) + echo "Please commit on freefall...." + exit 1 +esac if /usr/bin/perl $CVSROOT/CVSROOT/cvs_acls.pl ${1+"$@"}; then if /usr/bin/perl $CVSROOT/CVSROOT/commit_prep.pl ${1+"$@"}; then diff --git a/CVSROOT/log_accum.pl b/CVSROOT/log_accum.pl index af4bcdb2ba9d..699d0fb19287 100755 --- a/CVSROOT/log_accum.pl +++ b/CVSROOT/log_accum.pl @@ -1,6 +1,6 @@ #!/usr/bin/perl -w # -# $Id: log_accum.pl,v 1.12 1995/11/02 09:30:21 peter Exp $ +# $Id: log_accum.pl,v 1.13 1995/11/02 10:03:09 peter Exp $ # # Perl filter to handle the log messages from the checkin of files in # a directory. This script will group the lists of files by log @@ -255,10 +255,10 @@ sub mail_notification { local(@text) = @_; local($names); local($mailing_lists); - $commiters = "CVS-commiters"; + $committers = "CVS-committers"; print "Mailing commit message...\n"; dbmopen(MAILFILE, "$MAIL_FILE.$id", 0666); - $mailing_lists = join(' ', $mlist, $commiters); + $mailing_lists = join(' ', $mlist, $committers); $names = join(" ", keys %MAILFILE) . " $mailing_lists"; $names =~ s,\n,,; dbmclose(MAILFILE); |