annotate lib/tasks/ciphering.rake @ 855:7294e8db2515 bug_162

Close obsolete branch bug_162
author Chris Cannam
date Thu, 14 Jul 2011 11:59:19 +0100
parents 051f544170fe
children 433d4f72a19b
rev   line source
Chris@245 1 # Redmine - project management software
Chris@245 2 # Copyright (C) 2006-2011 Jean-Philippe Lang
Chris@245 3 #
Chris@245 4 # This program is free software; you can redistribute it and/or
Chris@245 5 # modify it under the terms of the GNU General Public License
Chris@245 6 # as published by the Free Software Foundation; either version 2
Chris@245 7 # of the License, or (at your option) any later version.
Chris@245 8 #
Chris@245 9 # This program is distributed in the hope that it will be useful,
Chris@245 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
Chris@245 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Chris@245 12 # GNU General Public License for more details.
Chris@245 13 #
Chris@245 14 # You should have received a copy of the GNU General Public License
Chris@245 15 # along with this program; if not, write to the Free Software
Chris@245 16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
Chris@245 17
Chris@245 18
Chris@245 19 namespace :db do
Chris@245 20 desc 'Encrypts SCM and LDAP passwords in the database.'
Chris@245 21 task :encrypt => :environment do
Chris@245 22 unless (Repository.encrypt_all(:password) &&
Chris@245 23 AuthSource.encrypt_all(:account_password))
Chris@245 24 raise "Some objects could not be saved after encryption, update was rollback'ed."
Chris@245 25 end
Chris@245 26 end
Chris@245 27
Chris@245 28 desc 'Decrypts SCM and LDAP passwords in the database.'
Chris@245 29 task :decrypt => :environment do
Chris@245 30 unless (Repository.decrypt_all(:password) &&
Chris@245 31 AuthSource.decrypt_all(:account_password))
Chris@245 32 raise "Some objects could not be saved after decryption, update was rollback'ed."
Chris@245 33 end
Chris@245 34 end
Chris@245 35 end