aboutsummaryrefslogtreecommitdiffstats
path: root/CVSROOT/commitcheck
blob: 7d9b5c3babfef6b85db1b1a6535ef41408ef47ed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#! /bin/sh
#
# $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
      exit 0
   fi
fi

exit 1