Sha256: f0cb3a55c7261d34b62d6fc677d8c9e880c1c1f0119422768b9fe4e7569daee7
Contents?: true
Size: 1.46 KB
Versions: 8
Compression:
Stored size: 1.46 KB
Contents
module BastionKatello class Engine < ::Rails::Engine isolate_namespace BastionKatello initializer 'bastion.assets_dispatcher', :before => :build_middleware_stack do |app| app.middleware.use ::ActionDispatch::Static, "#{BastionKatello::Engine.root}/app/assets/javascripts/bastion_katello" end config.to_prepare do consumer_cert_rpm = 'katello-ca-consumer-latest.noarch.rpm' consumer_cert_rpm = SETTINGS[:katello][:consumer_cert_rpm] if SETTINGS.key?(:katello) db_migrated = !Foreman.in_setup_db_rake? && ActiveRecord::Base.connection.table_exists?(Setting.table_name) Bastion.register_plugin( :name => 'bastion_katello', :stylesheet => 'bastion_katello/bastion_katello', :pages => %w( activation_keys content_credentials content_hosts debs docker_tags files errata packages lifecycle_environments products sync_plans host_collections katello_tasks select_organization ), :config_generator => lambda do { 'consumerCertRPM' => consumer_cert_rpm, 'defaultDownloadPolicy' => !Foreman.in_rake? && db_migrated && Setting['default_download_policy'], 'remoteExecutionPresent' => ::Katello.with_remote_execution?, 'hostToolingEnabled' => ::Katello.with_remote_execution? } end ) end end end
Version data entries
8 entries across 8 versions & 1 rubygems