12 lines
301 B
Bash
Executable file
12 lines
301 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# OS Pas propre mais c'est pas moi qui ait commencé...
|
|
#
|
|
|
|
if false && [ `id -g` != 102 ] && [ X$CVSROOT = "X/home/httpd/CVS-Repository" ]; then
|
|
echo "Faire 'newgrp webcvs' avant de commencer !!!"
|
|
exit 1
|
|
fi
|
|
exec /usr/bin/cvs ${1+"$@"}
|
|
# -P pour ne pas recreer les repertoires vides.
|
|
|