*** empty log message ***

This commit is contained in:
Olivier Sirol 2001-07-03 14:07:44 +00:00
parent 90e21f1f1f
commit df22d5e156
2 changed files with 28 additions and 6 deletions

View File

@ -7,7 +7,7 @@
# Author: Frédéric Pétrot (fred@pasta.fr.ea)
# for version 0
#
# $Id: instool,v 1.25 2001/05/22 14:19:45 czo Exp $
# $Id: instool,v 1.26 2001/07/03 14:07:44 czo Exp $
#
@ -335,7 +335,7 @@ echo " a message MUST be given for each installation"
#echo $* | mail -s "ALC : Install of `basename $1`" alliance-programmers@asim.lip6.fr
TMPFILE=/tmp/instool.$$
FINGER=`who am i | gawk '{gsub(/^[^\!]*\!/,""); print $1}'`
FINGER=`who am i | awk '{gsub(/^[^\!]*\!/,""); print $1}'`
SUJ="Instool de `basename $1`"
(
@ -358,10 +358,10 @@ cat "$TMPFILE" | mail -s "ALC : $SUJ" alliance-programmers@asim.lip6.fr
rm -f "$TMPFILE" dummy
echo "Launching chgrp and chmod ..."
chmod -R ug+w /users/soft5/newlabo/alliance
chgrp -R alliance /users/soft5/newlabo/alliance
# echo "Launching chgrp and chmod ..."
# chgrp -R 30101 /users/soft5/newlabo/alliance-4.5.0
# chmod -R ug+rw /users/soft5/newlabo/alliance-4.5.0
# find /users/soft5/newlabo/alliance-4.5.0 -type d | xargs chmod 2775
exit 0

22
CVSROOT/setperms Executable file
View File

@ -0,0 +1,22 @@
#!/bin/sh
#
# Filename: setperms
# Copyright (C) 1999, 2000 Czo <Olivier.Sirol@lip6.fr>
# License: GPL (http://www.gnu.org/copyleft/gpl.html)
# Started: April 2000
# Last Change: Tuesday 03 July 2001, 16:06
# Edit Time: 0:13:29
# Description:
#
# $Id: setperms,v 1.1 2001/07/03 14:07:44 czo Exp $
#
echo %%%%%%% Hello
echo "Launching chgrp and chmod ..."
find /users/soft5/newlabo/alliance-4.5.0 -type d | xargs chmod 2775
chgrp -R 30101 /users/soft5/newlabo/alliance-4.5.0
chmod -R ug+rw /users/soft5/newlabo/alliance-4.5.0
exit 0