Commit 091f67fcac8b94b134a425fee841d16439a05eed

Authored by Michael Joseph
1 parent c4832e74

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 19 cd owl/Documents
20 20 cvs update -d
21 21  
  22 +# remove CVS directories
  23 +find $tmp -name CVS -exec rm -rf {} \; 2> /dev/null
  24 +
22 25 # tar it up
23 26 tar -czvf /tmp/owl.tgz $tmp
24 27  
... ...