Sha256: 91e264bda5e36fd9dcf49383859a34d3df79cda2eb533ce737beb6a29ee181b0

Contents?: true

Size: 1.3 KB

Versions: 17

Compression:

Stored size: 1.3 KB

Contents

# frozen_string_literal: true

organizations = Organization.unscoped.all
locations = Location.unscoped.all
User.as_anonymous_admin do
  RemoteExecutionFeature.without_auditing do
    if Rails.env.test? || Foreman.in_rake?
      # If this file tries to import a template with a REX feature in a SeedsTest,
      # it will fail - the REX feature isn't registered on SeedsTest because
      # DatabaseCleaner truncates the db before every test.
      # During db:seed, we also want to know the feature is registered before
      # seeding the template
      ForemanAnsible::Engine.register_rex_feature
    end
    JobTemplate.without_auditing do
      Dir[File.join("#{ForemanAnsible::Engine.root}/app/views/foreman_ansible/"\
                    'job_templates/**/*.erb')].each do |template|
        sync = !Rails.env.test? && Setting[:remote_execution_sync_templates]
        template = JobTemplate.import_raw!(File.read(template),
                                           :default => true,
                                           :locked => true,
                                           :update => sync)
        template.organizations = organizations if SETTINGS[:organizations_enabled] && template.present?
        template.locations = locations if SETTINGS[:locations_enabled] && template.present?
      end
    end
  end
end

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
foreman_ansible-3.0.9 db/seeds.d/75_job_templates.rb
foreman_ansible-3.0.8 db/seeds.d/75_job_templates.rb
foreman_ansible-3.0.7 db/seeds.d/75_job_templates.rb
foreman_ansible-3.0.6 db/seeds.d/75_job_templates.rb
foreman_ansible-3.0.5 db/seeds.d/75_job_templates.rb
foreman_ansible-3.0.4 db/seeds.d/75_job_templates.rb
foreman_ansible-3.0.3 db/seeds.d/75_job_templates.rb
foreman_ansible-2.3.6 db/seeds.d/75_job_templates.rb
foreman_ansible-2.3.5 db/seeds.d/75_job_templates.rb
foreman_ansible-2.3.4 db/seeds.d/75_job_templates.rb
foreman_ansible-3.0.2 db/seeds.d/75_job_templates.rb
foreman_ansible-3.0.1 db/seeds.d/75_job_templates.rb
foreman_ansible-3.0.0 db/seeds.d/75_job_templates.rb
foreman_ansible-2.3.3 db/seeds.d/75_job_templates.rb
foreman_ansible-2.3.2 db/seeds.d/75_job_templates.rb
foreman_ansible-2.3.1 db/seeds.d/75_job_templates.rb
foreman_ansible-2.3.0 db/seeds.d/75_job_templates.rb