Project

General

Profile

Download (404 Bytes) Statistics
| Branch: | Tag: | Revision:
class AddGrubbyTemplate < ActiveRecord::Migration
def self.up
ConfigTemplate.create(
:name => "Grubby Default",
:template_kind_id => TemplateKind.find_by_name("script").id,
:operatingsystem_ids => Redhat.all.map(&:id),
:template => File.read("#{RAILS_ROOT}/app/views/unattended/grubby.erb"))
end

def self.down
end
end
(64-64/83)