Project

General

Profile

Download (702 Bytes) Statistics
| Branch: | Tag: | Revision:
require 'foreman/util'

namespace :security do
desc 'Generate new security token'
task :generate_token do
include Foreman::Util
File.open("config/initializers/local_secret_token.rb", "w") do |fd|
fd.write("# Be sure to restart your server when you modify this file.

# Your secret key for verifying the integrity of signed cookies.
# If you change this key, all old signed cookies will become invalid!
# Make sure the secret is at least 30 characters and all random,
# no regular words or you'll be exposed to dictionary attacks.

# You can use `rake security:generate_token` to regenerate this file.

Foreman::Application.config.secret_token = '#{secure_token}'
")
end
end
end
(12-12/16)