2016-09-24 03:00:46 +00:00
|
|
|
# frozen_string_literal: true
|
2016-02-06 01:42:40 +00:00
|
|
|
require 'dotenv/tasks'
|
|
|
|
|
|
|
|
namespace :perms do
|
2016-07-26 00:14:23 +00:00
|
|
|
desc 'Update the Unix permissions on the public directory'
|
|
|
|
task fix: :environment do
|
2016-02-06 01:42:40 +00:00
|
|
|
# e.g. rake perms:fix user=mmstaging group=mmstaging
|
|
|
|
# e.g. rake perms:fix group=www-data #probably don't need this one
|
|
|
|
# e.g. rake perms:fix
|
|
|
|
user = ENV['user'] || 'metamaps'
|
|
|
|
group = ENV['group'] || 'metamaps'
|
|
|
|
public_dir = Rails.root.join('public').to_s
|
|
|
|
system "chown -R #{user}:#{group} #{public_dir}"
|
|
|
|
system "find #{public_dir} -type d -exec chmod 755 '{}' \\;"
|
|
|
|
system "find #{public_dir} -type f -exec chmod 644 '{}' \\;"
|
|
|
|
end
|
|
|
|
end
|