Commit cdba0bdd79eef4e7b44d39b9b370dfbf015368fc

Authored by michael
1 parent a08eeb94

readded fix_perms.sh


git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@672 c91229c3-7414-0410-bfa2-8a42b809f60b
bin/fix_perms.sh 0 → 100755
  1 +#!/bin/sh
  2 +
  3 +wwwroot=/usr/local/www/owl/dms
  4 +
  5 +chown -R www:wheel $wwwroot
  6 +touch $wwwroot/log.txt
  7 +#chown -R www:www $wwwroot/log.txt $wwwroot/Documents
  8 +chmod -R 750 $wwwroot/Documents/*
bin/remote_update.sh
@@ -19,6 +19,9 @@ cvs -d $cvsroot co owl @@ -19,6 +19,9 @@ cvs -d $cvsroot co owl
19 cd owl/Documents 19 cd owl/Documents
20 cvs update -d 20 cvs update -d
21 21
  22 +# remove CVS directories
  23 +find $tmp -name CVS -exec rm -rf {} \; 2> /dev/null
  24 +
22 # tar it up 25 # tar it up
23 tar -czvf /tmp/owl.tgz $tmp 26 tar -czvf /tmp/owl.tgz $tmp
24 27