File:  [LON-CAPA] / doc / loncapafiles / reseval_fixup.piml
Revision 1.2: download - view: text, annotated - select for diffs
Tue Aug 13 20:50:14 2002 UTC (21 years, 7 months ago) by matthew
Branches: MAIN
CVS tags: HEAD
Make it shut up.

<!-- sanitycheck.piml -->
<!-- Scott Harrison -->

<!-- $Id: reseval_fixup.piml,v 1.2 2002/08/13 20:50:14 matthew Exp $ -->

<!--

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/

-->

<piml>
<targetroot>/</targetroot>
<files>
<file>
<target dist="default">/home/httpd/lonUsers</target>
<perlscript mode="fg">
# get a list of all user directories
my @dirs=`find <TARGET /> -type d `;
my @userdirs=grep(m|/[^/]*/[^/]*/[^/]*/[^/]*/[^/]*/[^/]*/[^/]*/[^/]*|, @dirs);
foreach my $udir (@userdirs) {
  chomp($udir);
  if (-e "$udir/resevaldata.hist") {
    unlink("$udir/resevaldata.hist");
  }
  if (-e "$udir/resevaldata.db") {
    `mv $udir/resevaldata.db $udir/nohist_resevaldata.db`;
  }
}
</perlscript>
</file>
</files>
</piml>

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>