Changeset 326

Show
Ignore:
Timestamp:
05/08/08 03:02:54 (7 months ago)
Author:
eric.dumin..@gmail.com
Message:

Applying chmod 666 to reload_file

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/lib/picolena/templates/app/models/indexer.rb

    r325 r326  
    149149    def touch_reload_file! 
    150150      FileUtils.touch(reload_file) 
     151      # To ensure that every process can touch reload_file, even if Picolena 
     152      # is launched as a special user. 
     153      FileUtils.chmod(0666, reload_file) 
    151154    end 
    152155