From: Mike N. <mh...@us...> - 2004-03-29 20:25:27
|
Update of /cvsroot/phpwebsite-comm/CVSROOT In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5989 Modified Files: enforce_permissions Log Message: change script to accommodate new chmod on cvs server Index: enforce_permissions =================================================================== RCS file: /cvsroot/phpwebsite-comm/CVSROOT/enforce_permissions,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** enforce_permissions 24 May 2003 21:18:25 -0000 1.3 --- enforce_permissions 29 Mar 2004 20:03:58 -0000 1.4 *************** *** 3,10 **** # This script will be used to enforce proper permissions on all files within # the repository. ! find /cvsroot/p/ph/phpwebsite-comm -type d -exec chmod 2775 {} \; ! find /cvsroot/p/ph/phpwebsite-comm/scripts -type f -exec chmod 0664 {} \; ! find /cvsroot/p/ph/phpwebsite-comm/documents -type f -exec chmod 0664 {} \; ! find /cvsroot/p/ph/phpwebsite-comm/modules -type f -exec chmod 0664 {} \; ! find /cvsroot/p/ph/phpwebsite-comm/themes -type f -exec chmod 0664 {} \; --- 3,10 ---- # This script will be used to enforce proper permissions on all files within # the repository. ! find /cvsroot/p/ph/phpwebsite-comm -type d ! -perm 2775 -exec chmod 2775 {} \; ! find /cvsroot/p/ph/phpwebsite-comm/scripts -type f ! -perm 0664 -exec chmod 0664 {} \; ! find /cvsroot/p/ph/phpwebsite-comm/documents -type f ! -perm 0664 -exec chmod 0664 {} \; ! find /cvsroot/p/ph/phpwebsite-comm/modules -type f ! -perm 0664 -exec chmod 0664 {} \; ! find /cvsroot/p/ph/phpwebsite-comm/themes -type f ! -perm 0664 -exec chmod 0664 {} \; |