From 75b36967fed9db8268391ac10b02f5c0870c32ca Mon Sep 17 00:00:00 2001 From: Stefan Wintermeyer Date: Tue, 5 Feb 2013 15:11:56 +0100 Subject: Finetuning backup. --- app/models/ability.rb | 4 ++++ app/models/backup_job.rb | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) (limited to 'app/models') diff --git a/app/models/ability.rb b/app/models/ability.rb index 0d13dab..01f26aa 100644 --- a/app/models/ability.rb +++ b/app/models/ability.rb @@ -64,6 +64,10 @@ class Ability # cannot [:edit, :update], FaxDocument + # Backups can't be edited + # + cannot [:edit, :update], BackupJob + # Can manage GsNodes # can :manage, GsNode diff --git a/app/models/backup_job.rb b/app/models/backup_job.rb index 5149553..b0a588f 100644 --- a/app/models/backup_job.rb +++ b/app/models/backup_job.rb @@ -6,8 +6,9 @@ class BackupJob < ActiveRecord::Base private def start_the_backup if self.finished_at.nil? - system "backup perform --trigger gs5 --config_file #{Rails.root.join('config','backup.rb')}" + system "backup perform --trigger GS5 --config_file #{Rails.root.join('config','backup.rb')}" self.finished_at = Time.now + self.status = 'done' self.save end end -- cgit v1.2.3