/usr/bin/ae-cvs-ci is in aegis 4.24.3-3.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | #!/bin/sh
#
# aegis - project change supervisor
# Copyright (C) 2004, 2006 Peter Miller
#
# As a specific exception to the GPL, you are allowed to copy
# this source file into you own project and modify it, without
# releasing your project under the GPL, unless there is some other
# file or condition which would require it.
#
# MANIFEST: shell script to commit changes to CVS
#
case $# in
2)
project=$1
change=$2
;;
*)
echo "Usage: $0 <project> <change>" 1>&2
exit 1
;;
esac
here=`pwd`
AEGIS_PROJECT=$project
export AEGIS_PROJECT
AEGIS_CHANGE=$change
export AEGIS_CHANGE
exec ae-repo-ci --repository=cvs --project=$project --change=$change
|