Skip to Content.
Sympa Menu

sm-commit - Re: [SM-Commit] PERFORCE change 79538 by David Kowis for review

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Ladislav Hagara <ladislav.hagara AT unob.cz>
  • To: David Kowis <dkowis AT shlrm.org>
  • Cc: duane_malcolm <d.malcolm AT auckland.ac.nz>, Unet <unet AT sourcemage.org>, Andrew Stitt <a AT thefrayedknot.armory.com>, SM-Commit Daemon <sm-commit AT lists.ibiblio.org>, Arjan Bouter <abouter AT sourcemage.org>, vladimir_marek <vlmarek AT volny.cz>, Maurizio Boriani <baux AT member.fsf.org>, Ethan Grammatikidis <eekee AT eekee.is-a-geek.org>, Gareth Clay <gareth AT caffeinefuelled.co.uk>
  • Subject: Re: [SM-Commit] PERFORCE change 79538 by David Kowis for review
  • Date: Mon, 22 May 2006 00:01:13 +0200

Change 79538 by david_kowis@dkowis-kain on 2006/05/19 21:34:41

Fixed a permissions evilness in FUNCTIONS install_www_files

Affected files ...

... //sgl/grimoires/devel/ChangeLog#331 edit
... //sgl/grimoires/devel/FUNCTIONS#35 edit

Differences ...

==== //sgl/grimoires/devel/ChangeLog#331 (text) ====

@@ -3,6 +3,8 @@

2006-05-19 David Kowis <dkowis AT shlrm.org>
* FUNCTIONS: Added a function to get at the install_www_files location
+ Also fixed some permissions mangling
+ * perl-cpan/cgi-speedycgi: perlmodule to persist perl scripts

==== //sgl/grimoires/devel/FUNCTIONS#35 (xtext) ====

@@ -241,7 +241,7 @@
# find $1 -type -f | while read file; do
for www_file in `find $1 -type f`; do
if install_config_file "$www_file" "$WWW_DEST/$www_file"; then
- chmod 0644 "$WWW_DEST/$www_file" &&
+ chmod u+r,g+r,o-wx "$WWW_DEST/$www_file" &&

What was wrong with 0664?
It seems hazardously for me.

--
Ladislav Hagara




Archive powered by MHonArc 2.6.24.

Top of Page