[LON-CAPA-cvs] cvs: doc /loncapafiles sendmail_fix.piml
harris41
lon-capa-cvs@mail.lon-capa.org
Thu, 15 Aug 2002 15:52:00 -0000
harris41 Thu Aug 15 11:52:00 2002 EDT
Added files:
/doc/loncapafiles sendmail_fix.piml
Log:
formally incorporating sendmail fix into a .piml file
Index: doc/loncapafiles/sendmail_fix.piml
+++ doc/loncapafiles/sendmail_fix.piml
<!DOCTYPE piml PUBLIC "-//TUX/DTD piml 1.0 Final//EN"
"http://lpml.sourceforge.net/DTD/piml.dtd">
<!-- sendmail_fix.piml -->
<!-- Scott Harrison -->
<!-- $Id: sendmail_fix.piml,v 1.1 2002/08/15 15:52:00 harris41 Exp $ -->
<!--
Copyright Michigan State University Board of Trustees
This file is part of the LearningOnline Network with CAPA (LON-CAPA).
LON-CAPA is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
LON-CAPA is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with LON-CAPA; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
/home/httpd/html/adm/gpl.txt
http://www.lon-capa.org/
-->
<!-- Default values must be defined before specific values. -->
<!-- If no 'dist' attribute is specified, then it is always installed. -->
<!-- If 'dist' attribute is set to 'default', then the specification. -->
<!-- is accepted if an alternative distribution is not requested or not -->
<!-- defined. -->
<piml>
<targetroot>/</targetroot>
<specialnotices>
<specialnotice>
</specialnotice>
</specialnotices>
<files>
<file>
<target dist='default'>/</target>
<note>Unless we remove group ownership from root directory, sendmail complains.
</note>
<perlscript mode='fg'>
# Generated from doc/loncapafiles/sendmail_fix.piml
unless (-e "<TARGET />") {
print('ERROR! Where is the root directory on this strange filesystem!');
exit(1);
}
else {
`chmod g-w,u+w <TARGET />`;
}
</perlscript>
</file>
</files>
</piml>