You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
410 B
18 lines
410 B
12 years ago
|
after 'development:users' do
|
||
|
|
||
|
entrydns_org = Domain.find_by_name(Settings.host_domains.first)
|
||
|
User.all.each do |user|
|
||
|
3.times do
|
||
|
domain = Factory.build(:domain, :user => user)
|
||
|
domain.setup(FactoryGirl.generate(:email))
|
||
|
domain.save!
|
||
|
domain.soa_record.update_serial!
|
||
|
end
|
||
|
|
||
|
50.times do
|
||
|
Factory.create(:a, :user => user, :domain => entrydns_org)
|
||
|
end
|
||
|
end
|
||
|
|
||
|
end
|